├── .gitattributes ├── .gitignore ├── README.md ├── [AddWebhook] └── removeme.txt ├── [Configs] └── removeme.txt ├── [GetWebhooks] └── webhooks.txt ├── [RemoveWebhooks] └── removeme.txt ├── [ReplaceWebhooks] └── removeme.txt ├── add_webhook.py ├── duplicate_remover.py ├── get_webhooks.py ├── helpers.py ├── main.py ├── menu.py ├── proxies.txt ├── remove_webhook.py ├── replace_webhook.py ├── requirements.txt ├── requirements_install.bat ├── run_script.bat └── spam_webhooks.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/README.md -------------------------------------------------------------------------------- /[AddWebhook]/removeme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[Configs]/removeme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[GetWebhooks]/webhooks.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[RemoveWebhooks]/removeme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /[ReplaceWebhooks]/removeme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /add_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/add_webhook.py -------------------------------------------------------------------------------- /duplicate_remover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/duplicate_remover.py -------------------------------------------------------------------------------- /get_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/get_webhooks.py -------------------------------------------------------------------------------- /helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/helpers.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/main.py -------------------------------------------------------------------------------- /menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/menu.py -------------------------------------------------------------------------------- /proxies.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remove_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/remove_webhook.py -------------------------------------------------------------------------------- /replace_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/replace_webhook.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests==2.26.0 -------------------------------------------------------------------------------- /requirements_install.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/requirements_install.bat -------------------------------------------------------------------------------- /run_script.bat: -------------------------------------------------------------------------------- 1 | @echo off 2 | cls 3 | color a 4 | python main.py 5 | pause -------------------------------------------------------------------------------- /spam_webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/onemanbuilds/OpenBulletConfigTool/HEAD/spam_webhooks.py --------------------------------------------------------------------------------