├── .github └── FUNDING.yml ├── .gitignore ├── ImposterBot Among Us Game Listener ├── ImposterBot Among Us Game Listener.py ├── ImposterBot.egg-info │ ├── PKG-INFO │ ├── SOURCES.txt │ ├── dependency_links.txt │ └── top_level.txt ├── __pycache__ │ ├── main.cpython-38.opt-2.pyc │ └── main.cpython-38.pyc ├── build.spec ├── images │ ├── config_icon.png │ ├── game_icon.png │ ├── program_icon.ico │ └── program_icon.png ├── requirements.txt └── setup.py ├── ImposterBot.png ├── LICENSE ├── Procfile ├── README.md ├── commands ├── help.js ├── info.js ├── mute.js ├── newroom.js ├── reload.js ├── start.js ├── stop.js └── unmute.js ├── config.json ├── experimental.py ├── game_icon.png ├── images ├── 12420.png ├── 14760.png ├── 15000.png ├── 3000.png ├── 3300.png ├── 7500.png └── README.md ├── index.js ├── package.json └── test.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/.gitignore -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/ImposterBot Among Us Game Listener.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/ImposterBot Among Us Game Listener.py -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/ImposterBot.egg-info/PKG-INFO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/ImposterBot.egg-info/PKG-INFO -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/ImposterBot.egg-info/SOURCES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/ImposterBot.egg-info/SOURCES.txt -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/ImposterBot.egg-info/dependency_links.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/ImposterBot.egg-info/top_level.txt: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/__pycache__/main.cpython-38.opt-2.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/__pycache__/main.cpython-38.opt-2.pyc -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/__pycache__/main.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/__pycache__/main.cpython-38.pyc -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/build.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/build.spec -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/images/config_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/images/config_icon.png -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/images/game_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/images/game_icon.png -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/images/program_icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/images/program_icon.ico -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/images/program_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/images/program_icon.png -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/requirements.txt -------------------------------------------------------------------------------- /ImposterBot Among Us Game Listener/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot Among Us Game Listener/setup.py -------------------------------------------------------------------------------- /ImposterBot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/ImposterBot.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: npm start -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/README.md -------------------------------------------------------------------------------- /commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/help.js -------------------------------------------------------------------------------- /commands/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/info.js -------------------------------------------------------------------------------- /commands/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/mute.js -------------------------------------------------------------------------------- /commands/newroom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/newroom.js -------------------------------------------------------------------------------- /commands/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/reload.js -------------------------------------------------------------------------------- /commands/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/start.js -------------------------------------------------------------------------------- /commands/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/stop.js -------------------------------------------------------------------------------- /commands/unmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/commands/unmute.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- 1 | {"prefix": "."} -------------------------------------------------------------------------------- /experimental.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/experimental.py -------------------------------------------------------------------------------- /game_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/game_icon.png -------------------------------------------------------------------------------- /images/12420.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/12420.png -------------------------------------------------------------------------------- /images/14760.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/14760.png -------------------------------------------------------------------------------- /images/15000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/15000.png -------------------------------------------------------------------------------- /images/3000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/3000.png -------------------------------------------------------------------------------- /images/3300.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/3300.png -------------------------------------------------------------------------------- /images/7500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/7500.png -------------------------------------------------------------------------------- /images/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/images/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/package.json -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shiv213/ImposterBot/HEAD/test.py --------------------------------------------------------------------------------