From f6e29d82f6971296abacbecc9cf1bc18f4c07d51 Mon Sep 17 00:00:00 2001 From: Chev <11602755+chev2@users.noreply.github.com> Date: Fri, 12 Jun 2020 00:07:07 -0700 Subject: [PATCH 1/3] Update README with essential info --- README.md | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3f11fb3..ad38646 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,13 @@ # tf2-voice-ban-bots -Team Fortress 2 voice_ban.dt generator for bots +This is a Python script designed for Team Fortress 2 that will pull a list of known bots from [Pazer's TF2 Bot Detector](https://github.com/PazerOP/tf2_bot_detector/) and write their Steam IDs to a voice_ban.dt file. + +Essentially what this allows for is the replacement of a user's current voice_ban.dt file, which is used to store a list of muted players. This will effectively mute most, if not all, known bots in-game, preventing them from spamming chat/voice chat. + +Using this tool will not give you a VAC ban, nor should editing the list of muted players in your TF2 directory. + +## How to use +Run the `tf2_voice_ban_bots.py` file. It will grab the list of bots and generate a voice_ban.dt file if you wish to do so. + +## Requirements +Python 3.x or later +'requests' Python module From 5bb32854db96b046528f7b76d4fcfbd994e36553 Mon Sep 17 00:00:00 2001 From: Chev <11602755+chev2@users.noreply.github.com> Date: Fri, 12 Jun 2020 00:07:49 -0700 Subject: [PATCH 2/3] Update README.md --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index ad38646..3cd3005 100644 --- a/README.md +++ b/README.md @@ -10,4 +10,5 @@ Run the `tf2_voice_ban_bots.py` file. It will grab the list of bots and generate ## Requirements Python 3.x or later + 'requests' Python module From 2218fd2d5d0347a33a0c7b297ee1d1023597b10e Mon Sep 17 00:00:00 2001 From: Chev <11602755+chev2@users.noreply.github.com> Date: Fri, 12 Jun 2020 19:40:29 -0700 Subject: [PATCH 3/3] Add License --- LICENSE | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..0f37090 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Chev + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE.