├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── dependabot.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.md ├── Procfile ├── README.md ├── assets ├── fonts │ ├── Consolas.ttf │ ├── Roboto-Black.ttf │ ├── Roboto-BlackItalic.ttf │ ├── Roboto-Bold.ttf │ ├── Roboto-BoldItalic.ttf │ ├── Roboto-Italic.ttf │ ├── Roboto-Light.ttf │ ├── Roboto-LightItalic.ttf │ ├── Roboto-Medium.ttf │ ├── Roboto-MediumItalic.ttf │ ├── Roboto-Regular.ttf │ ├── Roboto-Thin.ttf │ ├── Roboto-ThinItalic.ttf │ ├── abhaya-libre-bold.ttf │ ├── abhaya-libre-extra-bold.ttf │ ├── abhaya-libre-medium.ttf │ ├── abhaya-libre-regular.ttf │ ├── abhaya-libre-semi-bold.ttf │ ├── arial-rounded-mt-bold.ttf │ ├── bahnschrift-condensed.ttf │ ├── berlin-sans.ttf │ ├── consola.ttf │ ├── consolab.ttf │ ├── consolai.ttf │ ├── consolaz.ttf │ ├── eras-bold-itc.ttf │ ├── gotham_bold.ttf │ ├── red-hat-display-bold.ttf │ └── red-hat-display-regular.ttf ├── images │ ├── meme_templates │ │ ├── bernie.png │ │ ├── disappointed.png │ │ ├── doge.png │ │ ├── drake.png │ │ ├── flex_tape.png │ │ └── panik.png │ └── rank_cards │ │ ├── agent.png │ │ ├── alien.png │ │ ├── arto.png │ │ ├── awish.png │ │ ├── bloo.png │ │ ├── brixk.png │ │ ├── clippy.png │ │ ├── default.png │ │ ├── e.png │ │ └── yummy.png └── temp │ ├── bernie.png │ ├── disappointed.png │ ├── doge.png │ ├── drake.png │ ├── flex_tape.png │ ├── panik.png │ └── rank.png ├── cogs ├── actions.py ├── custom.py ├── emojis.py ├── fun.py ├── game.py ├── image.py ├── info.py ├── misc.py ├── mod.py ├── music.py ├── notifications.py ├── nsfw.py ├── serverconfig.py ├── user.py └── utility.py ├── cogs_hidden ├── antialts.py ├── antihoist.py ├── automod.py ├── bumpreminder.py ├── counting.py ├── devs_only.py ├── error_handling.py ├── events.py ├── global_chat.py ├── guild_logs.py ├── invite_tracking.py ├── leveling.py ├── logs.py ├── private_cmds.py ├── reaction_roles.py ├── slash.py ├── starboard.py ├── statcord.py ├── status_role.py ├── topgg.py ├── twitch.py ├── vote_tracking.py ├── webhooks.py └── youtube.py ├── config.py ├── games ├── minesweeper.py ├── tictactoe.py ├── twenty.py └── wumpus.py ├── handler ├── README.md ├── __init__.py ├── app_commands.py └── client.py ├── main.py ├── other ├── CONFIG.md ├── __init__.py ├── timezones.txt └── topics.py ├── requirements.txt ├── tests └── slash.py └── utils ├── bot.py ├── classes.py ├── constants.py ├── converters.py ├── custom_checks.py ├── embed.py ├── exceptions.py ├── flags.py ├── help.py ├── message.py ├── random.py ├── reactions.py ├── recursive_utils.py ├── reddit.py ├── time.py └── ui.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python main.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/README.md -------------------------------------------------------------------------------- /assets/fonts/Consolas.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Consolas.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Black.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-BlackItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Bold.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-BoldItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Italic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Light.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-LightItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Medium.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-MediumItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Regular.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-Thin.ttf -------------------------------------------------------------------------------- /assets/fonts/Roboto-ThinItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/Roboto-ThinItalic.ttf -------------------------------------------------------------------------------- /assets/fonts/abhaya-libre-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/abhaya-libre-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/abhaya-libre-extra-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/abhaya-libre-extra-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/abhaya-libre-medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/abhaya-libre-medium.ttf -------------------------------------------------------------------------------- /assets/fonts/abhaya-libre-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/abhaya-libre-regular.ttf -------------------------------------------------------------------------------- /assets/fonts/abhaya-libre-semi-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/abhaya-libre-semi-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/arial-rounded-mt-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/arial-rounded-mt-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/bahnschrift-condensed.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/bahnschrift-condensed.ttf -------------------------------------------------------------------------------- /assets/fonts/berlin-sans.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/berlin-sans.ttf -------------------------------------------------------------------------------- /assets/fonts/consola.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/consola.ttf -------------------------------------------------------------------------------- /assets/fonts/consolab.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/consolab.ttf -------------------------------------------------------------------------------- /assets/fonts/consolai.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/consolai.ttf -------------------------------------------------------------------------------- /assets/fonts/consolaz.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/consolaz.ttf -------------------------------------------------------------------------------- /assets/fonts/eras-bold-itc.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/eras-bold-itc.ttf -------------------------------------------------------------------------------- /assets/fonts/gotham_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/gotham_bold.ttf -------------------------------------------------------------------------------- /assets/fonts/red-hat-display-bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/red-hat-display-bold.ttf -------------------------------------------------------------------------------- /assets/fonts/red-hat-display-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/fonts/red-hat-display-regular.ttf -------------------------------------------------------------------------------- /assets/images/meme_templates/bernie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/meme_templates/bernie.png -------------------------------------------------------------------------------- /assets/images/meme_templates/disappointed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/meme_templates/disappointed.png -------------------------------------------------------------------------------- /assets/images/meme_templates/doge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/meme_templates/doge.png -------------------------------------------------------------------------------- /assets/images/meme_templates/drake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/meme_templates/drake.png -------------------------------------------------------------------------------- /assets/images/meme_templates/flex_tape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/meme_templates/flex_tape.png -------------------------------------------------------------------------------- /assets/images/meme_templates/panik.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/meme_templates/panik.png -------------------------------------------------------------------------------- /assets/images/rank_cards/agent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/agent.png -------------------------------------------------------------------------------- /assets/images/rank_cards/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/alien.png -------------------------------------------------------------------------------- /assets/images/rank_cards/arto.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/arto.png -------------------------------------------------------------------------------- /assets/images/rank_cards/awish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/awish.png -------------------------------------------------------------------------------- /assets/images/rank_cards/bloo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/bloo.png -------------------------------------------------------------------------------- /assets/images/rank_cards/brixk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/brixk.png -------------------------------------------------------------------------------- /assets/images/rank_cards/clippy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/clippy.png -------------------------------------------------------------------------------- /assets/images/rank_cards/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/default.png -------------------------------------------------------------------------------- /assets/images/rank_cards/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/e.png -------------------------------------------------------------------------------- /assets/images/rank_cards/yummy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/assets/images/rank_cards/yummy.png -------------------------------------------------------------------------------- /assets/temp/bernie.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/temp/disappointed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/temp/doge.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/temp/drake.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/temp/flex_tape.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/temp/panik.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /assets/temp/rank.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cogs/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/actions.py -------------------------------------------------------------------------------- /cogs/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/custom.py -------------------------------------------------------------------------------- /cogs/emojis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/emojis.py -------------------------------------------------------------------------------- /cogs/fun.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/fun.py -------------------------------------------------------------------------------- /cogs/game.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/game.py -------------------------------------------------------------------------------- /cogs/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/image.py -------------------------------------------------------------------------------- /cogs/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/info.py -------------------------------------------------------------------------------- /cogs/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/misc.py -------------------------------------------------------------------------------- /cogs/mod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/mod.py -------------------------------------------------------------------------------- /cogs/music.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/music.py -------------------------------------------------------------------------------- /cogs/notifications.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/notifications.py -------------------------------------------------------------------------------- /cogs/nsfw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/nsfw.py -------------------------------------------------------------------------------- /cogs/serverconfig.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/serverconfig.py -------------------------------------------------------------------------------- /cogs/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/user.py -------------------------------------------------------------------------------- /cogs/utility.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs/utility.py -------------------------------------------------------------------------------- /cogs_hidden/antialts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/antialts.py -------------------------------------------------------------------------------- /cogs_hidden/antihoist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/antihoist.py -------------------------------------------------------------------------------- /cogs_hidden/automod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/automod.py -------------------------------------------------------------------------------- /cogs_hidden/bumpreminder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/bumpreminder.py -------------------------------------------------------------------------------- /cogs_hidden/counting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/counting.py -------------------------------------------------------------------------------- /cogs_hidden/devs_only.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/devs_only.py -------------------------------------------------------------------------------- /cogs_hidden/error_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/error_handling.py -------------------------------------------------------------------------------- /cogs_hidden/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/events.py -------------------------------------------------------------------------------- /cogs_hidden/global_chat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/global_chat.py -------------------------------------------------------------------------------- /cogs_hidden/guild_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/guild_logs.py -------------------------------------------------------------------------------- /cogs_hidden/invite_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/invite_tracking.py -------------------------------------------------------------------------------- /cogs_hidden/leveling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/leveling.py -------------------------------------------------------------------------------- /cogs_hidden/logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/logs.py -------------------------------------------------------------------------------- /cogs_hidden/private_cmds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/private_cmds.py -------------------------------------------------------------------------------- /cogs_hidden/reaction_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/reaction_roles.py -------------------------------------------------------------------------------- /cogs_hidden/slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/slash.py -------------------------------------------------------------------------------- /cogs_hidden/starboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/starboard.py -------------------------------------------------------------------------------- /cogs_hidden/statcord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/statcord.py -------------------------------------------------------------------------------- /cogs_hidden/status_role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/status_role.py -------------------------------------------------------------------------------- /cogs_hidden/topgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/topgg.py -------------------------------------------------------------------------------- /cogs_hidden/twitch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/twitch.py -------------------------------------------------------------------------------- /cogs_hidden/vote_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/vote_tracking.py -------------------------------------------------------------------------------- /cogs_hidden/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/webhooks.py -------------------------------------------------------------------------------- /cogs_hidden/youtube.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/cogs_hidden/youtube.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/config.py -------------------------------------------------------------------------------- /games/minesweeper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/games/minesweeper.py -------------------------------------------------------------------------------- /games/tictactoe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/games/tictactoe.py -------------------------------------------------------------------------------- /games/twenty.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/games/twenty.py -------------------------------------------------------------------------------- /games/wumpus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/games/wumpus.py -------------------------------------------------------------------------------- /handler/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/handler/README.md -------------------------------------------------------------------------------- /handler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/handler/__init__.py -------------------------------------------------------------------------------- /handler/app_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/handler/app_commands.py -------------------------------------------------------------------------------- /handler/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/handler/client.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/main.py -------------------------------------------------------------------------------- /other/CONFIG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/other/CONFIG.md -------------------------------------------------------------------------------- /other/__init__.py: -------------------------------------------------------------------------------- 1 | from .topics import * 2 | -------------------------------------------------------------------------------- /other/timezones.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/other/timezones.txt -------------------------------------------------------------------------------- /other/topics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/other/topics.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/slash.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/tests/slash.py -------------------------------------------------------------------------------- /utils/bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/bot.py -------------------------------------------------------------------------------- /utils/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/classes.py -------------------------------------------------------------------------------- /utils/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/constants.py -------------------------------------------------------------------------------- /utils/converters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/converters.py -------------------------------------------------------------------------------- /utils/custom_checks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/custom_checks.py -------------------------------------------------------------------------------- /utils/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/embed.py -------------------------------------------------------------------------------- /utils/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/exceptions.py -------------------------------------------------------------------------------- /utils/flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/flags.py -------------------------------------------------------------------------------- /utils/help.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/help.py -------------------------------------------------------------------------------- /utils/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/message.py -------------------------------------------------------------------------------- /utils/random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/random.py -------------------------------------------------------------------------------- /utils/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/reactions.py -------------------------------------------------------------------------------- /utils/recursive_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/recursive_utils.py -------------------------------------------------------------------------------- /utils/reddit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/reddit.py -------------------------------------------------------------------------------- /utils/time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/time.py -------------------------------------------------------------------------------- /utils/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nirlep5252/EpicBot/HEAD/utils/ui.py --------------------------------------------------------------------------------