├── .gitignore ├── bot.py ├── cogs ├── automod.py ├── blizzard.py ├── ckc.py ├── highlight.py ├── meta.py ├── mod.py ├── ping.py ├── poll.py ├── roles.py ├── stats.py ├── stattrak.py ├── tags.py └── twitch.py └── readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/.gitignore -------------------------------------------------------------------------------- /bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/bot.py -------------------------------------------------------------------------------- /cogs/automod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/automod.py -------------------------------------------------------------------------------- /cogs/blizzard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/blizzard.py -------------------------------------------------------------------------------- /cogs/ckc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/ckc.py -------------------------------------------------------------------------------- /cogs/highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/highlight.py -------------------------------------------------------------------------------- /cogs/meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/meta.py -------------------------------------------------------------------------------- /cogs/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/mod.py -------------------------------------------------------------------------------- /cogs/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/ping.py -------------------------------------------------------------------------------- /cogs/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/poll.py -------------------------------------------------------------------------------- /cogs/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/roles.py -------------------------------------------------------------------------------- /cogs/stats.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/stats.py -------------------------------------------------------------------------------- /cogs/stattrak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/stattrak.py -------------------------------------------------------------------------------- /cogs/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/tags.py -------------------------------------------------------------------------------- /cogs/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/cogs/twitch.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarlGroth/Carl-Bot/HEAD/readme.md --------------------------------------------------------------------------------