├── .github ├── CONTRIBUTING.md ├── FUNDING.yml └── SUPPORT.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── SECURITY.md ├── add-config-element-object.js ├── config-generator ├── config.json └── strings.json ├── generate-config.js ├── locales ├── de.json └── en.json ├── main.js ├── modules ├── admin-tools │ ├── commands │ │ ├── admin.js │ │ └── stealemote.js │ ├── config.json │ └── module.json ├── afk-system │ ├── commands │ │ └── afk.js │ ├── config.json │ ├── events │ │ └── messageCreate.js │ ├── models │ │ └── User.js │ └── module.json ├── anti-ghostping │ ├── config.json │ ├── events │ │ ├── messageCreate.js │ │ └── messageDelete.js │ └── module.json ├── auto-delete │ ├── channels.json │ ├── events │ │ ├── botReady.js │ │ ├── messageCreate.js │ │ └── voiceStateUpdate.js │ ├── module.json │ └── voice-channels.json ├── auto-messager │ ├── cronjob.json │ ├── daily.json │ ├── events │ │ └── botReady.js │ ├── hourly.json │ └── module.json ├── auto-publisher │ ├── config.json │ ├── events │ │ └── messageCreate.js │ └── module.json ├── auto-react │ ├── configs │ │ ├── config.json │ │ └── replies.json │ ├── events │ │ └── messageCreate.js │ └── module.json ├── auto-thread │ ├── config.json │ ├── events │ │ └── messageCreate.js │ └── module.json ├── betterstatus │ ├── config.json │ ├── events │ │ ├── botReady.js │ │ └── guildMemberAdd.js │ └── module.json ├── birthday │ ├── birthday.js │ ├── commands │ │ └── birthday.js │ ├── config.json │ ├── events │ │ ├── botReady.js │ │ └── guildMemberRemove.js │ ├── models │ │ └── User.js │ └── module.json ├── channel-stats │ ├── channels.json │ ├── events │ │ └── botReady.js │ └── module.json ├── color-me │ ├── commands │ │ └── color-me.js │ ├── configs │ │ ├── config.json │ │ └── strings.json │ ├── events │ │ └── guildMemberUpdate.js │ ├── models │ │ └── Role.js │ └── module.json ├── connect-four │ ├── commands │ │ └── connect-four.js │ └── module.json ├── counter │ ├── config.json │ ├── events │ │ ├── botReady.js │ │ └── messageCreate.js │ ├── milestones.json │ ├── models │ │ └── CountChannel.js │ └── module.json ├── duel │ ├── commands │ │ └── duel.js │ └── module.json ├── economy-system │ ├── cli.js │ ├── commands │ │ ├── economy-system.js │ │ └── shop.js │ ├── configs │ │ ├── config.json │ │ └── strings.json │ ├── economy-system.js │ ├── events │ │ ├── botReady.js │ │ ├── interactionCreate.js │ │ └── messageCreate.js │ ├── models │ │ ├── cooldowns.js │ │ ├── dropMsg.js │ │ ├── shop.js │ │ └── user.js │ └── module.json ├── fun │ ├── commands │ │ ├── hug.js │ │ ├── kiss.js │ │ ├── pat.js │ │ ├── random.js │ │ └── slap.js │ ├── config.json │ └── module.json ├── giveaways │ ├── commands │ │ ├── giveaway.js │ │ └── gmessages.js │ ├── configs │ │ ├── config.json │ │ └── strings.json │ ├── events │ │ ├── botReady.js │ │ ├── interactionCreate.js │ │ └── messageCreate.js │ ├── giveaways.js │ ├── models │ │ └── Giveaway.js │ └── module.json ├── guess-the-number │ ├── commands │ │ └── manage.js │ ├── config.json │ ├── events │ │ ├── interactionCreate.js │ │ └── messageCreate.js │ ├── models │ │ └── Channel.js │ └── module.json ├── hunt-the-code │ ├── commands │ │ ├── hunt-the-code-admin.js │ │ └── hunt-the-code.js │ ├── models │ │ ├── Code.js │ │ └── User.js │ ├── module.json │ └── strings.json ├── info-commands │ ├── commands │ │ └── info.js │ ├── module.json │ └── strings.json ├── invite-tracking │ ├── commands │ │ └── trace-invites.js │ ├── config.json │ ├── events │ │ ├── guildMemberJoin.js │ │ ├── guildMemberRemove.js │ │ └── interactionCreate.js │ ├── models │ │ └── UserInvite.js │ ├── module.json │ └── onLoad.js ├── levels │ ├── commands │ │ ├── leaderboard.js │ │ ├── manage-levels.js │ │ └── profile.js │ ├── configs │ │ ├── config.json │ │ ├── random-levelup-messages.json │ │ ├── special-levelup-messages.json │ │ └── strings.json │ ├── events │ │ ├── botReady.js │ │ ├── guildMemberRemove.js │ │ ├── interactionCreate.js │ │ └── messageCreate.js │ ├── leaderboardChannel.js │ ├── models │ │ └── User.js │ └── module.json ├── massrole │ ├── commands │ │ └── massrole.js │ ├── configs │ │ ├── config.json │ │ └── strings.json │ └── module.json ├── moderation │ ├── commands │ │ ├── moderate.js │ │ └── report.js │ ├── configs │ │ ├── antiGrief.json │ │ ├── antiJoinRaid.json │ │ ├── antiSpam.json │ │ ├── config.json │ │ ├── joinGate.json │ │ ├── strings.json │ │ └── verification.json │ ├── events │ │ ├── botReady.js │ │ ├── guildMemberAdd.js │ │ ├── interactionCreate.js │ │ ├── messageCreate.js │ │ └── messageUpdate.js │ ├── models │ │ ├── ModerationAction.js │ │ └── UserNotes.js │ ├── moderationActions.js │ └── module.json ├── nicknames │ ├── configs │ │ ├── config.json │ │ └── strings.json │ ├── events │ │ ├── botReady.js │ │ └── guildMemberUpdate.js │ ├── models │ │ └── User.js │ ├── module.json │ └── renameMember.js ├── partner-list │ ├── commands │ │ └── partner.js │ ├── config.json │ ├── events │ │ └── botReady.js │ ├── models │ │ └── Partner.js │ ├── module.json │ └── partnerlist.js ├── ping-on-vc-join │ ├── actual-config.json │ ├── config.json │ ├── events │ │ └── voiceStateUpdate.js │ └── module.json ├── polls │ ├── commands │ │ └── poll.js │ ├── configs │ │ ├── config.json │ │ └── strings.json │ ├── events │ │ ├── botReady.js │ │ └── interactionCreate.js │ ├── models │ │ └── Poll.js │ ├── module.json │ └── polls.js ├── quiz │ ├── commands │ │ └── quiz.js │ ├── configs │ │ ├── config.json │ │ ├── quizList.json │ │ └── strings.json │ ├── events │ │ ├── botReady.js │ │ └── interactionCreate.js │ ├── models │ │ ├── Quiz.js │ │ └── QuizUser.js │ ├── module.json │ └── quizUtil.js ├── reminders │ ├── commands │ │ └── reminder.js │ ├── config.json │ ├── events │ │ └── botReady.js │ ├── models │ │ └── Reminder.js │ ├── module.json │ └── reminders.js ├── rock-paper-scissors │ ├── commands │ │ └── rock-paper-scissors.js │ └── module.json ├── serverinfo │ ├── configs │ │ ├── config.json │ │ └── fields.json │ ├── events │ │ └── botReady.js │ └── module.json ├── starboard │ ├── configs │ │ └── config.json │ ├── events │ │ ├── botReady.js │ │ ├── messageReactionAdd.js │ │ └── messageReactionRemove.js │ ├── handleStarboard.js │ ├── models │ │ ├── StarMsg.js │ │ └── StarUser.js │ └── module.json ├── status-roles │ ├── configs │ │ └── config.json │ ├── events │ │ └── presenceUpdate.js │ └── module.json ├── sticky-messages │ ├── configs │ │ └── sticky-messages.json │ ├── events │ │ ├── botReady.js │ │ └── messageCreate.js │ └── module.json ├── suggestions │ ├── commands │ │ ├── manage-suggestion.js │ │ └── suggestion.js │ ├── config.json │ ├── events │ │ └── messageCreate.js │ ├── models │ │ └── Suggestion.js │ ├── module.json │ └── suggestion.js ├── team-list │ ├── config.json │ ├── events │ │ └── botReady.js │ └── module.json ├── temp-channels │ ├── channel-settings.js │ ├── commands │ │ └── temp-channel.js │ ├── config.json │ ├── events │ │ ├── botReady.js │ │ ├── channelDelete.js │ │ ├── interactionCreate.js │ │ └── voiceStateUpdate.js │ ├── locales.json │ ├── models │ │ ├── TempChannel.js │ │ └── TempChannelV1.js │ └── module.json ├── tic-tak-toe │ ├── commands │ │ └── tic-tac-toe.js │ └── module.json ├── tickets │ ├── config.json │ ├── events │ │ ├── botReady.js │ │ ├── interactionCreate.js │ │ └── messageCreate.js │ ├── models │ │ ├── Message.js │ │ ├── Ticket.js │ │ └── TicketV1.js │ └── module.json ├── twitch-notifications │ ├── configs │ │ ├── config.json │ │ └── streamers.json │ ├── events │ │ └── botReady.js │ ├── models │ │ └── Streamer.js │ └── module.json ├── uno │ ├── commands │ │ └── uno.js │ └── module.json └── welcomer │ ├── configs │ ├── channels.json │ ├── config.json │ └── random-messages.json │ ├── events │ ├── guildMemberAdd.js │ ├── guildMemberRemove.js │ ├── guildMemberUpdate.js │ └── interactionCreate.js │ ├── models │ └── User.js │ └── module.json ├── package.json └── src ├── cli.js ├── commands ├── help.js └── reload.js ├── events ├── botReady.js └── interactionCreate.js ├── functions ├── configuration.js ├── helpers.js └── localize.js ├── gen-doc └── Client.js └── models ├── ChannelLock.js └── DatabaseSchemeVersion.js /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/SECURITY.md -------------------------------------------------------------------------------- /add-config-element-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/add-config-element-object.js -------------------------------------------------------------------------------- /config-generator/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/config-generator/config.json -------------------------------------------------------------------------------- /config-generator/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/config-generator/strings.json -------------------------------------------------------------------------------- /generate-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/generate-config.js -------------------------------------------------------------------------------- /locales/de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/locales/de.json -------------------------------------------------------------------------------- /locales/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/locales/en.json -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/main.js -------------------------------------------------------------------------------- /modules/admin-tools/commands/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/admin-tools/commands/admin.js -------------------------------------------------------------------------------- /modules/admin-tools/commands/stealemote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/admin-tools/commands/stealemote.js -------------------------------------------------------------------------------- /modules/admin-tools/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/admin-tools/config.json -------------------------------------------------------------------------------- /modules/admin-tools/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/admin-tools/module.json -------------------------------------------------------------------------------- /modules/afk-system/commands/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/afk-system/commands/afk.js -------------------------------------------------------------------------------- /modules/afk-system/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/afk-system/config.json -------------------------------------------------------------------------------- /modules/afk-system/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/afk-system/events/messageCreate.js -------------------------------------------------------------------------------- /modules/afk-system/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/afk-system/models/User.js -------------------------------------------------------------------------------- /modules/afk-system/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/afk-system/module.json -------------------------------------------------------------------------------- /modules/anti-ghostping/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/anti-ghostping/config.json -------------------------------------------------------------------------------- /modules/anti-ghostping/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/anti-ghostping/events/messageCreate.js -------------------------------------------------------------------------------- /modules/anti-ghostping/events/messageDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/anti-ghostping/events/messageDelete.js -------------------------------------------------------------------------------- /modules/anti-ghostping/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/anti-ghostping/module.json -------------------------------------------------------------------------------- /modules/auto-delete/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-delete/channels.json -------------------------------------------------------------------------------- /modules/auto-delete/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-delete/events/botReady.js -------------------------------------------------------------------------------- /modules/auto-delete/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-delete/events/messageCreate.js -------------------------------------------------------------------------------- /modules/auto-delete/events/voiceStateUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-delete/events/voiceStateUpdate.js -------------------------------------------------------------------------------- /modules/auto-delete/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-delete/module.json -------------------------------------------------------------------------------- /modules/auto-delete/voice-channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-delete/voice-channels.json -------------------------------------------------------------------------------- /modules/auto-messager/cronjob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-messager/cronjob.json -------------------------------------------------------------------------------- /modules/auto-messager/daily.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-messager/daily.json -------------------------------------------------------------------------------- /modules/auto-messager/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-messager/events/botReady.js -------------------------------------------------------------------------------- /modules/auto-messager/hourly.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-messager/hourly.json -------------------------------------------------------------------------------- /modules/auto-messager/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-messager/module.json -------------------------------------------------------------------------------- /modules/auto-publisher/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-publisher/config.json -------------------------------------------------------------------------------- /modules/auto-publisher/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-publisher/events/messageCreate.js -------------------------------------------------------------------------------- /modules/auto-publisher/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-publisher/module.json -------------------------------------------------------------------------------- /modules/auto-react/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-react/configs/config.json -------------------------------------------------------------------------------- /modules/auto-react/configs/replies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-react/configs/replies.json -------------------------------------------------------------------------------- /modules/auto-react/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-react/events/messageCreate.js -------------------------------------------------------------------------------- /modules/auto-react/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-react/module.json -------------------------------------------------------------------------------- /modules/auto-thread/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-thread/config.json -------------------------------------------------------------------------------- /modules/auto-thread/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-thread/events/messageCreate.js -------------------------------------------------------------------------------- /modules/auto-thread/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/auto-thread/module.json -------------------------------------------------------------------------------- /modules/betterstatus/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/betterstatus/config.json -------------------------------------------------------------------------------- /modules/betterstatus/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/betterstatus/events/botReady.js -------------------------------------------------------------------------------- /modules/betterstatus/events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/betterstatus/events/guildMemberAdd.js -------------------------------------------------------------------------------- /modules/betterstatus/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/betterstatus/module.json -------------------------------------------------------------------------------- /modules/birthday/birthday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/birthday.js -------------------------------------------------------------------------------- /modules/birthday/commands/birthday.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/commands/birthday.js -------------------------------------------------------------------------------- /modules/birthday/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/config.json -------------------------------------------------------------------------------- /modules/birthday/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/events/botReady.js -------------------------------------------------------------------------------- /modules/birthday/events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/events/guildMemberRemove.js -------------------------------------------------------------------------------- /modules/birthday/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/models/User.js -------------------------------------------------------------------------------- /modules/birthday/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/birthday/module.json -------------------------------------------------------------------------------- /modules/channel-stats/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/channel-stats/channels.json -------------------------------------------------------------------------------- /modules/channel-stats/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/channel-stats/events/botReady.js -------------------------------------------------------------------------------- /modules/channel-stats/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/channel-stats/module.json -------------------------------------------------------------------------------- /modules/color-me/commands/color-me.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/color-me/commands/color-me.js -------------------------------------------------------------------------------- /modules/color-me/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/color-me/configs/config.json -------------------------------------------------------------------------------- /modules/color-me/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/color-me/configs/strings.json -------------------------------------------------------------------------------- /modules/color-me/events/guildMemberUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/color-me/events/guildMemberUpdate.js -------------------------------------------------------------------------------- /modules/color-me/models/Role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/color-me/models/Role.js -------------------------------------------------------------------------------- /modules/color-me/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/color-me/module.json -------------------------------------------------------------------------------- /modules/connect-four/commands/connect-four.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/connect-four/commands/connect-four.js -------------------------------------------------------------------------------- /modules/connect-four/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/connect-four/module.json -------------------------------------------------------------------------------- /modules/counter/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/counter/config.json -------------------------------------------------------------------------------- /modules/counter/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/counter/events/botReady.js -------------------------------------------------------------------------------- /modules/counter/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/counter/events/messageCreate.js -------------------------------------------------------------------------------- /modules/counter/milestones.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/counter/milestones.json -------------------------------------------------------------------------------- /modules/counter/models/CountChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/counter/models/CountChannel.js -------------------------------------------------------------------------------- /modules/counter/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/counter/module.json -------------------------------------------------------------------------------- /modules/duel/commands/duel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/duel/commands/duel.js -------------------------------------------------------------------------------- /modules/duel/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/duel/module.json -------------------------------------------------------------------------------- /modules/economy-system/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/cli.js -------------------------------------------------------------------------------- /modules/economy-system/commands/economy-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/commands/economy-system.js -------------------------------------------------------------------------------- /modules/economy-system/commands/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/commands/shop.js -------------------------------------------------------------------------------- /modules/economy-system/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/configs/config.json -------------------------------------------------------------------------------- /modules/economy-system/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/configs/strings.json -------------------------------------------------------------------------------- /modules/economy-system/economy-system.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/economy-system.js -------------------------------------------------------------------------------- /modules/economy-system/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/events/botReady.js -------------------------------------------------------------------------------- /modules/economy-system/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/economy-system/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/events/messageCreate.js -------------------------------------------------------------------------------- /modules/economy-system/models/cooldowns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/models/cooldowns.js -------------------------------------------------------------------------------- /modules/economy-system/models/dropMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/models/dropMsg.js -------------------------------------------------------------------------------- /modules/economy-system/models/shop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/models/shop.js -------------------------------------------------------------------------------- /modules/economy-system/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/models/user.js -------------------------------------------------------------------------------- /modules/economy-system/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/economy-system/module.json -------------------------------------------------------------------------------- /modules/fun/commands/hug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/commands/hug.js -------------------------------------------------------------------------------- /modules/fun/commands/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/commands/kiss.js -------------------------------------------------------------------------------- /modules/fun/commands/pat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/commands/pat.js -------------------------------------------------------------------------------- /modules/fun/commands/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/commands/random.js -------------------------------------------------------------------------------- /modules/fun/commands/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/commands/slap.js -------------------------------------------------------------------------------- /modules/fun/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/config.json -------------------------------------------------------------------------------- /modules/fun/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/fun/module.json -------------------------------------------------------------------------------- /modules/giveaways/commands/giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/commands/giveaway.js -------------------------------------------------------------------------------- /modules/giveaways/commands/gmessages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/commands/gmessages.js -------------------------------------------------------------------------------- /modules/giveaways/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/configs/config.json -------------------------------------------------------------------------------- /modules/giveaways/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/configs/strings.json -------------------------------------------------------------------------------- /modules/giveaways/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/events/botReady.js -------------------------------------------------------------------------------- /modules/giveaways/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/giveaways/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/events/messageCreate.js -------------------------------------------------------------------------------- /modules/giveaways/giveaways.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/giveaways.js -------------------------------------------------------------------------------- /modules/giveaways/models/Giveaway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/models/Giveaway.js -------------------------------------------------------------------------------- /modules/giveaways/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/giveaways/module.json -------------------------------------------------------------------------------- /modules/guess-the-number/commands/manage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/guess-the-number/commands/manage.js -------------------------------------------------------------------------------- /modules/guess-the-number/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/guess-the-number/config.json -------------------------------------------------------------------------------- /modules/guess-the-number/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/guess-the-number/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/guess-the-number/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/guess-the-number/events/messageCreate.js -------------------------------------------------------------------------------- /modules/guess-the-number/models/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/guess-the-number/models/Channel.js -------------------------------------------------------------------------------- /modules/guess-the-number/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/guess-the-number/module.json -------------------------------------------------------------------------------- /modules/hunt-the-code/commands/hunt-the-code-admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/hunt-the-code/commands/hunt-the-code-admin.js -------------------------------------------------------------------------------- /modules/hunt-the-code/commands/hunt-the-code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/hunt-the-code/commands/hunt-the-code.js -------------------------------------------------------------------------------- /modules/hunt-the-code/models/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/hunt-the-code/models/Code.js -------------------------------------------------------------------------------- /modules/hunt-the-code/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/hunt-the-code/models/User.js -------------------------------------------------------------------------------- /modules/hunt-the-code/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/hunt-the-code/module.json -------------------------------------------------------------------------------- /modules/hunt-the-code/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/hunt-the-code/strings.json -------------------------------------------------------------------------------- /modules/info-commands/commands/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/info-commands/commands/info.js -------------------------------------------------------------------------------- /modules/info-commands/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/info-commands/module.json -------------------------------------------------------------------------------- /modules/info-commands/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/info-commands/strings.json -------------------------------------------------------------------------------- /modules/invite-tracking/commands/trace-invites.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/commands/trace-invites.js -------------------------------------------------------------------------------- /modules/invite-tracking/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/config.json -------------------------------------------------------------------------------- /modules/invite-tracking/events/guildMemberJoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/events/guildMemberJoin.js -------------------------------------------------------------------------------- /modules/invite-tracking/events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/events/guildMemberRemove.js -------------------------------------------------------------------------------- /modules/invite-tracking/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/invite-tracking/models/UserInvite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/models/UserInvite.js -------------------------------------------------------------------------------- /modules/invite-tracking/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/module.json -------------------------------------------------------------------------------- /modules/invite-tracking/onLoad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/invite-tracking/onLoad.js -------------------------------------------------------------------------------- /modules/levels/commands/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/commands/leaderboard.js -------------------------------------------------------------------------------- /modules/levels/commands/manage-levels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/commands/manage-levels.js -------------------------------------------------------------------------------- /modules/levels/commands/profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/commands/profile.js -------------------------------------------------------------------------------- /modules/levels/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/configs/config.json -------------------------------------------------------------------------------- /modules/levels/configs/random-levelup-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/configs/random-levelup-messages.json -------------------------------------------------------------------------------- /modules/levels/configs/special-levelup-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/configs/special-levelup-messages.json -------------------------------------------------------------------------------- /modules/levels/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/configs/strings.json -------------------------------------------------------------------------------- /modules/levels/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/events/botReady.js -------------------------------------------------------------------------------- /modules/levels/events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/events/guildMemberRemove.js -------------------------------------------------------------------------------- /modules/levels/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/levels/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/events/messageCreate.js -------------------------------------------------------------------------------- /modules/levels/leaderboardChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/leaderboardChannel.js -------------------------------------------------------------------------------- /modules/levels/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/models/User.js -------------------------------------------------------------------------------- /modules/levels/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/levels/module.json -------------------------------------------------------------------------------- /modules/massrole/commands/massrole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/massrole/commands/massrole.js -------------------------------------------------------------------------------- /modules/massrole/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/massrole/configs/config.json -------------------------------------------------------------------------------- /modules/massrole/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/massrole/configs/strings.json -------------------------------------------------------------------------------- /modules/massrole/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/massrole/module.json -------------------------------------------------------------------------------- /modules/moderation/commands/moderate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/commands/moderate.js -------------------------------------------------------------------------------- /modules/moderation/commands/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/commands/report.js -------------------------------------------------------------------------------- /modules/moderation/configs/antiGrief.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/antiGrief.json -------------------------------------------------------------------------------- /modules/moderation/configs/antiJoinRaid.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/antiJoinRaid.json -------------------------------------------------------------------------------- /modules/moderation/configs/antiSpam.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/antiSpam.json -------------------------------------------------------------------------------- /modules/moderation/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/config.json -------------------------------------------------------------------------------- /modules/moderation/configs/joinGate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/joinGate.json -------------------------------------------------------------------------------- /modules/moderation/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/strings.json -------------------------------------------------------------------------------- /modules/moderation/configs/verification.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/configs/verification.json -------------------------------------------------------------------------------- /modules/moderation/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/events/botReady.js -------------------------------------------------------------------------------- /modules/moderation/events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/events/guildMemberAdd.js -------------------------------------------------------------------------------- /modules/moderation/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/moderation/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/events/messageCreate.js -------------------------------------------------------------------------------- /modules/moderation/events/messageUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/events/messageUpdate.js -------------------------------------------------------------------------------- /modules/moderation/models/ModerationAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/models/ModerationAction.js -------------------------------------------------------------------------------- /modules/moderation/models/UserNotes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/models/UserNotes.js -------------------------------------------------------------------------------- /modules/moderation/moderationActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/moderationActions.js -------------------------------------------------------------------------------- /modules/moderation/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/moderation/module.json -------------------------------------------------------------------------------- /modules/nicknames/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/configs/config.json -------------------------------------------------------------------------------- /modules/nicknames/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/configs/strings.json -------------------------------------------------------------------------------- /modules/nicknames/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/events/botReady.js -------------------------------------------------------------------------------- /modules/nicknames/events/guildMemberUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/events/guildMemberUpdate.js -------------------------------------------------------------------------------- /modules/nicknames/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/models/User.js -------------------------------------------------------------------------------- /modules/nicknames/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/module.json -------------------------------------------------------------------------------- /modules/nicknames/renameMember.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/nicknames/renameMember.js -------------------------------------------------------------------------------- /modules/partner-list/commands/partner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/partner-list/commands/partner.js -------------------------------------------------------------------------------- /modules/partner-list/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/partner-list/config.json -------------------------------------------------------------------------------- /modules/partner-list/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/partner-list/events/botReady.js -------------------------------------------------------------------------------- /modules/partner-list/models/Partner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/partner-list/models/Partner.js -------------------------------------------------------------------------------- /modules/partner-list/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/partner-list/module.json -------------------------------------------------------------------------------- /modules/partner-list/partnerlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/partner-list/partnerlist.js -------------------------------------------------------------------------------- /modules/ping-on-vc-join/actual-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/ping-on-vc-join/actual-config.json -------------------------------------------------------------------------------- /modules/ping-on-vc-join/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/ping-on-vc-join/config.json -------------------------------------------------------------------------------- /modules/ping-on-vc-join/events/voiceStateUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/ping-on-vc-join/events/voiceStateUpdate.js -------------------------------------------------------------------------------- /modules/ping-on-vc-join/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/ping-on-vc-join/module.json -------------------------------------------------------------------------------- /modules/polls/commands/poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/commands/poll.js -------------------------------------------------------------------------------- /modules/polls/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/configs/config.json -------------------------------------------------------------------------------- /modules/polls/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/configs/strings.json -------------------------------------------------------------------------------- /modules/polls/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/events/botReady.js -------------------------------------------------------------------------------- /modules/polls/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/polls/models/Poll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/models/Poll.js -------------------------------------------------------------------------------- /modules/polls/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/module.json -------------------------------------------------------------------------------- /modules/polls/polls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/polls/polls.js -------------------------------------------------------------------------------- /modules/quiz/commands/quiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/commands/quiz.js -------------------------------------------------------------------------------- /modules/quiz/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/configs/config.json -------------------------------------------------------------------------------- /modules/quiz/configs/quizList.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/configs/quizList.json -------------------------------------------------------------------------------- /modules/quiz/configs/strings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/configs/strings.json -------------------------------------------------------------------------------- /modules/quiz/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/events/botReady.js -------------------------------------------------------------------------------- /modules/quiz/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/quiz/models/Quiz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/models/Quiz.js -------------------------------------------------------------------------------- /modules/quiz/models/QuizUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/models/QuizUser.js -------------------------------------------------------------------------------- /modules/quiz/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/module.json -------------------------------------------------------------------------------- /modules/quiz/quizUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/quiz/quizUtil.js -------------------------------------------------------------------------------- /modules/reminders/commands/reminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/reminders/commands/reminder.js -------------------------------------------------------------------------------- /modules/reminders/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/reminders/config.json -------------------------------------------------------------------------------- /modules/reminders/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/reminders/events/botReady.js -------------------------------------------------------------------------------- /modules/reminders/models/Reminder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/reminders/models/Reminder.js -------------------------------------------------------------------------------- /modules/reminders/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/reminders/module.json -------------------------------------------------------------------------------- /modules/reminders/reminders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/reminders/reminders.js -------------------------------------------------------------------------------- /modules/rock-paper-scissors/commands/rock-paper-scissors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/rock-paper-scissors/commands/rock-paper-scissors.js -------------------------------------------------------------------------------- /modules/rock-paper-scissors/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/rock-paper-scissors/module.json -------------------------------------------------------------------------------- /modules/serverinfo/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/serverinfo/configs/config.json -------------------------------------------------------------------------------- /modules/serverinfo/configs/fields.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/serverinfo/configs/fields.json -------------------------------------------------------------------------------- /modules/serverinfo/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/serverinfo/events/botReady.js -------------------------------------------------------------------------------- /modules/serverinfo/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/serverinfo/module.json -------------------------------------------------------------------------------- /modules/starboard/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/configs/config.json -------------------------------------------------------------------------------- /modules/starboard/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/events/botReady.js -------------------------------------------------------------------------------- /modules/starboard/events/messageReactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/events/messageReactionAdd.js -------------------------------------------------------------------------------- /modules/starboard/events/messageReactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/events/messageReactionRemove.js -------------------------------------------------------------------------------- /modules/starboard/handleStarboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/handleStarboard.js -------------------------------------------------------------------------------- /modules/starboard/models/StarMsg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/models/StarMsg.js -------------------------------------------------------------------------------- /modules/starboard/models/StarUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/models/StarUser.js -------------------------------------------------------------------------------- /modules/starboard/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/starboard/module.json -------------------------------------------------------------------------------- /modules/status-roles/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/status-roles/configs/config.json -------------------------------------------------------------------------------- /modules/status-roles/events/presenceUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/status-roles/events/presenceUpdate.js -------------------------------------------------------------------------------- /modules/status-roles/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/status-roles/module.json -------------------------------------------------------------------------------- /modules/sticky-messages/configs/sticky-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/sticky-messages/configs/sticky-messages.json -------------------------------------------------------------------------------- /modules/sticky-messages/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/sticky-messages/events/botReady.js -------------------------------------------------------------------------------- /modules/sticky-messages/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/sticky-messages/events/messageCreate.js -------------------------------------------------------------------------------- /modules/sticky-messages/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/sticky-messages/module.json -------------------------------------------------------------------------------- /modules/suggestions/commands/manage-suggestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/commands/manage-suggestion.js -------------------------------------------------------------------------------- /modules/suggestions/commands/suggestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/commands/suggestion.js -------------------------------------------------------------------------------- /modules/suggestions/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/config.json -------------------------------------------------------------------------------- /modules/suggestions/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/events/messageCreate.js -------------------------------------------------------------------------------- /modules/suggestions/models/Suggestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/models/Suggestion.js -------------------------------------------------------------------------------- /modules/suggestions/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/module.json -------------------------------------------------------------------------------- /modules/suggestions/suggestion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/suggestions/suggestion.js -------------------------------------------------------------------------------- /modules/team-list/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/team-list/config.json -------------------------------------------------------------------------------- /modules/team-list/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/team-list/events/botReady.js -------------------------------------------------------------------------------- /modules/team-list/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/team-list/module.json -------------------------------------------------------------------------------- /modules/temp-channels/channel-settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/channel-settings.js -------------------------------------------------------------------------------- /modules/temp-channels/commands/temp-channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/commands/temp-channel.js -------------------------------------------------------------------------------- /modules/temp-channels/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/config.json -------------------------------------------------------------------------------- /modules/temp-channels/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/events/botReady.js -------------------------------------------------------------------------------- /modules/temp-channels/events/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/events/channelDelete.js -------------------------------------------------------------------------------- /modules/temp-channels/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/temp-channels/events/voiceStateUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/events/voiceStateUpdate.js -------------------------------------------------------------------------------- /modules/temp-channels/locales.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/locales.json -------------------------------------------------------------------------------- /modules/temp-channels/models/TempChannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/models/TempChannel.js -------------------------------------------------------------------------------- /modules/temp-channels/models/TempChannelV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/models/TempChannelV1.js -------------------------------------------------------------------------------- /modules/temp-channels/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/temp-channels/module.json -------------------------------------------------------------------------------- /modules/tic-tak-toe/commands/tic-tac-toe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tic-tak-toe/commands/tic-tac-toe.js -------------------------------------------------------------------------------- /modules/tic-tak-toe/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tic-tak-toe/module.json -------------------------------------------------------------------------------- /modules/tickets/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/config.json -------------------------------------------------------------------------------- /modules/tickets/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/events/botReady.js -------------------------------------------------------------------------------- /modules/tickets/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/tickets/events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/events/messageCreate.js -------------------------------------------------------------------------------- /modules/tickets/models/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/models/Message.js -------------------------------------------------------------------------------- /modules/tickets/models/Ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/models/Ticket.js -------------------------------------------------------------------------------- /modules/tickets/models/TicketV1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/models/TicketV1.js -------------------------------------------------------------------------------- /modules/tickets/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/tickets/module.json -------------------------------------------------------------------------------- /modules/twitch-notifications/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/twitch-notifications/configs/config.json -------------------------------------------------------------------------------- /modules/twitch-notifications/configs/streamers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/twitch-notifications/configs/streamers.json -------------------------------------------------------------------------------- /modules/twitch-notifications/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/twitch-notifications/events/botReady.js -------------------------------------------------------------------------------- /modules/twitch-notifications/models/Streamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/twitch-notifications/models/Streamer.js -------------------------------------------------------------------------------- /modules/twitch-notifications/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/twitch-notifications/module.json -------------------------------------------------------------------------------- /modules/uno/commands/uno.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/uno/commands/uno.js -------------------------------------------------------------------------------- /modules/uno/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/uno/module.json -------------------------------------------------------------------------------- /modules/welcomer/configs/channels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/configs/channels.json -------------------------------------------------------------------------------- /modules/welcomer/configs/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/configs/config.json -------------------------------------------------------------------------------- /modules/welcomer/configs/random-messages.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/configs/random-messages.json -------------------------------------------------------------------------------- /modules/welcomer/events/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/events/guildMemberAdd.js -------------------------------------------------------------------------------- /modules/welcomer/events/guildMemberRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/events/guildMemberRemove.js -------------------------------------------------------------------------------- /modules/welcomer/events/guildMemberUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/events/guildMemberUpdate.js -------------------------------------------------------------------------------- /modules/welcomer/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/events/interactionCreate.js -------------------------------------------------------------------------------- /modules/welcomer/models/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/models/User.js -------------------------------------------------------------------------------- /modules/welcomer/module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/modules/welcomer/module.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/package.json -------------------------------------------------------------------------------- /src/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/cli.js -------------------------------------------------------------------------------- /src/commands/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/commands/help.js -------------------------------------------------------------------------------- /src/commands/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/commands/reload.js -------------------------------------------------------------------------------- /src/events/botReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/events/botReady.js -------------------------------------------------------------------------------- /src/events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/events/interactionCreate.js -------------------------------------------------------------------------------- /src/functions/configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/functions/configuration.js -------------------------------------------------------------------------------- /src/functions/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/functions/helpers.js -------------------------------------------------------------------------------- /src/functions/localize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/functions/localize.js -------------------------------------------------------------------------------- /src/gen-doc/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/gen-doc/Client.js -------------------------------------------------------------------------------- /src/models/ChannelLock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/models/ChannelLock.js -------------------------------------------------------------------------------- /src/models/DatabaseSchemeVersion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ScootKit/CustomDCBot/HEAD/src/models/DatabaseSchemeVersion.js --------------------------------------------------------------------------------