├── .env.example ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── codeql.yml ├── .gitignore ├── .prettierrc.json ├── .travis.yml ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── src ├── commands │ ├── Fun │ │ ├── cuddle.ts │ │ ├── hug.ts │ │ ├── kiss.ts │ │ ├── pat.ts │ │ └── slap.ts │ ├── Image │ │ ├── animeme.ts │ │ ├── boobs.ts │ │ ├── dankmeme.ts │ │ ├── emoji.ts │ │ ├── foxgirl.ts │ │ ├── futa.ts │ │ ├── gasm.ts │ │ ├── neko.ts │ │ └── pussy.ts │ ├── Information │ │ ├── anime.ts │ │ ├── help.ts │ │ ├── invite.ts │ │ ├── ping.ts │ │ └── stats.ts │ ├── Moderation │ │ ├── ban.ts │ │ ├── inviteFilter.ts │ │ ├── kick.ts │ │ └── prefix.ts │ └── Voice │ │ ├── loop.ts │ │ ├── nowplaying.ts │ │ ├── pause.ts │ │ ├── play.ts │ │ ├── queue.ts │ │ ├── skip.ts │ │ ├── stop.ts │ │ └── volume.ts ├── index.ts ├── inhibitors │ ├── antiInvites.ts │ └── filter.ts ├── lib │ ├── BaseCluster.ts │ ├── CrimClient.ts │ ├── managers │ │ └── GuildSettingsManager.ts │ └── structs │ │ ├── AutoModSettings.ts │ │ ├── CrimGuild.ts │ │ ├── CrimPlayer.ts │ │ ├── CrimTrack.ts │ │ └── ModerationCase.ts ├── listeners │ ├── connectVoice.ts │ ├── messageBlocked.ts │ ├── precenceRotation.ts │ ├── starboard.ts │ └── vcAutoLeave.ts └── models │ └── GuildSettings.ts └── tsconfig.json /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/package.json -------------------------------------------------------------------------------- /src/commands/Fun/cuddle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Fun/cuddle.ts -------------------------------------------------------------------------------- /src/commands/Fun/hug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Fun/hug.ts -------------------------------------------------------------------------------- /src/commands/Fun/kiss.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Fun/kiss.ts -------------------------------------------------------------------------------- /src/commands/Fun/pat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Fun/pat.ts -------------------------------------------------------------------------------- /src/commands/Fun/slap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Fun/slap.ts -------------------------------------------------------------------------------- /src/commands/Image/animeme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/animeme.ts -------------------------------------------------------------------------------- /src/commands/Image/boobs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/boobs.ts -------------------------------------------------------------------------------- /src/commands/Image/dankmeme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/dankmeme.ts -------------------------------------------------------------------------------- /src/commands/Image/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/emoji.ts -------------------------------------------------------------------------------- /src/commands/Image/foxgirl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/foxgirl.ts -------------------------------------------------------------------------------- /src/commands/Image/futa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/futa.ts -------------------------------------------------------------------------------- /src/commands/Image/gasm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/gasm.ts -------------------------------------------------------------------------------- /src/commands/Image/neko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/neko.ts -------------------------------------------------------------------------------- /src/commands/Image/pussy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Image/pussy.ts -------------------------------------------------------------------------------- /src/commands/Information/anime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Information/anime.ts -------------------------------------------------------------------------------- /src/commands/Information/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Information/help.ts -------------------------------------------------------------------------------- /src/commands/Information/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Information/invite.ts -------------------------------------------------------------------------------- /src/commands/Information/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Information/ping.ts -------------------------------------------------------------------------------- /src/commands/Information/stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Information/stats.ts -------------------------------------------------------------------------------- /src/commands/Moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Moderation/ban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/inviteFilter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Moderation/inviteFilter.ts -------------------------------------------------------------------------------- /src/commands/Moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Moderation/kick.ts -------------------------------------------------------------------------------- /src/commands/Moderation/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Moderation/prefix.ts -------------------------------------------------------------------------------- /src/commands/Voice/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/loop.ts -------------------------------------------------------------------------------- /src/commands/Voice/nowplaying.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/nowplaying.ts -------------------------------------------------------------------------------- /src/commands/Voice/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/pause.ts -------------------------------------------------------------------------------- /src/commands/Voice/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/play.ts -------------------------------------------------------------------------------- /src/commands/Voice/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/queue.ts -------------------------------------------------------------------------------- /src/commands/Voice/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/skip.ts -------------------------------------------------------------------------------- /src/commands/Voice/stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/stop.ts -------------------------------------------------------------------------------- /src/commands/Voice/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/commands/Voice/volume.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/inhibitors/antiInvites.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/inhibitors/antiInvites.ts -------------------------------------------------------------------------------- /src/inhibitors/filter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/inhibitors/filter.ts -------------------------------------------------------------------------------- /src/lib/BaseCluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/BaseCluster.ts -------------------------------------------------------------------------------- /src/lib/CrimClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/CrimClient.ts -------------------------------------------------------------------------------- /src/lib/managers/GuildSettingsManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/managers/GuildSettingsManager.ts -------------------------------------------------------------------------------- /src/lib/structs/AutoModSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/structs/AutoModSettings.ts -------------------------------------------------------------------------------- /src/lib/structs/CrimGuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/structs/CrimGuild.ts -------------------------------------------------------------------------------- /src/lib/structs/CrimPlayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/structs/CrimPlayer.ts -------------------------------------------------------------------------------- /src/lib/structs/CrimTrack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/lib/structs/CrimTrack.ts -------------------------------------------------------------------------------- /src/lib/structs/ModerationCase.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/listeners/connectVoice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/listeners/connectVoice.ts -------------------------------------------------------------------------------- /src/listeners/messageBlocked.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/listeners/messageBlocked.ts -------------------------------------------------------------------------------- /src/listeners/precenceRotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/listeners/precenceRotation.ts -------------------------------------------------------------------------------- /src/listeners/starboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/listeners/starboard.ts -------------------------------------------------------------------------------- /src/listeners/vcAutoLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/listeners/vcAutoLeave.ts -------------------------------------------------------------------------------- /src/models/GuildSettings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/src/models/GuildSettings.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emy/crim/HEAD/tsconfig.json --------------------------------------------------------------------------------