├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── pnpm-lock.yaml ├── src ├── Database.ts ├── assets │ ├── TP.png │ ├── memberAddBackground.png │ ├── npBackground.png │ ├── spotifyButtons.png │ └── spotifyIcon.png ├── commands │ ├── Dev │ │ ├── blacklist.ts │ │ ├── eval.ts │ │ ├── lockcmd.ts │ │ ├── reload.ts │ │ ├── restart.ts │ │ └── shell.ts │ ├── Info │ │ ├── avatar.ts │ │ ├── banner.ts │ │ ├── botinfo.ts │ │ ├── channelinfo.ts │ │ ├── discriminator.ts │ │ ├── invite.ts │ │ ├── inviteinfo.ts │ │ ├── lavalink.ts │ │ ├── ping.ts │ │ ├── playerstats.ts │ │ ├── roleinfo.ts │ │ ├── serverbanner.ts │ │ ├── servericon.ts │ │ ├── serverinfo.ts │ │ ├── splash.ts │ │ ├── uptime.ts │ │ └── userinfo.ts │ ├── Moderation │ │ ├── ban.ts │ │ ├── banlist.ts │ │ ├── chatclear.ts │ │ ├── kick.ts │ │ ├── lock.ts │ │ ├── unban.ts │ │ └── unlock.ts │ ├── Music │ │ ├── djtable.ts │ │ ├── forceplay.ts │ │ ├── loop.ts │ │ ├── lyrics.ts │ │ ├── nowplaying.ts │ │ ├── pause.ts │ │ ├── play.ts │ │ ├── playlist.ts │ │ ├── queue.ts │ │ ├── radio.ts │ │ ├── remove.ts │ │ ├── resume.ts │ │ ├── search.ts │ │ ├── seek.ts │ │ ├── shuffle.ts │ │ ├── skip.ts │ │ ├── stop.ts │ │ └── volume.ts │ ├── Others │ │ ├── addemoji.ts │ │ ├── ascii.ts │ │ ├── calc.ts │ │ ├── colorthief.ts │ │ ├── currency.ts │ │ ├── emoji.ts │ │ ├── github.ts │ │ ├── isitup.ts │ │ ├── periodictable.ts │ │ ├── qrcode.ts │ │ ├── record.ts │ │ ├── repository.ts │ │ ├── spotify.ts │ │ ├── steam.ts │ │ ├── translate.ts │ │ ├── weather.ts │ │ └── wiki.ts │ ├── Settings │ │ ├── autorole.ts │ │ ├── disable.ts │ │ ├── djrole.ts │ │ ├── enable.ts │ │ ├── invalidcmd.ts │ │ └── logs.ts │ └── help.ts ├── events │ ├── channelDelete.ts │ ├── error.ts │ ├── guildCreate.ts │ ├── guildDelete.ts │ ├── guildMemberAdd.ts │ ├── guildMemberRemove.ts │ ├── interactionCreate.ts │ ├── messageCreate.ts │ ├── messageDelete.ts │ ├── messageDeleteBulk.ts │ ├── messageUpdate.ts │ ├── ready.ts │ ├── voiceChannelJoin.ts │ ├── voiceChannelLeave.ts │ ├── voiceChannelSwitch.ts │ └── warn.ts ├── index.ts ├── models │ ├── botDB.ts │ ├── guildDB.ts │ └── userDB.ts ├── structures │ ├── Client.ts │ ├── Collector.ts │ ├── Command.ts │ ├── CommandContext.ts │ ├── Embed.ts │ ├── Music.ts │ └── TrackQueue.ts ├── typings │ ├── index.d.ts │ └── node │ │ └── environment.d.ts ├── utils │ ├── Logger.ts │ ├── dynamicAvatar.ts │ ├── imageUtil.ts │ ├── levenshteinDistance.ts │ ├── msToDate.ts │ ├── msToHour.ts │ ├── permissions.ts │ └── soundCloudIdExtractor.ts └── workers │ └── ReceiveWorker.js └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .env 3 | build 4 | logs 5 | records -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/Database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/Database.ts -------------------------------------------------------------------------------- /src/assets/TP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/assets/TP.png -------------------------------------------------------------------------------- /src/assets/memberAddBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/assets/memberAddBackground.png -------------------------------------------------------------------------------- /src/assets/npBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/assets/npBackground.png -------------------------------------------------------------------------------- /src/assets/spotifyButtons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/assets/spotifyButtons.png -------------------------------------------------------------------------------- /src/assets/spotifyIcon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/assets/spotifyIcon.png -------------------------------------------------------------------------------- /src/commands/Dev/blacklist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Dev/blacklist.ts -------------------------------------------------------------------------------- /src/commands/Dev/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Dev/eval.ts -------------------------------------------------------------------------------- /src/commands/Dev/lockcmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Dev/lockcmd.ts -------------------------------------------------------------------------------- /src/commands/Dev/reload.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Dev/reload.ts -------------------------------------------------------------------------------- /src/commands/Dev/restart.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Dev/restart.ts -------------------------------------------------------------------------------- /src/commands/Dev/shell.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Dev/shell.ts -------------------------------------------------------------------------------- /src/commands/Info/avatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/avatar.ts -------------------------------------------------------------------------------- /src/commands/Info/banner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/banner.ts -------------------------------------------------------------------------------- /src/commands/Info/botinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/botinfo.ts -------------------------------------------------------------------------------- /src/commands/Info/channelinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/channelinfo.ts -------------------------------------------------------------------------------- /src/commands/Info/discriminator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/discriminator.ts -------------------------------------------------------------------------------- /src/commands/Info/invite.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/invite.ts -------------------------------------------------------------------------------- /src/commands/Info/inviteinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/inviteinfo.ts -------------------------------------------------------------------------------- /src/commands/Info/lavalink.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/lavalink.ts -------------------------------------------------------------------------------- /src/commands/Info/ping.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/ping.ts -------------------------------------------------------------------------------- /src/commands/Info/playerstats.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/playerstats.ts -------------------------------------------------------------------------------- /src/commands/Info/roleinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/roleinfo.ts -------------------------------------------------------------------------------- /src/commands/Info/serverbanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/serverbanner.ts -------------------------------------------------------------------------------- /src/commands/Info/servericon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/servericon.ts -------------------------------------------------------------------------------- /src/commands/Info/serverinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/serverinfo.ts -------------------------------------------------------------------------------- /src/commands/Info/splash.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/splash.ts -------------------------------------------------------------------------------- /src/commands/Info/uptime.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/uptime.ts -------------------------------------------------------------------------------- /src/commands/Info/userinfo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Info/userinfo.ts -------------------------------------------------------------------------------- /src/commands/Moderation/ban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/ban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/banlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/banlist.ts -------------------------------------------------------------------------------- /src/commands/Moderation/chatclear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/chatclear.ts -------------------------------------------------------------------------------- /src/commands/Moderation/kick.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/kick.ts -------------------------------------------------------------------------------- /src/commands/Moderation/lock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/lock.ts -------------------------------------------------------------------------------- /src/commands/Moderation/unban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/unban.ts -------------------------------------------------------------------------------- /src/commands/Moderation/unlock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Moderation/unlock.ts -------------------------------------------------------------------------------- /src/commands/Music/djtable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/djtable.ts -------------------------------------------------------------------------------- /src/commands/Music/forceplay.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/forceplay.ts -------------------------------------------------------------------------------- /src/commands/Music/loop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/loop.ts -------------------------------------------------------------------------------- /src/commands/Music/lyrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/lyrics.ts -------------------------------------------------------------------------------- /src/commands/Music/nowplaying.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/nowplaying.ts -------------------------------------------------------------------------------- /src/commands/Music/pause.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/pause.ts -------------------------------------------------------------------------------- /src/commands/Music/play.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/play.ts -------------------------------------------------------------------------------- /src/commands/Music/playlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/playlist.ts -------------------------------------------------------------------------------- /src/commands/Music/queue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/queue.ts -------------------------------------------------------------------------------- /src/commands/Music/radio.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/radio.ts -------------------------------------------------------------------------------- /src/commands/Music/remove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/remove.ts -------------------------------------------------------------------------------- /src/commands/Music/resume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/resume.ts -------------------------------------------------------------------------------- /src/commands/Music/search.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/search.ts -------------------------------------------------------------------------------- /src/commands/Music/seek.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/seek.ts -------------------------------------------------------------------------------- /src/commands/Music/shuffle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/shuffle.ts -------------------------------------------------------------------------------- /src/commands/Music/skip.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/skip.ts -------------------------------------------------------------------------------- /src/commands/Music/stop.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/stop.ts -------------------------------------------------------------------------------- /src/commands/Music/volume.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Music/volume.ts -------------------------------------------------------------------------------- /src/commands/Others/addemoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/addemoji.ts -------------------------------------------------------------------------------- /src/commands/Others/ascii.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/ascii.ts -------------------------------------------------------------------------------- /src/commands/Others/calc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/calc.ts -------------------------------------------------------------------------------- /src/commands/Others/colorthief.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/colorthief.ts -------------------------------------------------------------------------------- /src/commands/Others/currency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/currency.ts -------------------------------------------------------------------------------- /src/commands/Others/emoji.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/emoji.ts -------------------------------------------------------------------------------- /src/commands/Others/github.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/github.ts -------------------------------------------------------------------------------- /src/commands/Others/isitup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/isitup.ts -------------------------------------------------------------------------------- /src/commands/Others/periodictable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/periodictable.ts -------------------------------------------------------------------------------- /src/commands/Others/qrcode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/qrcode.ts -------------------------------------------------------------------------------- /src/commands/Others/record.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/record.ts -------------------------------------------------------------------------------- /src/commands/Others/repository.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/repository.ts -------------------------------------------------------------------------------- /src/commands/Others/spotify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/spotify.ts -------------------------------------------------------------------------------- /src/commands/Others/steam.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/steam.ts -------------------------------------------------------------------------------- /src/commands/Others/translate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/translate.ts -------------------------------------------------------------------------------- /src/commands/Others/weather.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/weather.ts -------------------------------------------------------------------------------- /src/commands/Others/wiki.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Others/wiki.ts -------------------------------------------------------------------------------- /src/commands/Settings/autorole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Settings/autorole.ts -------------------------------------------------------------------------------- /src/commands/Settings/disable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Settings/disable.ts -------------------------------------------------------------------------------- /src/commands/Settings/djrole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Settings/djrole.ts -------------------------------------------------------------------------------- /src/commands/Settings/enable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Settings/enable.ts -------------------------------------------------------------------------------- /src/commands/Settings/invalidcmd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Settings/invalidcmd.ts -------------------------------------------------------------------------------- /src/commands/Settings/logs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/Settings/logs.ts -------------------------------------------------------------------------------- /src/commands/help.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/commands/help.ts -------------------------------------------------------------------------------- /src/events/channelDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/channelDelete.ts -------------------------------------------------------------------------------- /src/events/error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/error.ts -------------------------------------------------------------------------------- /src/events/guildCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/guildCreate.ts -------------------------------------------------------------------------------- /src/events/guildDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/guildDelete.ts -------------------------------------------------------------------------------- /src/events/guildMemberAdd.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/guildMemberAdd.ts -------------------------------------------------------------------------------- /src/events/guildMemberRemove.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/guildMemberRemove.ts -------------------------------------------------------------------------------- /src/events/interactionCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/interactionCreate.ts -------------------------------------------------------------------------------- /src/events/messageCreate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/messageCreate.ts -------------------------------------------------------------------------------- /src/events/messageDelete.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/messageDelete.ts -------------------------------------------------------------------------------- /src/events/messageDeleteBulk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/messageDeleteBulk.ts -------------------------------------------------------------------------------- /src/events/messageUpdate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/messageUpdate.ts -------------------------------------------------------------------------------- /src/events/ready.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/ready.ts -------------------------------------------------------------------------------- /src/events/voiceChannelJoin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/voiceChannelJoin.ts -------------------------------------------------------------------------------- /src/events/voiceChannelLeave.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/voiceChannelLeave.ts -------------------------------------------------------------------------------- /src/events/voiceChannelSwitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/voiceChannelSwitch.ts -------------------------------------------------------------------------------- /src/events/warn.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/events/warn.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/models/botDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/models/botDB.ts -------------------------------------------------------------------------------- /src/models/guildDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/models/guildDB.ts -------------------------------------------------------------------------------- /src/models/userDB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/models/userDB.ts -------------------------------------------------------------------------------- /src/structures/Client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/Client.ts -------------------------------------------------------------------------------- /src/structures/Collector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/Collector.ts -------------------------------------------------------------------------------- /src/structures/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/Command.ts -------------------------------------------------------------------------------- /src/structures/CommandContext.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/CommandContext.ts -------------------------------------------------------------------------------- /src/structures/Embed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/Embed.ts -------------------------------------------------------------------------------- /src/structures/Music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/Music.ts -------------------------------------------------------------------------------- /src/structures/TrackQueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/structures/TrackQueue.ts -------------------------------------------------------------------------------- /src/typings/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/typings/index.d.ts -------------------------------------------------------------------------------- /src/typings/node/environment.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/typings/node/environment.d.ts -------------------------------------------------------------------------------- /src/utils/Logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/Logger.ts -------------------------------------------------------------------------------- /src/utils/dynamicAvatar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/dynamicAvatar.ts -------------------------------------------------------------------------------- /src/utils/imageUtil.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/imageUtil.ts -------------------------------------------------------------------------------- /src/utils/levenshteinDistance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/levenshteinDistance.ts -------------------------------------------------------------------------------- /src/utils/msToDate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/msToDate.ts -------------------------------------------------------------------------------- /src/utils/msToHour.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/msToHour.ts -------------------------------------------------------------------------------- /src/utils/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/permissions.ts -------------------------------------------------------------------------------- /src/utils/soundCloudIdExtractor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/utils/soundCloudIdExtractor.ts -------------------------------------------------------------------------------- /src/workers/ReceiveWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/src/workers/ReceiveWorker.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/davidffa/D4rkBot/HEAD/tsconfig.json --------------------------------------------------------------------------------