├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── bot │ ├── client │ │ └── Client.ts │ ├── commands │ │ ├── animals │ │ │ ├── bear.ts │ │ │ ├── bird.ts │ │ │ ├── cat.ts │ │ │ ├── cow.ts │ │ │ ├── dog.ts │ │ │ └── panda.ts │ │ ├── config │ │ │ ├── level.ts │ │ │ ├── logs.ts │ │ │ ├── modlog.ts │ │ │ ├── suggestion.ts │ │ │ └── toggle.ts │ │ ├── fun │ │ │ ├── aita.ts │ │ │ ├── amazeme.ts │ │ │ ├── compliment.ts │ │ │ ├── copypasta.ts │ │ │ ├── dadjokes.ts │ │ │ ├── gayrate.ts │ │ │ ├── meme.ts │ │ │ ├── pp.ts │ │ │ └── roast.ts │ │ ├── games │ │ │ ├── 8ball.ts │ │ │ ├── jumble.ts │ │ │ ├── truth.ts │ │ │ └── wouldyourather.ts │ │ ├── general │ │ │ ├── bug.ts │ │ │ ├── donate.ts │ │ │ ├── help.ts │ │ │ ├── invite.ts │ │ │ ├── morse.ts │ │ │ ├── ping.ts │ │ │ ├── stats.ts │ │ │ └── upvote.ts │ │ ├── image │ │ │ ├── 3000years.ts │ │ │ ├── approved.ts │ │ │ ├── beautiful.ts │ │ │ ├── brazzers.ts │ │ │ ├── cookie.ts │ │ │ ├── deepfry.ts │ │ │ ├── dictator.ts │ │ │ ├── distort.ts │ │ │ ├── fire.ts │ │ │ ├── gay.ts │ │ │ ├── glitch.ts │ │ │ ├── hug.ts │ │ │ ├── instagram.ts │ │ │ ├── kiss.ts │ │ │ ├── magik.ts │ │ │ ├── pat.ts │ │ │ ├── shit.ts │ │ │ ├── slap.ts │ │ │ ├── thanos.ts │ │ │ └── wasted.ts │ │ ├── info │ │ │ ├── emoji.ts │ │ │ └── pokemon.ts │ │ ├── leveling │ │ │ ├── leaderboard.ts │ │ │ └── rank.ts │ │ ├── moderation │ │ │ ├── ban.ts │ │ │ ├── kick.ts │ │ │ ├── purge.ts │ │ │ ├── serverinfo.ts │ │ │ └── userinfo.ts │ │ ├── music │ │ │ ├── bassboost.ts │ │ │ ├── leave.ts │ │ │ ├── loop.ts │ │ │ ├── np.ts │ │ │ ├── pause.ts │ │ │ ├── play.ts │ │ │ ├── queue.ts │ │ │ ├── remove.ts │ │ │ ├── reorder.ts │ │ │ ├── resume.ts │ │ │ ├── seek.ts │ │ │ ├── shuffle.ts │ │ │ ├── skip.ts │ │ │ ├── start.ts │ │ │ └── stop.ts │ │ ├── nsfw │ │ │ ├── 4k.ts │ │ │ ├── anal.ts │ │ │ ├── boobs.ts │ │ │ ├── butt.ts │ │ │ ├── gonewild.ts │ │ │ └── porn.ts │ │ ├── owner │ │ │ └── eval.ts │ │ └── utility │ │ │ ├── avatar.ts │ │ │ ├── prefix.ts │ │ │ └── snipe.ts │ ├── core │ │ ├── Database.ts │ │ ├── Level.ts │ │ ├── Queue.ts │ │ ├── SettingsProvider.ts │ │ └── Tags.ts │ ├── inhibitors │ │ └── blacklist.ts │ ├── listeners │ │ ├── client │ │ │ ├── guildCreate.ts │ │ │ ├── guildDelete.ts │ │ │ ├── message.ts │ │ │ ├── messageDelete.ts │ │ │ ├── messageDeleteBulk.ts │ │ │ ├── messageUpdate.ts │ │ │ └── ready.ts │ │ └── command │ │ │ ├── commandStarted.ts │ │ │ └── error.ts │ └── util │ │ ├── constants.ts │ │ ├── logger.ts │ │ ├── paginate.ts │ │ ├── progressbar.ts │ │ └── timeString.ts └── index.ts ├── tsconfig.base.json ├── tsconfig.eslint.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | .env 4 | package-lock.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/package.json -------------------------------------------------------------------------------- /src/bot/client/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/client/Client.ts -------------------------------------------------------------------------------- /src/bot/commands/animals/bear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/animals/bear.ts -------------------------------------------------------------------------------- /src/bot/commands/animals/bird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/animals/bird.ts -------------------------------------------------------------------------------- /src/bot/commands/animals/cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/animals/cat.ts -------------------------------------------------------------------------------- /src/bot/commands/animals/cow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/animals/cow.ts -------------------------------------------------------------------------------- /src/bot/commands/animals/dog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/animals/dog.ts -------------------------------------------------------------------------------- /src/bot/commands/animals/panda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/animals/panda.ts -------------------------------------------------------------------------------- /src/bot/commands/config/level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/config/level.ts -------------------------------------------------------------------------------- /src/bot/commands/config/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/config/logs.ts -------------------------------------------------------------------------------- /src/bot/commands/config/modlog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/config/modlog.ts -------------------------------------------------------------------------------- /src/bot/commands/config/suggestion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/config/suggestion.ts -------------------------------------------------------------------------------- /src/bot/commands/config/toggle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/config/toggle.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/aita.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/aita.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/amazeme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/amazeme.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/compliment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/compliment.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/copypasta.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/copypasta.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/dadjokes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/dadjokes.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/gayrate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/gayrate.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/meme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/meme.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/pp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/pp.ts -------------------------------------------------------------------------------- /src/bot/commands/fun/roast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/fun/roast.ts -------------------------------------------------------------------------------- /src/bot/commands/games/8ball.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/games/8ball.ts -------------------------------------------------------------------------------- /src/bot/commands/games/jumble.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/games/jumble.ts -------------------------------------------------------------------------------- /src/bot/commands/games/truth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/games/truth.ts -------------------------------------------------------------------------------- /src/bot/commands/games/wouldyourather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/games/wouldyourather.ts -------------------------------------------------------------------------------- /src/bot/commands/general/bug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/bug.ts -------------------------------------------------------------------------------- /src/bot/commands/general/donate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/donate.ts -------------------------------------------------------------------------------- /src/bot/commands/general/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/help.ts -------------------------------------------------------------------------------- /src/bot/commands/general/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/invite.ts -------------------------------------------------------------------------------- /src/bot/commands/general/morse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/morse.ts -------------------------------------------------------------------------------- /src/bot/commands/general/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/ping.ts -------------------------------------------------------------------------------- /src/bot/commands/general/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/stats.ts -------------------------------------------------------------------------------- /src/bot/commands/general/upvote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/general/upvote.ts -------------------------------------------------------------------------------- /src/bot/commands/image/3000years.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/3000years.ts -------------------------------------------------------------------------------- /src/bot/commands/image/approved.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/approved.ts -------------------------------------------------------------------------------- /src/bot/commands/image/beautiful.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/beautiful.ts -------------------------------------------------------------------------------- /src/bot/commands/image/brazzers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/brazzers.ts -------------------------------------------------------------------------------- /src/bot/commands/image/cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/cookie.ts -------------------------------------------------------------------------------- /src/bot/commands/image/deepfry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/deepfry.ts -------------------------------------------------------------------------------- /src/bot/commands/image/dictator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/dictator.ts -------------------------------------------------------------------------------- /src/bot/commands/image/distort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/distort.ts -------------------------------------------------------------------------------- /src/bot/commands/image/fire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/fire.ts -------------------------------------------------------------------------------- /src/bot/commands/image/gay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/gay.ts -------------------------------------------------------------------------------- /src/bot/commands/image/glitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/glitch.ts -------------------------------------------------------------------------------- /src/bot/commands/image/hug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/hug.ts -------------------------------------------------------------------------------- /src/bot/commands/image/instagram.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/instagram.ts -------------------------------------------------------------------------------- /src/bot/commands/image/kiss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/kiss.ts -------------------------------------------------------------------------------- /src/bot/commands/image/magik.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/magik.ts -------------------------------------------------------------------------------- /src/bot/commands/image/pat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/pat.ts -------------------------------------------------------------------------------- /src/bot/commands/image/shit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/shit.ts -------------------------------------------------------------------------------- /src/bot/commands/image/slap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/slap.ts -------------------------------------------------------------------------------- /src/bot/commands/image/thanos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/thanos.ts -------------------------------------------------------------------------------- /src/bot/commands/image/wasted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/image/wasted.ts -------------------------------------------------------------------------------- /src/bot/commands/info/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/info/emoji.ts -------------------------------------------------------------------------------- /src/bot/commands/info/pokemon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/info/pokemon.ts -------------------------------------------------------------------------------- /src/bot/commands/leveling/leaderboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/leveling/leaderboard.ts -------------------------------------------------------------------------------- /src/bot/commands/leveling/rank.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/leveling/rank.ts -------------------------------------------------------------------------------- /src/bot/commands/moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/moderation/ban.ts -------------------------------------------------------------------------------- /src/bot/commands/moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/moderation/kick.ts -------------------------------------------------------------------------------- /src/bot/commands/moderation/purge.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/moderation/purge.ts -------------------------------------------------------------------------------- /src/bot/commands/moderation/serverinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/moderation/serverinfo.ts -------------------------------------------------------------------------------- /src/bot/commands/moderation/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/moderation/userinfo.ts -------------------------------------------------------------------------------- /src/bot/commands/music/bassboost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/bassboost.ts -------------------------------------------------------------------------------- /src/bot/commands/music/leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/leave.ts -------------------------------------------------------------------------------- /src/bot/commands/music/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/loop.ts -------------------------------------------------------------------------------- /src/bot/commands/music/np.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/np.ts -------------------------------------------------------------------------------- /src/bot/commands/music/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/pause.ts -------------------------------------------------------------------------------- /src/bot/commands/music/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/play.ts -------------------------------------------------------------------------------- /src/bot/commands/music/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/queue.ts -------------------------------------------------------------------------------- /src/bot/commands/music/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/remove.ts -------------------------------------------------------------------------------- /src/bot/commands/music/reorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/reorder.ts -------------------------------------------------------------------------------- /src/bot/commands/music/resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/resume.ts -------------------------------------------------------------------------------- /src/bot/commands/music/seek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/seek.ts -------------------------------------------------------------------------------- /src/bot/commands/music/shuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/shuffle.ts -------------------------------------------------------------------------------- /src/bot/commands/music/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/skip.ts -------------------------------------------------------------------------------- /src/bot/commands/music/start.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/start.ts -------------------------------------------------------------------------------- /src/bot/commands/music/stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/music/stop.ts -------------------------------------------------------------------------------- /src/bot/commands/nsfw/4k.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/nsfw/4k.ts -------------------------------------------------------------------------------- /src/bot/commands/nsfw/anal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/nsfw/anal.ts -------------------------------------------------------------------------------- /src/bot/commands/nsfw/boobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/nsfw/boobs.ts -------------------------------------------------------------------------------- /src/bot/commands/nsfw/butt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/nsfw/butt.ts -------------------------------------------------------------------------------- /src/bot/commands/nsfw/gonewild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/nsfw/gonewild.ts -------------------------------------------------------------------------------- /src/bot/commands/nsfw/porn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/nsfw/porn.ts -------------------------------------------------------------------------------- /src/bot/commands/owner/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/owner/eval.ts -------------------------------------------------------------------------------- /src/bot/commands/utility/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/utility/avatar.ts -------------------------------------------------------------------------------- /src/bot/commands/utility/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/utility/prefix.ts -------------------------------------------------------------------------------- /src/bot/commands/utility/snipe.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/commands/utility/snipe.ts -------------------------------------------------------------------------------- /src/bot/core/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/core/Database.ts -------------------------------------------------------------------------------- /src/bot/core/Level.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/core/Level.ts -------------------------------------------------------------------------------- /src/bot/core/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/core/Queue.ts -------------------------------------------------------------------------------- /src/bot/core/SettingsProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/core/SettingsProvider.ts -------------------------------------------------------------------------------- /src/bot/core/Tags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/core/Tags.ts -------------------------------------------------------------------------------- /src/bot/inhibitors/blacklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/inhibitors/blacklist.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/guildCreate.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/guildDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/guildDelete.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/message.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/message.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/messageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/messageDelete.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/messageDeleteBulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/messageDeleteBulk.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/messageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/messageUpdate.ts -------------------------------------------------------------------------------- /src/bot/listeners/client/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/client/ready.ts -------------------------------------------------------------------------------- /src/bot/listeners/command/commandStarted.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/command/commandStarted.ts -------------------------------------------------------------------------------- /src/bot/listeners/command/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/listeners/command/error.ts -------------------------------------------------------------------------------- /src/bot/util/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/util/constants.ts -------------------------------------------------------------------------------- /src/bot/util/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/util/logger.ts -------------------------------------------------------------------------------- /src/bot/util/paginate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/util/paginate.ts -------------------------------------------------------------------------------- /src/bot/util/progressbar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/util/progressbar.ts -------------------------------------------------------------------------------- /src/bot/util/timeString.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/bot/util/timeString.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@skyra/eslint-config" 3 | } -------------------------------------------------------------------------------- /tsconfig.eslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/tsconfig.eslint.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kushagraaj/Mito/HEAD/tsconfig.json --------------------------------------------------------------------------------