├── .github ├── FUNDING.yml └── dependabot.yml ├── .gitignore ├── README.md ├── config.js ├── package.json ├── shrinkwrap.yaml └── src ├── commands ├── Admin │ ├── add-role.js │ ├── clear.js │ ├── create-embed.js │ ├── findemoji.js │ ├── lock_channel.js │ ├── remove-role.js │ ├── role-list.js │ ├── strealemoji.js │ ├── ticket.js │ └── unlock_channel.js ├── Anti_swear │ ├── add.js │ ├── list.js │ └── remove.js ├── Backup │ ├── backup-json │ │ ├── 891916183467589632.json │ │ ├── 900702307426107392.json │ │ └── 900974932006141952.json │ ├── create-backup.js │ └── load-backup.js ├── Fun │ ├── 8ball.js │ ├── avs.js │ ├── bed.js │ ├── changemymind.js │ ├── clyde.js │ ├── delete.js │ ├── eject.js │ ├── emojify.js │ ├── fox.js │ ├── jail.js │ ├── joke.js │ ├── kiss.js │ ├── lovecalc.js │ ├── meme.js │ ├── nitro.js │ ├── owo.js │ ├── punch.js │ ├── qrcode.js │ ├── quote.js │ ├── slap.js │ ├── smug.js │ ├── spank.js │ ├── stonks.js │ ├── trash.js │ ├── wanted.js │ └── yt_comment.js ├── Games │ ├── akinator.js │ ├── rps.js │ └── tictactoe.js ├── Levels │ ├── add-role.js │ ├── leaderboard.js │ ├── list.js │ ├── rank.js │ └── remove-role.js ├── Misc │ ├── avatar.js │ ├── botInfo.js │ ├── emoji-list.js │ ├── ping.js │ ├── reaction.js │ ├── role-info.js │ ├── say.js │ ├── serverInfo.js │ └── userInfo.js ├── Moderation │ ├── ban.js │ ├── kick.js │ ├── mute.js │ ├── nuke.js │ ├── reset-warn.js │ ├── unmute.js │ ├── warn.js │ └── warnings.js ├── Owner │ ├── chat-all-owner-guild.js │ ├── emoji-list.js │ ├── eval.js │ ├── reload.js │ └── serverlist.js ├── Search │ ├── djsdosc.js │ ├── github.js │ ├── steam.js │ └── yt-search.js ├── Settings │ ├── set-auto.js │ ├── set-channel.js │ ├── set-message.js │ ├── set-prefix.js │ └── view-msg.js └── Utility │ ├── afk.js │ ├── embed.js │ ├── help.js │ ├── invite.js │ └── sudo.js ├── dashboard └── app.js ├── events └── Guild │ ├── Afk.js │ ├── Anti-swear.js │ ├── Bot-add-remove.js │ ├── Emit.js │ ├── Interaction.js │ ├── Level.js │ ├── Message.js │ ├── Music.js │ ├── Starboard.js │ ├── Welcome-leave.js │ └── level-role.js ├── handlers └── handler.js ├── index.js ├── interaction ├── buttons │ ├── Ticket │ │ ├── ticket-1.js │ │ ├── ticket-2.js │ │ ├── ticket-3.js │ │ ├── ticket-4.js │ │ ├── ticket-5.js │ │ └── ticket.js │ └── template.md ├── selects │ └── template.md └── slash │ ├── Admin │ ├── create-embed.js │ └── custom-cmd.js │ ├── Music │ ├── delQueue.js │ ├── getQueue.js │ ├── jump.js │ ├── lyrics.js │ ├── pause.js │ ├── play.js │ ├── repeat.js │ ├── resume.js │ ├── skip.js │ ├── stop.js │ └── volume.js │ ├── giveaway │ ├── g-drop.js │ ├── g-end.js │ ├── g-reroll.js │ └── g-start.js │ └── other │ ├── avatar.js │ ├── hastebin.js │ ├── ping.js │ ├── report.js │ └── ship.js └── structures ├── Client.js ├── Other ├── image.js └── options.js ├── SlashCommands.js ├── antiCrash.js ├── mongoose.js └── verifyConfig.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | json.sqlite 2 | data -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/README.md -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/package.json -------------------------------------------------------------------------------- /shrinkwrap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/shrinkwrap.yaml -------------------------------------------------------------------------------- /src/commands/Admin/add-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/add-role.js -------------------------------------------------------------------------------- /src/commands/Admin/clear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/clear.js -------------------------------------------------------------------------------- /src/commands/Admin/create-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/create-embed.js -------------------------------------------------------------------------------- /src/commands/Admin/findemoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/findemoji.js -------------------------------------------------------------------------------- /src/commands/Admin/lock_channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/lock_channel.js -------------------------------------------------------------------------------- /src/commands/Admin/remove-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/remove-role.js -------------------------------------------------------------------------------- /src/commands/Admin/role-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/role-list.js -------------------------------------------------------------------------------- /src/commands/Admin/strealemoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/strealemoji.js -------------------------------------------------------------------------------- /src/commands/Admin/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/ticket.js -------------------------------------------------------------------------------- /src/commands/Admin/unlock_channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Admin/unlock_channel.js -------------------------------------------------------------------------------- /src/commands/Anti_swear/add.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Anti_swear/add.js -------------------------------------------------------------------------------- /src/commands/Anti_swear/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Anti_swear/list.js -------------------------------------------------------------------------------- /src/commands/Anti_swear/remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Anti_swear/remove.js -------------------------------------------------------------------------------- /src/commands/Backup/backup-json/891916183467589632.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Backup/backup-json/891916183467589632.json -------------------------------------------------------------------------------- /src/commands/Backup/backup-json/900702307426107392.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Backup/backup-json/900702307426107392.json -------------------------------------------------------------------------------- /src/commands/Backup/backup-json/900974932006141952.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Backup/backup-json/900974932006141952.json -------------------------------------------------------------------------------- /src/commands/Backup/create-backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Backup/create-backup.js -------------------------------------------------------------------------------- /src/commands/Backup/load-backup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Backup/load-backup.js -------------------------------------------------------------------------------- /src/commands/Fun/8ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/8ball.js -------------------------------------------------------------------------------- /src/commands/Fun/avs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/avs.js -------------------------------------------------------------------------------- /src/commands/Fun/bed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/bed.js -------------------------------------------------------------------------------- /src/commands/Fun/changemymind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/changemymind.js -------------------------------------------------------------------------------- /src/commands/Fun/clyde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/clyde.js -------------------------------------------------------------------------------- /src/commands/Fun/delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/delete.js -------------------------------------------------------------------------------- /src/commands/Fun/eject.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/eject.js -------------------------------------------------------------------------------- /src/commands/Fun/emojify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/emojify.js -------------------------------------------------------------------------------- /src/commands/Fun/fox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/fox.js -------------------------------------------------------------------------------- /src/commands/Fun/jail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/jail.js -------------------------------------------------------------------------------- /src/commands/Fun/joke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/joke.js -------------------------------------------------------------------------------- /src/commands/Fun/kiss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/kiss.js -------------------------------------------------------------------------------- /src/commands/Fun/lovecalc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/lovecalc.js -------------------------------------------------------------------------------- /src/commands/Fun/meme.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/meme.js -------------------------------------------------------------------------------- /src/commands/Fun/nitro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/nitro.js -------------------------------------------------------------------------------- /src/commands/Fun/owo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/owo.js -------------------------------------------------------------------------------- /src/commands/Fun/punch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/punch.js -------------------------------------------------------------------------------- /src/commands/Fun/qrcode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/qrcode.js -------------------------------------------------------------------------------- /src/commands/Fun/quote.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/quote.js -------------------------------------------------------------------------------- /src/commands/Fun/slap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/slap.js -------------------------------------------------------------------------------- /src/commands/Fun/smug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/smug.js -------------------------------------------------------------------------------- /src/commands/Fun/spank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/spank.js -------------------------------------------------------------------------------- /src/commands/Fun/stonks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/stonks.js -------------------------------------------------------------------------------- /src/commands/Fun/trash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/trash.js -------------------------------------------------------------------------------- /src/commands/Fun/wanted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/wanted.js -------------------------------------------------------------------------------- /src/commands/Fun/yt_comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Fun/yt_comment.js -------------------------------------------------------------------------------- /src/commands/Games/akinator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Games/akinator.js -------------------------------------------------------------------------------- /src/commands/Games/rps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Games/rps.js -------------------------------------------------------------------------------- /src/commands/Games/tictactoe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Games/tictactoe.js -------------------------------------------------------------------------------- /src/commands/Levels/add-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Levels/add-role.js -------------------------------------------------------------------------------- /src/commands/Levels/leaderboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Levels/leaderboard.js -------------------------------------------------------------------------------- /src/commands/Levels/list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Levels/list.js -------------------------------------------------------------------------------- /src/commands/Levels/rank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Levels/rank.js -------------------------------------------------------------------------------- /src/commands/Levels/remove-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Levels/remove-role.js -------------------------------------------------------------------------------- /src/commands/Misc/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/avatar.js -------------------------------------------------------------------------------- /src/commands/Misc/botInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/botInfo.js -------------------------------------------------------------------------------- /src/commands/Misc/emoji-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/emoji-list.js -------------------------------------------------------------------------------- /src/commands/Misc/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/ping.js -------------------------------------------------------------------------------- /src/commands/Misc/reaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/reaction.js -------------------------------------------------------------------------------- /src/commands/Misc/role-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/role-info.js -------------------------------------------------------------------------------- /src/commands/Misc/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/say.js -------------------------------------------------------------------------------- /src/commands/Misc/serverInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/serverInfo.js -------------------------------------------------------------------------------- /src/commands/Misc/userInfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Misc/userInfo.js -------------------------------------------------------------------------------- /src/commands/Moderation/ban.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/ban.js -------------------------------------------------------------------------------- /src/commands/Moderation/kick.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/kick.js -------------------------------------------------------------------------------- /src/commands/Moderation/mute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/mute.js -------------------------------------------------------------------------------- /src/commands/Moderation/nuke.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/nuke.js -------------------------------------------------------------------------------- /src/commands/Moderation/reset-warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/reset-warn.js -------------------------------------------------------------------------------- /src/commands/Moderation/unmute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/unmute.js -------------------------------------------------------------------------------- /src/commands/Moderation/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/warn.js -------------------------------------------------------------------------------- /src/commands/Moderation/warnings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Moderation/warnings.js -------------------------------------------------------------------------------- /src/commands/Owner/chat-all-owner-guild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Owner/chat-all-owner-guild.js -------------------------------------------------------------------------------- /src/commands/Owner/emoji-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Owner/emoji-list.js -------------------------------------------------------------------------------- /src/commands/Owner/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Owner/eval.js -------------------------------------------------------------------------------- /src/commands/Owner/reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Owner/reload.js -------------------------------------------------------------------------------- /src/commands/Owner/serverlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Owner/serverlist.js -------------------------------------------------------------------------------- /src/commands/Search/djsdosc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Search/djsdosc.js -------------------------------------------------------------------------------- /src/commands/Search/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Search/github.js -------------------------------------------------------------------------------- /src/commands/Search/steam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Search/steam.js -------------------------------------------------------------------------------- /src/commands/Search/yt-search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Search/yt-search.js -------------------------------------------------------------------------------- /src/commands/Settings/set-auto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Settings/set-auto.js -------------------------------------------------------------------------------- /src/commands/Settings/set-channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Settings/set-channel.js -------------------------------------------------------------------------------- /src/commands/Settings/set-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Settings/set-message.js -------------------------------------------------------------------------------- /src/commands/Settings/set-prefix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Settings/set-prefix.js -------------------------------------------------------------------------------- /src/commands/Settings/view-msg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Settings/view-msg.js -------------------------------------------------------------------------------- /src/commands/Utility/afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Utility/afk.js -------------------------------------------------------------------------------- /src/commands/Utility/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Utility/embed.js -------------------------------------------------------------------------------- /src/commands/Utility/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Utility/help.js -------------------------------------------------------------------------------- /src/commands/Utility/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Utility/invite.js -------------------------------------------------------------------------------- /src/commands/Utility/sudo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/commands/Utility/sudo.js -------------------------------------------------------------------------------- /src/dashboard/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/dashboard/app.js -------------------------------------------------------------------------------- /src/events/Guild/Afk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Afk.js -------------------------------------------------------------------------------- /src/events/Guild/Anti-swear.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Anti-swear.js -------------------------------------------------------------------------------- /src/events/Guild/Bot-add-remove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Bot-add-remove.js -------------------------------------------------------------------------------- /src/events/Guild/Emit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Emit.js -------------------------------------------------------------------------------- /src/events/Guild/Interaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Interaction.js -------------------------------------------------------------------------------- /src/events/Guild/Level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Level.js -------------------------------------------------------------------------------- /src/events/Guild/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Message.js -------------------------------------------------------------------------------- /src/events/Guild/Music.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Music.js -------------------------------------------------------------------------------- /src/events/Guild/Starboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Starboard.js -------------------------------------------------------------------------------- /src/events/Guild/Welcome-leave.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/Welcome-leave.js -------------------------------------------------------------------------------- /src/events/Guild/level-role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/events/Guild/level-role.js -------------------------------------------------------------------------------- /src/handlers/handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/handlers/handler.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/index.js -------------------------------------------------------------------------------- /src/interaction/buttons/Ticket/ticket-1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/Ticket/ticket-1.js -------------------------------------------------------------------------------- /src/interaction/buttons/Ticket/ticket-2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/Ticket/ticket-2.js -------------------------------------------------------------------------------- /src/interaction/buttons/Ticket/ticket-3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/Ticket/ticket-3.js -------------------------------------------------------------------------------- /src/interaction/buttons/Ticket/ticket-4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/Ticket/ticket-4.js -------------------------------------------------------------------------------- /src/interaction/buttons/Ticket/ticket-5.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/Ticket/ticket-5.js -------------------------------------------------------------------------------- /src/interaction/buttons/Ticket/ticket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/Ticket/ticket.js -------------------------------------------------------------------------------- /src/interaction/buttons/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/buttons/template.md -------------------------------------------------------------------------------- /src/interaction/selects/template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/selects/template.md -------------------------------------------------------------------------------- /src/interaction/slash/Admin/create-embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Admin/create-embed.js -------------------------------------------------------------------------------- /src/interaction/slash/Admin/custom-cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Admin/custom-cmd.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/delQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/delQueue.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/getQueue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/getQueue.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/jump.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/jump.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/lyrics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/lyrics.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/pause.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/pause.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/play.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/play.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/repeat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/repeat.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/resume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/resume.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/skip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/skip.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/stop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/stop.js -------------------------------------------------------------------------------- /src/interaction/slash/Music/volume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/Music/volume.js -------------------------------------------------------------------------------- /src/interaction/slash/giveaway/g-drop.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/giveaway/g-drop.js -------------------------------------------------------------------------------- /src/interaction/slash/giveaway/g-end.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/giveaway/g-end.js -------------------------------------------------------------------------------- /src/interaction/slash/giveaway/g-reroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/giveaway/g-reroll.js -------------------------------------------------------------------------------- /src/interaction/slash/giveaway/g-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/giveaway/g-start.js -------------------------------------------------------------------------------- /src/interaction/slash/other/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/other/avatar.js -------------------------------------------------------------------------------- /src/interaction/slash/other/hastebin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/other/hastebin.js -------------------------------------------------------------------------------- /src/interaction/slash/other/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/other/ping.js -------------------------------------------------------------------------------- /src/interaction/slash/other/report.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/other/report.js -------------------------------------------------------------------------------- /src/interaction/slash/other/ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/interaction/slash/other/ship.js -------------------------------------------------------------------------------- /src/structures/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/Client.js -------------------------------------------------------------------------------- /src/structures/Other/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/Other/image.js -------------------------------------------------------------------------------- /src/structures/Other/options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/Other/options.js -------------------------------------------------------------------------------- /src/structures/SlashCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/SlashCommands.js -------------------------------------------------------------------------------- /src/structures/antiCrash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/antiCrash.js -------------------------------------------------------------------------------- /src/structures/mongoose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/mongoose.js -------------------------------------------------------------------------------- /src/structures/verifyConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sintya4/PREMIUM-DGH-BOT-V4/HEAD/src/structures/verifyConfig.js --------------------------------------------------------------------------------