├── .gitignore ├── LICENSE ├── README.md ├── bot.py ├── cogs ├── .DS_Store ├── admin.py ├── afk.py ├── atc.py ├── basics.py ├── ci.py ├── filter_messages.py ├── funs.py ├── role.py ├── search.py ├── send_logs.py ├── sondage.py ├── utility.py ├── utils │ ├── __init__.py │ ├── checks.py │ ├── cli_colors.py │ ├── db.py │ ├── formats.py │ ├── maps.py │ ├── menu.py │ └── paginator.py └── vocal.py ├── config.py.example ├── init.sh ├── requirements.txt └── texts ├── ci-info.md ├── clocks.md ├── help.md ├── info.md ├── jokes.json ├── passport-info.md ├── pokemons.json ├── roles.md ├── rpoll.md ├── search.md └── ytb.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/README.md -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/bot.py -------------------------------------------------------------------------------- /cogs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/.DS_Store -------------------------------------------------------------------------------- /cogs/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/admin.py -------------------------------------------------------------------------------- /cogs/afk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/afk.py -------------------------------------------------------------------------------- /cogs/atc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/atc.py -------------------------------------------------------------------------------- /cogs/basics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/basics.py -------------------------------------------------------------------------------- /cogs/ci.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/ci.py -------------------------------------------------------------------------------- /cogs/filter_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/filter_messages.py -------------------------------------------------------------------------------- /cogs/funs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/funs.py -------------------------------------------------------------------------------- /cogs/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/role.py -------------------------------------------------------------------------------- /cogs/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/search.py -------------------------------------------------------------------------------- /cogs/send_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/send_logs.py -------------------------------------------------------------------------------- /cogs/sondage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/sondage.py -------------------------------------------------------------------------------- /cogs/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utility.py -------------------------------------------------------------------------------- /cogs/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cogs/utils/checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/checks.py -------------------------------------------------------------------------------- /cogs/utils/cli_colors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/cli_colors.py -------------------------------------------------------------------------------- /cogs/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/db.py -------------------------------------------------------------------------------- /cogs/utils/formats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/formats.py -------------------------------------------------------------------------------- /cogs/utils/maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/maps.py -------------------------------------------------------------------------------- /cogs/utils/menu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/menu.py -------------------------------------------------------------------------------- /cogs/utils/paginator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/utils/paginator.py -------------------------------------------------------------------------------- /cogs/vocal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/cogs/vocal.py -------------------------------------------------------------------------------- /config.py.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/config.py.example -------------------------------------------------------------------------------- /init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/init.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/requirements.txt -------------------------------------------------------------------------------- /texts/ci-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/ci-info.md -------------------------------------------------------------------------------- /texts/clocks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/clocks.md -------------------------------------------------------------------------------- /texts/help.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/help.md -------------------------------------------------------------------------------- /texts/info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/info.md -------------------------------------------------------------------------------- /texts/jokes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/jokes.json -------------------------------------------------------------------------------- /texts/passport-info.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/passport-info.md -------------------------------------------------------------------------------- /texts/pokemons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/pokemons.json -------------------------------------------------------------------------------- /texts/roles.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/roles.md -------------------------------------------------------------------------------- /texts/rpoll.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/rpoll.md -------------------------------------------------------------------------------- /texts/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/search.md -------------------------------------------------------------------------------- /texts/ytb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/outout14/tuxbot-bot/HEAD/texts/ytb.json --------------------------------------------------------------------------------