├── .env.example ├── LICENSE ├── README.md ├── cogs ├── ai │ ├── chatbots.py │ └── image_generations.py ├── anime_manga │ ├── anime.py │ ├── character.py │ ├── manga.py │ └── other.py ├── antispam │ └── antispam.py ├── filter │ └── censor.py ├── fun │ ├── meme.py │ └── other.py ├── games │ ├── connect4.py │ ├── rps.py │ └── tictactoe.py ├── help │ └── help.py ├── info │ ├── server_info.py │ └── user_info.py ├── logs │ ├── events.py │ └── logs.py ├── misc │ ├── feedback.py │ ├── giveaway.py │ ├── poll.py │ └── utility.py ├── mod │ ├── ban.py │ ├── kick.py │ ├── mute.py │ ├── other.py │ ├── timeout.py │ └── warn.py ├── settings │ ├── hide.py │ ├── lock.py │ ├── other.py │ └── suggestions.py └── ticket │ └── ticket.py ├── main.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/.env.example -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/README.md -------------------------------------------------------------------------------- /cogs/ai/chatbots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/ai/chatbots.py -------------------------------------------------------------------------------- /cogs/ai/image_generations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/ai/image_generations.py -------------------------------------------------------------------------------- /cogs/anime_manga/anime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/anime_manga/anime.py -------------------------------------------------------------------------------- /cogs/anime_manga/character.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/anime_manga/character.py -------------------------------------------------------------------------------- /cogs/anime_manga/manga.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/anime_manga/manga.py -------------------------------------------------------------------------------- /cogs/anime_manga/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/anime_manga/other.py -------------------------------------------------------------------------------- /cogs/antispam/antispam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/antispam/antispam.py -------------------------------------------------------------------------------- /cogs/filter/censor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/filter/censor.py -------------------------------------------------------------------------------- /cogs/fun/meme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/fun/meme.py -------------------------------------------------------------------------------- /cogs/fun/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/fun/other.py -------------------------------------------------------------------------------- /cogs/games/connect4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/games/connect4.py -------------------------------------------------------------------------------- /cogs/games/rps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/games/rps.py -------------------------------------------------------------------------------- /cogs/games/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/games/tictactoe.py -------------------------------------------------------------------------------- /cogs/help/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/help/help.py -------------------------------------------------------------------------------- /cogs/info/server_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/info/server_info.py -------------------------------------------------------------------------------- /cogs/info/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/info/user_info.py -------------------------------------------------------------------------------- /cogs/logs/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/logs/events.py -------------------------------------------------------------------------------- /cogs/logs/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/logs/logs.py -------------------------------------------------------------------------------- /cogs/misc/feedback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/misc/feedback.py -------------------------------------------------------------------------------- /cogs/misc/giveaway.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/misc/giveaway.py -------------------------------------------------------------------------------- /cogs/misc/poll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/misc/poll.py -------------------------------------------------------------------------------- /cogs/misc/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/misc/utility.py -------------------------------------------------------------------------------- /cogs/mod/ban.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/mod/ban.py -------------------------------------------------------------------------------- /cogs/mod/kick.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/mod/kick.py -------------------------------------------------------------------------------- /cogs/mod/mute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/mod/mute.py -------------------------------------------------------------------------------- /cogs/mod/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/mod/other.py -------------------------------------------------------------------------------- /cogs/mod/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/mod/timeout.py -------------------------------------------------------------------------------- /cogs/mod/warn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/mod/warn.py -------------------------------------------------------------------------------- /cogs/settings/hide.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/settings/hide.py -------------------------------------------------------------------------------- /cogs/settings/lock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/settings/lock.py -------------------------------------------------------------------------------- /cogs/settings/other.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/settings/other.py -------------------------------------------------------------------------------- /cogs/settings/suggestions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/settings/suggestions.py -------------------------------------------------------------------------------- /cogs/ticket/ticket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/cogs/ticket/ticket.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MAyman007/ShinobiBot/HEAD/requirements.txt --------------------------------------------------------------------------------