├── .github ├── Contributing.md ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── SECURITY.md ├── dependabot.yml └── workflows │ ├── codeql-analysis.yml │ └── node.js.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dist ├── SlashUpdate.js ├── config.js ├── index.js ├── module │ ├── SlashUpdate.js │ ├── config.js │ └── src │ │ ├── BaseDiscordClient.js │ │ ├── abstract │ │ ├── BaseCommand.js │ │ ├── BaseEvent.js │ │ ├── BaseListener.js │ │ └── QuickCommand.js │ │ ├── cluster.js │ │ ├── commands │ │ ├── Filters │ │ │ ├── 8d.js │ │ │ ├── bassboost.js │ │ │ ├── distorsion.js │ │ │ ├── filters.js │ │ │ ├── karaoke.js │ │ │ ├── lowPass.js │ │ │ ├── nightcore.js │ │ │ ├── pitch.js │ │ │ ├── reset.js │ │ │ ├── rotation.js │ │ │ ├── speed.js │ │ │ ├── tremolo.js │ │ │ └── vibrato.js │ │ ├── config │ │ │ ├── 247.js │ │ │ ├── announcesongs.js │ │ │ ├── autoautoplay.js │ │ │ ├── autoshuffle.js │ │ │ ├── buttons.js │ │ │ ├── clean.js │ │ │ ├── defaultVolume.js │ │ │ ├── djcommands.js │ │ │ ├── fix.js │ │ │ ├── forcejoin.js │ │ │ ├── setdj.js │ │ │ ├── setprefix.js │ │ │ ├── settings.js │ │ │ ├── setvc.js │ │ │ ├── textchannel.js │ │ │ ├── textchannels.js │ │ │ └── voteskip.js │ │ ├── dj │ │ │ ├── ClearQueue.js │ │ │ ├── Pause.js │ │ │ ├── Resume.js │ │ │ ├── Shuffle.js │ │ │ ├── Stop.js │ │ │ ├── Volume.js │ │ │ ├── autoplay.js │ │ │ ├── back.js │ │ │ ├── forceskip.js │ │ │ ├── forward.js │ │ │ ├── givedj.js │ │ │ ├── jump.js │ │ │ ├── leave.js │ │ │ ├── leavecleanup.js │ │ │ ├── loop.js │ │ │ ├── move.js │ │ │ ├── remove.js │ │ │ ├── removedupes.js │ │ │ ├── replay.js │ │ │ ├── rewind.js │ │ │ └── seek.js │ │ └── everyone │ │ │ ├── Code.js │ │ │ ├── Help.js │ │ │ ├── Ping.js │ │ │ ├── Play.js │ │ │ ├── Premium.js │ │ │ ├── Queue.js │ │ │ ├── Skip.js │ │ │ ├── Stats.js │ │ │ ├── dashboard.js │ │ │ ├── eval.js │ │ │ ├── grab.js │ │ │ ├── join.js │ │ │ ├── links.js │ │ │ ├── lyrics.js │ │ │ ├── np.js │ │ │ ├── pl-add.js │ │ │ ├── pl-create.js │ │ │ ├── pl-delete.js │ │ │ ├── pl-list.js │ │ │ ├── pl-play.js │ │ │ ├── pl-remove.js │ │ │ ├── pl-view.js │ │ │ ├── playskip.js │ │ │ ├── playtop.js │ │ │ ├── restart.js │ │ │ ├── search.js │ │ │ └── vote.js │ │ ├── events │ │ ├── Ready.js │ │ ├── channelDelete.js │ │ └── guildCreate.js │ │ ├── interactions │ │ ├── Filters │ │ │ ├── 8d.js │ │ │ ├── bassboost.js │ │ │ ├── distorsion.js │ │ │ ├── filters.js │ │ │ ├── karaoke.js │ │ │ ├── lowPass.js │ │ │ ├── nightcore.js │ │ │ ├── pitch.js │ │ │ ├── reset.js │ │ │ ├── rotation.js │ │ │ ├── speed.js │ │ │ ├── tremolo.js │ │ │ └── vibrato.js │ │ ├── config │ │ │ ├── 247.js │ │ │ ├── announcesongs.js │ │ │ ├── autoautoplay.js │ │ │ ├── autoshuffle.js │ │ │ ├── buttons.js │ │ │ ├── clean.js │ │ │ ├── defaultVolume.js │ │ │ ├── djcommands.js │ │ │ ├── fix.js │ │ │ ├── setdj.js │ │ │ ├── setprefix.js │ │ │ ├── settings.js │ │ │ ├── setvc.js │ │ │ ├── textchannel.js │ │ │ ├── textchannels.js │ │ │ └── voteskip.js │ │ ├── dj │ │ │ ├── ClearQueue.js │ │ │ ├── Pause.js │ │ │ ├── Resume.js │ │ │ ├── Shuffle.js │ │ │ ├── Stop.js │ │ │ ├── Volume.js │ │ │ ├── autoplay.js │ │ │ ├── back.js │ │ │ ├── forceskip.js │ │ │ ├── forward.js │ │ │ ├── givedj.js │ │ │ ├── jump.js │ │ │ ├── leave.js │ │ │ ├── leavecleanup.js │ │ │ ├── loop.js │ │ │ ├── move.js │ │ │ ├── remove.js │ │ │ ├── removedupes.js │ │ │ ├── replay.js │ │ │ ├── rewind.js │ │ │ └── seek.js │ │ └── everyone │ │ │ ├── Code.js │ │ │ ├── Help.js │ │ │ ├── Play.js │ │ │ ├── Premium.js │ │ │ ├── Queue.js │ │ │ ├── Skip.js │ │ │ ├── Stats.js │ │ │ ├── dashboard.js │ │ │ ├── grab.js │ │ │ ├── join.js │ │ │ ├── links.js │ │ │ ├── lyrics.js │ │ │ ├── np.js │ │ │ ├── pl-add.js │ │ │ ├── pl-create.js │ │ │ ├── pl-delete.js │ │ │ ├── pl-list.js │ │ │ ├── pl-play.js │ │ │ ├── pl-remove.js │ │ │ ├── pl-view.js │ │ │ ├── playskip.js │ │ │ ├── playtop.js │ │ │ ├── search.js │ │ │ └── vote.js │ │ ├── models │ │ ├── guildData.js │ │ └── user.js │ │ └── modules │ │ ├── Collector.js │ │ ├── CommandHandler.js │ │ ├── CommandService.js │ │ ├── Context.js │ │ ├── DatabaseManager.js │ │ ├── EventHandler.js │ │ ├── ExtendedDispatcher.js │ │ ├── Queue.js │ │ ├── ShoukakuHandler.js │ │ ├── SlashContext.js │ │ ├── buttonHandler.js │ │ ├── server.js │ │ ├── sweeperManager.js │ │ └── voiceService.js └── src │ ├── BaseDiscordClient.js │ ├── abstract │ ├── BaseCommand.js │ ├── BaseEvent.js │ ├── BaseListener.js │ └── QuickCommand.js │ ├── cluster.js │ ├── commands │ ├── Filters │ │ ├── 8d.js │ │ ├── bassboost.js │ │ ├── distorsion.js │ │ ├── filters.js │ │ ├── karaoke.js │ │ ├── lowPass.js │ │ ├── nightcore.js │ │ ├── pitch.js │ │ ├── reset.js │ │ ├── rotation.js │ │ ├── speed.js │ │ ├── tremolo.js │ │ └── vibrato.js │ ├── config │ │ ├── 247.js │ │ ├── announcesongs.js │ │ ├── autoautoplay.js │ │ ├── autoshuffle.js │ │ ├── buttons.js │ │ ├── clean.js │ │ ├── defaultVolume.js │ │ ├── djcommands.js │ │ ├── fix.js │ │ ├── forcejoin.js │ │ ├── setdj.js │ │ ├── setprefix.js │ │ ├── settings.js │ │ ├── setvc.js │ │ ├── textchannel.js │ │ ├── textchannels.js │ │ └── voteskip.js │ ├── dj │ │ ├── ClearQueue.js │ │ ├── Pause.js │ │ ├── Resume.js │ │ ├── Shuffle.js │ │ ├── Stop.js │ │ ├── Volume.js │ │ ├── autoplay.js │ │ ├── back.js │ │ ├── forceskip.js │ │ ├── forward.js │ │ ├── givedj.js │ │ ├── jump.js │ │ ├── leave.js │ │ ├── leavecleanup.js │ │ ├── loop.js │ │ ├── move.js │ │ ├── remove.js │ │ ├── removedupes.js │ │ ├── replay.js │ │ ├── rewind.js │ │ └── seek.js │ └── everyone │ │ ├── Code.js │ │ ├── Help.js │ │ ├── Ping.js │ │ ├── Play.js │ │ ├── Premium.js │ │ ├── Queue.js │ │ ├── Skip.js │ │ ├── Stats.js │ │ ├── dashboard.js │ │ ├── eval.js │ │ ├── grab.js │ │ ├── join.js │ │ ├── links.js │ │ ├── lyrics.js │ │ ├── np.js │ │ ├── pl-add.js │ │ ├── pl-create.js │ │ ├── pl-delete.js │ │ ├── pl-list.js │ │ ├── pl-play.js │ │ ├── pl-remove.js │ │ ├── pl-view.js │ │ ├── playskip.js │ │ ├── playtop.js │ │ ├── restart.js │ │ ├── search.js │ │ └── vote.js │ ├── events │ ├── Ready.js │ ├── channelDelete.js │ └── guildCreate.js │ ├── interactions │ ├── Filters │ │ ├── 8d.js │ │ ├── bassboost.js │ │ ├── distorsion.js │ │ ├── filters.js │ │ ├── karaoke.js │ │ ├── lowPass.js │ │ ├── nightcore.js │ │ ├── pitch.js │ │ ├── reset.js │ │ ├── rotation.js │ │ ├── speed.js │ │ ├── tremolo.js │ │ └── vibrato.js │ ├── config │ │ ├── 247.js │ │ ├── announcesongs.js │ │ ├── autoautoplay.js │ │ ├── autoshuffle.js │ │ ├── buttons.js │ │ ├── clean.js │ │ ├── defaultVolume.js │ │ ├── djcommands.js │ │ ├── fix.js │ │ ├── setdj.js │ │ ├── setprefix.js │ │ ├── settings.js │ │ ├── setvc.js │ │ ├── textchannel.js │ │ ├── textchannels.js │ │ └── voteskip.js │ ├── dj │ │ ├── ClearQueue.js │ │ ├── Pause.js │ │ ├── Resume.js │ │ ├── Shuffle.js │ │ ├── Stop.js │ │ ├── Volume.js │ │ ├── autoplay.js │ │ ├── back.js │ │ ├── forceskip.js │ │ ├── forward.js │ │ ├── givedj.js │ │ ├── jump.js │ │ ├── leave.js │ │ ├── leavecleanup.js │ │ ├── loop.js │ │ ├── move.js │ │ ├── remove.js │ │ ├── removedupes.js │ │ ├── replay.js │ │ ├── rewind.js │ │ └── seek.js │ └── everyone │ │ ├── Code.js │ │ ├── Help.js │ │ ├── Play.js │ │ ├── Premium.js │ │ ├── Queue.js │ │ ├── Skip.js │ │ ├── Stats.js │ │ ├── dashboard.js │ │ ├── grab.js │ │ ├── join.js │ │ ├── links.js │ │ ├── lyrics.js │ │ ├── np.js │ │ ├── pl-add.js │ │ ├── pl-create.js │ │ ├── pl-delete.js │ │ ├── pl-list.js │ │ ├── pl-play.js │ │ ├── pl-remove.js │ │ ├── pl-view.js │ │ ├── playskip.js │ │ ├── playtop.js │ │ ├── search.js │ │ └── vote.js │ ├── models │ ├── guildData.js │ └── user.js │ └── modules │ ├── Collector.js │ ├── CommandHandler.js │ ├── CommandService.js │ ├── Context.js │ ├── DatabaseManager.js │ ├── EventHandler.js │ ├── ExtendedDispatcher.js │ ├── Queue.js │ ├── ShoukakuHandler.js │ ├── SlashContext.js │ ├── buttonHandler.js │ ├── server.js │ ├── sweeperManager.js │ └── voiceService.js ├── module ├── SlashUpdate.ts ├── config.ts └── src │ ├── BaseDiscordClient.ts │ ├── abstract │ ├── BaseCommand.ts │ ├── BaseEvent.ts │ ├── BaseListener.ts │ └── QuickCommand.ts │ ├── cluster.ts │ ├── commands │ ├── Filters │ │ ├── 8d.ts │ │ ├── bassboost.ts │ │ ├── distorsion.ts │ │ ├── filters.ts │ │ ├── karaoke.ts │ │ ├── lowPass.ts │ │ ├── nightcore.ts │ │ ├── pitch.ts │ │ ├── reset.ts │ │ ├── rotation.ts │ │ ├── speed.ts │ │ ├── tremolo.ts │ │ └── vibrato.ts │ ├── config │ │ ├── 247.ts │ │ ├── announcesongs.ts │ │ ├── autoautoplay.ts │ │ ├── autoshuffle.ts │ │ ├── buttons.ts │ │ ├── clean.ts │ │ ├── defaultVolume.ts │ │ ├── djcommands.ts │ │ ├── djmode.ts │ │ ├── fix.ts │ │ ├── forcejoin.ts │ │ ├── leavevc.ts │ │ ├── setdj.ts │ │ ├── settings.ts │ │ ├── setvc.ts │ │ ├── textchannel.ts │ │ ├── textchannels.ts │ │ └── voteskip.ts │ ├── dj │ │ ├── ClearQueue.ts │ │ ├── Pause.ts │ │ ├── Resume.ts │ │ ├── Shuffle.ts │ │ ├── Stop.ts │ │ ├── Volume.ts │ │ ├── autoplay.ts │ │ ├── back.ts │ │ ├── forceskip.ts │ │ ├── forward.ts │ │ ├── givedj.ts │ │ ├── jump.ts │ │ ├── leave.ts │ │ ├── leavecleanup.ts │ │ ├── loop.ts │ │ ├── move.ts │ │ ├── remove.ts │ │ ├── removedupes.ts │ │ ├── replay.ts │ │ ├── rewind.ts │ │ └── seek.ts │ └── everyone │ │ ├── Code.ts │ │ ├── Help.ts │ │ ├── Ping.ts │ │ ├── Play.ts │ │ ├── Premium.ts │ │ ├── Queue.ts │ │ ├── Skip.ts │ │ ├── Stats.ts │ │ ├── dashboard.ts │ │ ├── eval.ts │ │ ├── grab.ts │ │ ├── join.ts │ │ ├── links.ts │ │ ├── lyrics.ts │ │ ├── np.ts │ │ ├── pl-add.ts │ │ ├── pl-create.ts │ │ ├── pl-delete.ts │ │ ├── pl-list.ts │ │ ├── pl-play.ts │ │ ├── pl-remove.ts │ │ ├── pl-view.ts │ │ ├── playskip.ts │ │ ├── playtop.ts │ │ ├── search.ts │ │ ├── top-songs.ts │ │ └── vote.ts │ ├── events │ ├── Ready.ts │ ├── channelDelete.ts │ ├── guildCreate.ts │ └── guildMemberAdd.ts │ ├── interactions │ ├── Filters │ │ ├── 8d.ts │ │ ├── bassboost.ts │ │ ├── distorsion.ts │ │ ├── filters.ts │ │ ├── karaoke.ts │ │ ├── lowPass.ts │ │ ├── nightcore.ts │ │ ├── pitch.ts │ │ ├── reset.ts │ │ ├── rotation.ts │ │ ├── speed.ts │ │ ├── tremolo.ts │ │ └── vibrato.ts │ ├── config │ │ ├── 247.ts │ │ ├── announcesongs.ts │ │ ├── autoautoplay.ts │ │ ├── autoshuffle.ts │ │ ├── buttons.ts │ │ ├── clean.ts │ │ ├── defaultVolume.ts │ │ ├── djcommands.ts │ │ ├── djmode.ts │ │ ├── fix.ts │ │ ├── forcejoin.ts │ │ ├── leavevc.ts │ │ ├── maxsongs.ts │ │ ├── setdj.ts │ │ ├── setprefix.ts │ │ ├── settings.ts │ │ ├── setvc.ts │ │ ├── textchannel.ts │ │ ├── textchannels.ts │ │ └── voteskip.ts │ ├── dj │ │ ├── ClearQueue.ts │ │ ├── Pause.ts │ │ ├── Resume.ts │ │ ├── Shuffle.ts │ │ ├── Stop.ts │ │ ├── Volume.ts │ │ ├── autoplay.ts │ │ ├── back.ts │ │ ├── forceskip.ts │ │ ├── forward.ts │ │ ├── givedj.ts │ │ ├── jump.ts │ │ ├── leave.ts │ │ ├── leavecleanup.ts │ │ ├── loop.ts │ │ ├── move.ts │ │ ├── remove.ts │ │ ├── removedupes.ts │ │ ├── replay.ts │ │ ├── rewind.ts │ │ └── seek.ts │ └── everyone │ │ ├── Code.ts │ │ ├── Help.ts │ │ ├── Play.ts │ │ ├── Premium.ts │ │ ├── Queue.ts │ │ ├── Skip.ts │ │ ├── Stats.ts │ │ ├── avatar.ts │ │ ├── dashboard.ts │ │ ├── grab.ts │ │ ├── join.ts │ │ ├── links.ts │ │ ├── lyrics.ts │ │ ├── np.ts │ │ ├── pl-add.ts │ │ ├── pl-create.ts │ │ ├── pl-delete.ts │ │ ├── pl-list.ts │ │ ├── pl-play.ts │ │ ├── pl-remove.ts │ │ ├── pl-view.ts │ │ ├── playskip.ts │ │ ├── playtop.ts │ │ ├── search.ts │ │ ├── top-songs.ts │ │ ├── userinfo.ts │ │ └── vote.ts │ ├── models │ ├── guildData.ts │ └── user.ts │ └── modules │ ├── Collector.ts │ ├── CommandHandler.ts │ ├── CommandService.ts │ ├── Context.ts │ ├── DatabaseManager.ts │ ├── EventHandler.ts │ ├── ExtendedDispatcher.ts │ ├── Queue.ts │ ├── ShoukakuHandler.ts │ ├── SlashContext.ts │ ├── buttonHandler.ts │ ├── server.ts │ ├── sweeperManager.ts │ └── voiceService.ts ├── package.json └── tsconfig.json /.github/Contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/Contributing.md -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/.github/workflows/node.js.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/README.md -------------------------------------------------------------------------------- /dist/SlashUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/SlashUpdate.js -------------------------------------------------------------------------------- /dist/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/config.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/index.js -------------------------------------------------------------------------------- /dist/module/SlashUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/SlashUpdate.js -------------------------------------------------------------------------------- /dist/module/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/config.js -------------------------------------------------------------------------------- /dist/module/src/BaseDiscordClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/BaseDiscordClient.js -------------------------------------------------------------------------------- /dist/module/src/abstract/BaseCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/abstract/BaseCommand.js -------------------------------------------------------------------------------- /dist/module/src/abstract/BaseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/abstract/BaseEvent.js -------------------------------------------------------------------------------- /dist/module/src/abstract/BaseListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/abstract/BaseListener.js -------------------------------------------------------------------------------- /dist/module/src/abstract/QuickCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/abstract/QuickCommand.js -------------------------------------------------------------------------------- /dist/module/src/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/cluster.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/8d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/8d.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/bassboost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/bassboost.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/distorsion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/distorsion.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/filters.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/karaoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/karaoke.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/lowPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/lowPass.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/nightcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/nightcore.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/pitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/pitch.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/reset.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/rotation.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/speed.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/tremolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/tremolo.js -------------------------------------------------------------------------------- /dist/module/src/commands/Filters/vibrato.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/Filters/vibrato.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/247.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/247.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/announcesongs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/announcesongs.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/autoautoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/autoautoplay.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/autoshuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/autoshuffle.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/buttons.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/clean.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/defaultVolume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/defaultVolume.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/djcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/djcommands.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/fix.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/forcejoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/forcejoin.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/setdj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/setdj.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/setprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/setprefix.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/settings.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/setvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/setvc.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/textchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/textchannel.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/textchannels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/textchannels.js -------------------------------------------------------------------------------- /dist/module/src/commands/config/voteskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/config/voteskip.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/ClearQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/ClearQueue.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/Pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/Pause.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/Resume.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/Shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/Shuffle.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/Stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/Stop.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/Volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/Volume.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/autoplay.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/back.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/forceskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/forceskip.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/forward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/forward.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/givedj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/givedj.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/jump.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/leave.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/leavecleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/leavecleanup.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/loop.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/move.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/remove.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/removedupes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/removedupes.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/replay.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/rewind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/rewind.js -------------------------------------------------------------------------------- /dist/module/src/commands/dj/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/dj/seek.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Code.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Help.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Ping.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Play.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Premium.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Queue.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Skip.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/Stats.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/dashboard.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/eval.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/grab.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/join.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/links.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/lyrics.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/np.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-add.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-create.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-delete.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-list.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-play.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-remove.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/pl-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/pl-view.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/playskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/playskip.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/playtop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/playtop.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/restart.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/search.js -------------------------------------------------------------------------------- /dist/module/src/commands/everyone/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/commands/everyone/vote.js -------------------------------------------------------------------------------- /dist/module/src/events/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/events/Ready.js -------------------------------------------------------------------------------- /dist/module/src/events/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/events/channelDelete.js -------------------------------------------------------------------------------- /dist/module/src/events/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/events/guildCreate.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/8d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/8d.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/bassboost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/bassboost.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/distorsion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/distorsion.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/filters.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/karaoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/karaoke.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/lowPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/lowPass.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/nightcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/nightcore.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/pitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/pitch.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/reset.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/rotation.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/speed.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/tremolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/tremolo.js -------------------------------------------------------------------------------- /dist/module/src/interactions/Filters/vibrato.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/Filters/vibrato.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/247.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/247.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/announcesongs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/announcesongs.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/autoautoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/autoautoplay.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/autoshuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/autoshuffle.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/buttons.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/clean.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/defaultVolume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/defaultVolume.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/djcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/djcommands.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/fix.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/setdj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/setdj.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/setprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/setprefix.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/settings.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/setvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/setvc.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/textchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/textchannel.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/textchannels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/textchannels.js -------------------------------------------------------------------------------- /dist/module/src/interactions/config/voteskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/config/voteskip.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/ClearQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/ClearQueue.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/Pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/Pause.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/Resume.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/Shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/Shuffle.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/Stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/Stop.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/Volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/Volume.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/autoplay.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/back.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/forceskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/forceskip.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/forward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/forward.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/givedj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/givedj.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/jump.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/leave.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/leavecleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/leavecleanup.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/loop.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/move.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/remove.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/removedupes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/removedupes.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/replay.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/rewind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/rewind.js -------------------------------------------------------------------------------- /dist/module/src/interactions/dj/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/dj/seek.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Code.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Help.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Play.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Premium.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Queue.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Skip.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/Stats.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/dashboard.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/grab.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/join.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/links.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/lyrics.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/np.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-add.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-create.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-delete.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-list.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-play.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-remove.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/pl-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/pl-view.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/playskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/playskip.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/playtop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/playtop.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/search.js -------------------------------------------------------------------------------- /dist/module/src/interactions/everyone/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/interactions/everyone/vote.js -------------------------------------------------------------------------------- /dist/module/src/models/guildData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/models/guildData.js -------------------------------------------------------------------------------- /dist/module/src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/models/user.js -------------------------------------------------------------------------------- /dist/module/src/modules/Collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/Collector.js -------------------------------------------------------------------------------- /dist/module/src/modules/CommandHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/CommandHandler.js -------------------------------------------------------------------------------- /dist/module/src/modules/CommandService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/CommandService.js -------------------------------------------------------------------------------- /dist/module/src/modules/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/Context.js -------------------------------------------------------------------------------- /dist/module/src/modules/DatabaseManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/DatabaseManager.js -------------------------------------------------------------------------------- /dist/module/src/modules/EventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/EventHandler.js -------------------------------------------------------------------------------- /dist/module/src/modules/ExtendedDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/ExtendedDispatcher.js -------------------------------------------------------------------------------- /dist/module/src/modules/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/Queue.js -------------------------------------------------------------------------------- /dist/module/src/modules/ShoukakuHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/ShoukakuHandler.js -------------------------------------------------------------------------------- /dist/module/src/modules/SlashContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/SlashContext.js -------------------------------------------------------------------------------- /dist/module/src/modules/buttonHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/buttonHandler.js -------------------------------------------------------------------------------- /dist/module/src/modules/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/server.js -------------------------------------------------------------------------------- /dist/module/src/modules/sweeperManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/sweeperManager.js -------------------------------------------------------------------------------- /dist/module/src/modules/voiceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/module/src/modules/voiceService.js -------------------------------------------------------------------------------- /dist/src/BaseDiscordClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/BaseDiscordClient.js -------------------------------------------------------------------------------- /dist/src/abstract/BaseCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/abstract/BaseCommand.js -------------------------------------------------------------------------------- /dist/src/abstract/BaseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/abstract/BaseEvent.js -------------------------------------------------------------------------------- /dist/src/abstract/BaseListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/abstract/BaseListener.js -------------------------------------------------------------------------------- /dist/src/abstract/QuickCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/abstract/QuickCommand.js -------------------------------------------------------------------------------- /dist/src/cluster.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/cluster.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/8d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/8d.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/bassboost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/bassboost.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/distorsion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/distorsion.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/filters.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/karaoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/karaoke.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/lowPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/lowPass.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/nightcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/nightcore.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/pitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/pitch.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/reset.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/rotation.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/speed.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/tremolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/tremolo.js -------------------------------------------------------------------------------- /dist/src/commands/Filters/vibrato.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/Filters/vibrato.js -------------------------------------------------------------------------------- /dist/src/commands/config/247.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/247.js -------------------------------------------------------------------------------- /dist/src/commands/config/announcesongs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/announcesongs.js -------------------------------------------------------------------------------- /dist/src/commands/config/autoautoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/autoautoplay.js -------------------------------------------------------------------------------- /dist/src/commands/config/autoshuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/autoshuffle.js -------------------------------------------------------------------------------- /dist/src/commands/config/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/buttons.js -------------------------------------------------------------------------------- /dist/src/commands/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/clean.js -------------------------------------------------------------------------------- /dist/src/commands/config/defaultVolume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/defaultVolume.js -------------------------------------------------------------------------------- /dist/src/commands/config/djcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/djcommands.js -------------------------------------------------------------------------------- /dist/src/commands/config/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/fix.js -------------------------------------------------------------------------------- /dist/src/commands/config/forcejoin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/forcejoin.js -------------------------------------------------------------------------------- /dist/src/commands/config/setdj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/setdj.js -------------------------------------------------------------------------------- /dist/src/commands/config/setprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/setprefix.js -------------------------------------------------------------------------------- /dist/src/commands/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/settings.js -------------------------------------------------------------------------------- /dist/src/commands/config/setvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/setvc.js -------------------------------------------------------------------------------- /dist/src/commands/config/textchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/textchannel.js -------------------------------------------------------------------------------- /dist/src/commands/config/textchannels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/textchannels.js -------------------------------------------------------------------------------- /dist/src/commands/config/voteskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/config/voteskip.js -------------------------------------------------------------------------------- /dist/src/commands/dj/ClearQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/ClearQueue.js -------------------------------------------------------------------------------- /dist/src/commands/dj/Pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/Pause.js -------------------------------------------------------------------------------- /dist/src/commands/dj/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/Resume.js -------------------------------------------------------------------------------- /dist/src/commands/dj/Shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/Shuffle.js -------------------------------------------------------------------------------- /dist/src/commands/dj/Stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/Stop.js -------------------------------------------------------------------------------- /dist/src/commands/dj/Volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/Volume.js -------------------------------------------------------------------------------- /dist/src/commands/dj/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/autoplay.js -------------------------------------------------------------------------------- /dist/src/commands/dj/back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/back.js -------------------------------------------------------------------------------- /dist/src/commands/dj/forceskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/forceskip.js -------------------------------------------------------------------------------- /dist/src/commands/dj/forward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/forward.js -------------------------------------------------------------------------------- /dist/src/commands/dj/givedj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/givedj.js -------------------------------------------------------------------------------- /dist/src/commands/dj/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/jump.js -------------------------------------------------------------------------------- /dist/src/commands/dj/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/leave.js -------------------------------------------------------------------------------- /dist/src/commands/dj/leavecleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/leavecleanup.js -------------------------------------------------------------------------------- /dist/src/commands/dj/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/loop.js -------------------------------------------------------------------------------- /dist/src/commands/dj/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/move.js -------------------------------------------------------------------------------- /dist/src/commands/dj/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/remove.js -------------------------------------------------------------------------------- /dist/src/commands/dj/removedupes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/removedupes.js -------------------------------------------------------------------------------- /dist/src/commands/dj/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/replay.js -------------------------------------------------------------------------------- /dist/src/commands/dj/rewind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/rewind.js -------------------------------------------------------------------------------- /dist/src/commands/dj/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/dj/seek.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Code.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Help.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Ping.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Play.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Premium.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Queue.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Skip.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/Stats.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/dashboard.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/eval.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/grab.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/join.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/links.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/lyrics.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/np.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-add.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-create.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-delete.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-list.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-play.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-remove.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/pl-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/pl-view.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/playskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/playskip.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/playtop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/playtop.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/restart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/restart.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/search.js -------------------------------------------------------------------------------- /dist/src/commands/everyone/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/commands/everyone/vote.js -------------------------------------------------------------------------------- /dist/src/events/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/events/Ready.js -------------------------------------------------------------------------------- /dist/src/events/channelDelete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/events/channelDelete.js -------------------------------------------------------------------------------- /dist/src/events/guildCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/events/guildCreate.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/8d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/8d.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/bassboost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/bassboost.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/distorsion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/distorsion.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/filters.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/karaoke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/karaoke.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/lowPass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/lowPass.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/nightcore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/nightcore.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/pitch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/pitch.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/reset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/reset.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/rotation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/rotation.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/speed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/speed.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/tremolo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/tremolo.js -------------------------------------------------------------------------------- /dist/src/interactions/Filters/vibrato.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/Filters/vibrato.js -------------------------------------------------------------------------------- /dist/src/interactions/config/247.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/247.js -------------------------------------------------------------------------------- /dist/src/interactions/config/announcesongs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/announcesongs.js -------------------------------------------------------------------------------- /dist/src/interactions/config/autoautoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/autoautoplay.js -------------------------------------------------------------------------------- /dist/src/interactions/config/autoshuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/autoshuffle.js -------------------------------------------------------------------------------- /dist/src/interactions/config/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/buttons.js -------------------------------------------------------------------------------- /dist/src/interactions/config/clean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/clean.js -------------------------------------------------------------------------------- /dist/src/interactions/config/defaultVolume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/defaultVolume.js -------------------------------------------------------------------------------- /dist/src/interactions/config/djcommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/djcommands.js -------------------------------------------------------------------------------- /dist/src/interactions/config/fix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/fix.js -------------------------------------------------------------------------------- /dist/src/interactions/config/setdj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/setdj.js -------------------------------------------------------------------------------- /dist/src/interactions/config/setprefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/setprefix.js -------------------------------------------------------------------------------- /dist/src/interactions/config/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/settings.js -------------------------------------------------------------------------------- /dist/src/interactions/config/setvc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/setvc.js -------------------------------------------------------------------------------- /dist/src/interactions/config/textchannel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/textchannel.js -------------------------------------------------------------------------------- /dist/src/interactions/config/textchannels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/textchannels.js -------------------------------------------------------------------------------- /dist/src/interactions/config/voteskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/config/voteskip.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/ClearQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/ClearQueue.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/Pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/Pause.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/Resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/Resume.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/Shuffle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/Shuffle.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/Stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/Stop.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/Volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/Volume.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/autoplay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/autoplay.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/back.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/back.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/forceskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/forceskip.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/forward.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/forward.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/givedj.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/givedj.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/jump.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/leave.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/leavecleanup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/leavecleanup.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/loop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/loop.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/move.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/move.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/remove.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/removedupes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/removedupes.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/replay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/replay.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/rewind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/rewind.js -------------------------------------------------------------------------------- /dist/src/interactions/dj/seek.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/dj/seek.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Code.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Code.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Help.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Play.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Premium.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Queue.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Skip.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/Stats.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/dashboard.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/grab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/grab.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/join.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/join.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/links.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/lyrics.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/np.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/np.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-add.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-create.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-delete.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-list.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-play.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-remove.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/pl-view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/pl-view.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/playskip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/playskip.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/playtop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/playtop.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/search.js -------------------------------------------------------------------------------- /dist/src/interactions/everyone/vote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/interactions/everyone/vote.js -------------------------------------------------------------------------------- /dist/src/models/guildData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/models/guildData.js -------------------------------------------------------------------------------- /dist/src/models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/models/user.js -------------------------------------------------------------------------------- /dist/src/modules/Collector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/Collector.js -------------------------------------------------------------------------------- /dist/src/modules/CommandHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/CommandHandler.js -------------------------------------------------------------------------------- /dist/src/modules/CommandService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/CommandService.js -------------------------------------------------------------------------------- /dist/src/modules/Context.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/Context.js -------------------------------------------------------------------------------- /dist/src/modules/DatabaseManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/DatabaseManager.js -------------------------------------------------------------------------------- /dist/src/modules/EventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/EventHandler.js -------------------------------------------------------------------------------- /dist/src/modules/ExtendedDispatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/ExtendedDispatcher.js -------------------------------------------------------------------------------- /dist/src/modules/Queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/Queue.js -------------------------------------------------------------------------------- /dist/src/modules/ShoukakuHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/ShoukakuHandler.js -------------------------------------------------------------------------------- /dist/src/modules/SlashContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/SlashContext.js -------------------------------------------------------------------------------- /dist/src/modules/buttonHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/buttonHandler.js -------------------------------------------------------------------------------- /dist/src/modules/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/server.js -------------------------------------------------------------------------------- /dist/src/modules/sweeperManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/sweeperManager.js -------------------------------------------------------------------------------- /dist/src/modules/voiceService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/dist/src/modules/voiceService.js -------------------------------------------------------------------------------- /module/SlashUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/SlashUpdate.ts -------------------------------------------------------------------------------- /module/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/config.ts -------------------------------------------------------------------------------- /module/src/BaseDiscordClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/BaseDiscordClient.ts -------------------------------------------------------------------------------- /module/src/abstract/BaseCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/abstract/BaseCommand.ts -------------------------------------------------------------------------------- /module/src/abstract/BaseEvent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/abstract/BaseEvent.ts -------------------------------------------------------------------------------- /module/src/abstract/BaseListener.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/abstract/BaseListener.ts -------------------------------------------------------------------------------- /module/src/abstract/QuickCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/abstract/QuickCommand.ts -------------------------------------------------------------------------------- /module/src/cluster.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/cluster.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/8d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/8d.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/bassboost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/bassboost.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/distorsion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/distorsion.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/filters.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/karaoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/karaoke.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/lowPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/lowPass.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/nightcore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/nightcore.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/pitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/pitch.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/reset.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/rotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/rotation.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/speed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/speed.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/tremolo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/tremolo.ts -------------------------------------------------------------------------------- /module/src/commands/Filters/vibrato.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/Filters/vibrato.ts -------------------------------------------------------------------------------- /module/src/commands/config/247.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/247.ts -------------------------------------------------------------------------------- /module/src/commands/config/announcesongs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/announcesongs.ts -------------------------------------------------------------------------------- /module/src/commands/config/autoautoplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/autoautoplay.ts -------------------------------------------------------------------------------- /module/src/commands/config/autoshuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/autoshuffle.ts -------------------------------------------------------------------------------- /module/src/commands/config/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/buttons.ts -------------------------------------------------------------------------------- /module/src/commands/config/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/clean.ts -------------------------------------------------------------------------------- /module/src/commands/config/defaultVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/defaultVolume.ts -------------------------------------------------------------------------------- /module/src/commands/config/djcommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/djcommands.ts -------------------------------------------------------------------------------- /module/src/commands/config/djmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/djmode.ts -------------------------------------------------------------------------------- /module/src/commands/config/fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/fix.ts -------------------------------------------------------------------------------- /module/src/commands/config/forcejoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/forcejoin.ts -------------------------------------------------------------------------------- /module/src/commands/config/leavevc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/leavevc.ts -------------------------------------------------------------------------------- /module/src/commands/config/setdj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/setdj.ts -------------------------------------------------------------------------------- /module/src/commands/config/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/settings.ts -------------------------------------------------------------------------------- /module/src/commands/config/setvc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/setvc.ts -------------------------------------------------------------------------------- /module/src/commands/config/textchannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/textchannel.ts -------------------------------------------------------------------------------- /module/src/commands/config/textchannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/textchannels.ts -------------------------------------------------------------------------------- /module/src/commands/config/voteskip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/config/voteskip.ts -------------------------------------------------------------------------------- /module/src/commands/dj/ClearQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/ClearQueue.ts -------------------------------------------------------------------------------- /module/src/commands/dj/Pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/Pause.ts -------------------------------------------------------------------------------- /module/src/commands/dj/Resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/Resume.ts -------------------------------------------------------------------------------- /module/src/commands/dj/Shuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/Shuffle.ts -------------------------------------------------------------------------------- /module/src/commands/dj/Stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/Stop.ts -------------------------------------------------------------------------------- /module/src/commands/dj/Volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/Volume.ts -------------------------------------------------------------------------------- /module/src/commands/dj/autoplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/autoplay.ts -------------------------------------------------------------------------------- /module/src/commands/dj/back.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/back.ts -------------------------------------------------------------------------------- /module/src/commands/dj/forceskip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/forceskip.ts -------------------------------------------------------------------------------- /module/src/commands/dj/forward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/forward.ts -------------------------------------------------------------------------------- /module/src/commands/dj/givedj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/givedj.ts -------------------------------------------------------------------------------- /module/src/commands/dj/jump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/jump.ts -------------------------------------------------------------------------------- /module/src/commands/dj/leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/leave.ts -------------------------------------------------------------------------------- /module/src/commands/dj/leavecleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/leavecleanup.ts -------------------------------------------------------------------------------- /module/src/commands/dj/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/loop.ts -------------------------------------------------------------------------------- /module/src/commands/dj/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/move.ts -------------------------------------------------------------------------------- /module/src/commands/dj/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/remove.ts -------------------------------------------------------------------------------- /module/src/commands/dj/removedupes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/removedupes.ts -------------------------------------------------------------------------------- /module/src/commands/dj/replay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/replay.ts -------------------------------------------------------------------------------- /module/src/commands/dj/rewind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/rewind.ts -------------------------------------------------------------------------------- /module/src/commands/dj/seek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/dj/seek.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Code.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Help.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Ping.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Play.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Premium.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Queue.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Skip.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/Stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/Stats.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/dashboard.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/eval.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/grab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/grab.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/join.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/links.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/lyrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/lyrics.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/np.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/np.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-add.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-create.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-delete.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-list.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-play.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-remove.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/pl-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/pl-view.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/playskip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/playskip.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/playtop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/playtop.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/search.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/top-songs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/top-songs.ts -------------------------------------------------------------------------------- /module/src/commands/everyone/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/commands/everyone/vote.ts -------------------------------------------------------------------------------- /module/src/events/Ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/events/Ready.ts -------------------------------------------------------------------------------- /module/src/events/channelDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/events/channelDelete.ts -------------------------------------------------------------------------------- /module/src/events/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/events/guildCreate.ts -------------------------------------------------------------------------------- /module/src/events/guildMemberAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/events/guildMemberAdd.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/8d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/8d.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/bassboost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/bassboost.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/distorsion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/distorsion.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/filters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/filters.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/karaoke.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/karaoke.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/lowPass.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/lowPass.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/nightcore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/nightcore.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/pitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/pitch.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/reset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/reset.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/rotation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/rotation.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/speed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/speed.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/tremolo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/tremolo.ts -------------------------------------------------------------------------------- /module/src/interactions/Filters/vibrato.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/Filters/vibrato.ts -------------------------------------------------------------------------------- /module/src/interactions/config/247.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/247.ts -------------------------------------------------------------------------------- /module/src/interactions/config/announcesongs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/announcesongs.ts -------------------------------------------------------------------------------- /module/src/interactions/config/autoautoplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/autoautoplay.ts -------------------------------------------------------------------------------- /module/src/interactions/config/autoshuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/autoshuffle.ts -------------------------------------------------------------------------------- /module/src/interactions/config/buttons.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/buttons.ts -------------------------------------------------------------------------------- /module/src/interactions/config/clean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/clean.ts -------------------------------------------------------------------------------- /module/src/interactions/config/defaultVolume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/defaultVolume.ts -------------------------------------------------------------------------------- /module/src/interactions/config/djcommands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/djcommands.ts -------------------------------------------------------------------------------- /module/src/interactions/config/djmode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/djmode.ts -------------------------------------------------------------------------------- /module/src/interactions/config/fix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/fix.ts -------------------------------------------------------------------------------- /module/src/interactions/config/forcejoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/forcejoin.ts -------------------------------------------------------------------------------- /module/src/interactions/config/leavevc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/leavevc.ts -------------------------------------------------------------------------------- /module/src/interactions/config/maxsongs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/maxsongs.ts -------------------------------------------------------------------------------- /module/src/interactions/config/setdj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/setdj.ts -------------------------------------------------------------------------------- /module/src/interactions/config/setprefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/setprefix.ts -------------------------------------------------------------------------------- /module/src/interactions/config/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/settings.ts -------------------------------------------------------------------------------- /module/src/interactions/config/setvc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/setvc.ts -------------------------------------------------------------------------------- /module/src/interactions/config/textchannel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/textchannel.ts -------------------------------------------------------------------------------- /module/src/interactions/config/textchannels.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/textchannels.ts -------------------------------------------------------------------------------- /module/src/interactions/config/voteskip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/config/voteskip.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/ClearQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/ClearQueue.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/Pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/Pause.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/Resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/Resume.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/Shuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/Shuffle.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/Stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/Stop.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/Volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/Volume.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/autoplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/autoplay.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/back.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/back.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/forceskip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/forceskip.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/forward.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/forward.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/givedj.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/givedj.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/jump.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/jump.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/leave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/leave.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/leavecleanup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/leavecleanup.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/loop.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/move.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/move.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/remove.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/removedupes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/removedupes.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/replay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/replay.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/rewind.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/rewind.ts -------------------------------------------------------------------------------- /module/src/interactions/dj/seek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/dj/seek.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Code.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Help.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Play.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Premium.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Premium.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Queue.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Skip.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/Stats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/Stats.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/avatar.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/dashboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/dashboard.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/grab.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/grab.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/join.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/join.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/links.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/links.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/lyrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/lyrics.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/np.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/np.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-add.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-add.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-create.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-delete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-delete.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-list.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-list.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-play.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-remove.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/pl-view.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/pl-view.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/playskip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/playskip.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/playtop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/playtop.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/search.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/top-songs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/top-songs.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/userinfo.ts -------------------------------------------------------------------------------- /module/src/interactions/everyone/vote.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/interactions/everyone/vote.ts -------------------------------------------------------------------------------- /module/src/models/guildData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/models/guildData.ts -------------------------------------------------------------------------------- /module/src/models/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/models/user.ts -------------------------------------------------------------------------------- /module/src/modules/Collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/Collector.ts -------------------------------------------------------------------------------- /module/src/modules/CommandHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/CommandHandler.ts -------------------------------------------------------------------------------- /module/src/modules/CommandService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/CommandService.ts -------------------------------------------------------------------------------- /module/src/modules/Context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/Context.ts -------------------------------------------------------------------------------- /module/src/modules/DatabaseManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/DatabaseManager.ts -------------------------------------------------------------------------------- /module/src/modules/EventHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/EventHandler.ts -------------------------------------------------------------------------------- /module/src/modules/ExtendedDispatcher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/ExtendedDispatcher.ts -------------------------------------------------------------------------------- /module/src/modules/Queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/Queue.ts -------------------------------------------------------------------------------- /module/src/modules/ShoukakuHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/ShoukakuHandler.ts -------------------------------------------------------------------------------- /module/src/modules/SlashContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/SlashContext.ts -------------------------------------------------------------------------------- /module/src/modules/buttonHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/buttonHandler.ts -------------------------------------------------------------------------------- /module/src/modules/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/server.ts -------------------------------------------------------------------------------- /module/src/modules/sweeperManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/sweeperManager.ts -------------------------------------------------------------------------------- /module/src/modules/voiceService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/module/src/modules/voiceService.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GreenBotDevelopment/Green-bot/HEAD/tsconfig.json --------------------------------------------------------------------------------