├── .env.example ├── .gitignore ├── .prettierrc.json ├── Events ├── Client │ └── Ready.js ├── Interaction │ ├── AutoComplete.js │ ├── ButtonCreate.js │ ├── InteractionCreate.js │ └── ModalCreate.js └── Log │ └── InteractionLog.js ├── Interactions ├── Components │ ├── AutoComplete │ │ └── AutoEval.js │ ├── Buttons │ │ ├── But1.js │ │ ├── But2.js │ │ └── Delete.js │ └── Modals │ │ └── RedeemModal.js └── SlashCommands │ ├── Admin │ ├── Language.js │ └── Redeem.js │ ├── Client │ ├── Button.js │ ├── Help.js │ └── Ping.js │ └── Dev │ ├── Eval.js │ ├── Premium.js │ └── Reload.js ├── LICENSE ├── README.md ├── Schemas ├── Bot │ ├── BotDatas.js │ └── RedeemCode.js ├── Server │ ├── LanguageData.js │ └── PremiumDatas.js └── index.js ├── Structures ├── Classes │ ├── BaseCommand.js │ ├── BaseComponent.js │ ├── BaseEvent.js │ └── BotClient.js ├── Functions │ ├── GenRedeemCode.js │ ├── JsonFind.js │ ├── Logger.js │ ├── PaginationEmbed.js │ └── index.js └── Handlers │ ├── CommandHandler.js │ ├── ComponentHandler.js │ ├── ErrorHandler.js │ ├── EventHandler.js │ └── LanguageHandler.js ├── bot.js ├── config.js ├── index.js ├── locales ├── bn │ ├── command.json │ ├── component.json │ ├── system.json │ └── translator.json ├── en │ ├── command.json │ ├── component.json │ ├── system.json │ └── translator.json ├── fr │ ├── command.json │ ├── component.json │ ├── system.json │ └── translator.json ├── pt-br │ ├── command.json │ ├── component.json │ ├── system.json │ └── translator.json └── resources.js ├── package.json ├── preview ├── img1.jpg ├── img2.jpg ├── img3.jpg ├── img4.jpg └── img5.jpg └── scripts ├── destroyGlobal.js └── destroyGuild.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/.env.example -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env 3 | package-lock.json -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /Events/Client/Ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Events/Client/Ready.js -------------------------------------------------------------------------------- /Events/Interaction/AutoComplete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Events/Interaction/AutoComplete.js -------------------------------------------------------------------------------- /Events/Interaction/ButtonCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Events/Interaction/ButtonCreate.js -------------------------------------------------------------------------------- /Events/Interaction/InteractionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Events/Interaction/InteractionCreate.js -------------------------------------------------------------------------------- /Events/Interaction/ModalCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Events/Interaction/ModalCreate.js -------------------------------------------------------------------------------- /Events/Log/InteractionLog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Events/Log/InteractionLog.js -------------------------------------------------------------------------------- /Interactions/Components/AutoComplete/AutoEval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/Components/AutoComplete/AutoEval.js -------------------------------------------------------------------------------- /Interactions/Components/Buttons/But1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/Components/Buttons/But1.js -------------------------------------------------------------------------------- /Interactions/Components/Buttons/But2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/Components/Buttons/But2.js -------------------------------------------------------------------------------- /Interactions/Components/Buttons/Delete.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/Components/Buttons/Delete.js -------------------------------------------------------------------------------- /Interactions/Components/Modals/RedeemModal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/Components/Modals/RedeemModal.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Admin/Language.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Admin/Language.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Admin/Redeem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Admin/Redeem.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Client/Button.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Client/Button.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Client/Help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Client/Help.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Client/Ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Client/Ping.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Dev/Eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Dev/Eval.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Dev/Premium.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Dev/Premium.js -------------------------------------------------------------------------------- /Interactions/SlashCommands/Dev/Reload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Interactions/SlashCommands/Dev/Reload.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/README.md -------------------------------------------------------------------------------- /Schemas/Bot/BotDatas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Schemas/Bot/BotDatas.js -------------------------------------------------------------------------------- /Schemas/Bot/RedeemCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Schemas/Bot/RedeemCode.js -------------------------------------------------------------------------------- /Schemas/Server/LanguageData.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Schemas/Server/LanguageData.js -------------------------------------------------------------------------------- /Schemas/Server/PremiumDatas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Schemas/Server/PremiumDatas.js -------------------------------------------------------------------------------- /Schemas/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Schemas/index.js -------------------------------------------------------------------------------- /Structures/Classes/BaseCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Classes/BaseCommand.js -------------------------------------------------------------------------------- /Structures/Classes/BaseComponent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Classes/BaseComponent.js -------------------------------------------------------------------------------- /Structures/Classes/BaseEvent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Classes/BaseEvent.js -------------------------------------------------------------------------------- /Structures/Classes/BotClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Classes/BotClient.js -------------------------------------------------------------------------------- /Structures/Functions/GenRedeemCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Functions/GenRedeemCode.js -------------------------------------------------------------------------------- /Structures/Functions/JsonFind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Functions/JsonFind.js -------------------------------------------------------------------------------- /Structures/Functions/Logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Functions/Logger.js -------------------------------------------------------------------------------- /Structures/Functions/PaginationEmbed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Functions/PaginationEmbed.js -------------------------------------------------------------------------------- /Structures/Functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Functions/index.js -------------------------------------------------------------------------------- /Structures/Handlers/CommandHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Handlers/CommandHandler.js -------------------------------------------------------------------------------- /Structures/Handlers/ComponentHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Handlers/ComponentHandler.js -------------------------------------------------------------------------------- /Structures/Handlers/ErrorHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Handlers/ErrorHandler.js -------------------------------------------------------------------------------- /Structures/Handlers/EventHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Handlers/EventHandler.js -------------------------------------------------------------------------------- /Structures/Handlers/LanguageHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/Structures/Handlers/LanguageHandler.js -------------------------------------------------------------------------------- /bot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/bot.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/index.js -------------------------------------------------------------------------------- /locales/bn/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/bn/command.json -------------------------------------------------------------------------------- /locales/bn/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/bn/component.json -------------------------------------------------------------------------------- /locales/bn/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/bn/system.json -------------------------------------------------------------------------------- /locales/bn/translator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/bn/translator.json -------------------------------------------------------------------------------- /locales/en/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/en/command.json -------------------------------------------------------------------------------- /locales/en/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/en/component.json -------------------------------------------------------------------------------- /locales/en/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/en/system.json -------------------------------------------------------------------------------- /locales/en/translator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/en/translator.json -------------------------------------------------------------------------------- /locales/fr/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/fr/command.json -------------------------------------------------------------------------------- /locales/fr/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/fr/component.json -------------------------------------------------------------------------------- /locales/fr/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/fr/system.json -------------------------------------------------------------------------------- /locales/fr/translator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/fr/translator.json -------------------------------------------------------------------------------- /locales/pt-br/command.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/pt-br/command.json -------------------------------------------------------------------------------- /locales/pt-br/component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/pt-br/component.json -------------------------------------------------------------------------------- /locales/pt-br/system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/pt-br/system.json -------------------------------------------------------------------------------- /locales/pt-br/translator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/pt-br/translator.json -------------------------------------------------------------------------------- /locales/resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/locales/resources.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/package.json -------------------------------------------------------------------------------- /preview/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/preview/img1.jpg -------------------------------------------------------------------------------- /preview/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/preview/img2.jpg -------------------------------------------------------------------------------- /preview/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/preview/img3.jpg -------------------------------------------------------------------------------- /preview/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/preview/img4.jpg -------------------------------------------------------------------------------- /preview/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/preview/img5.jpg -------------------------------------------------------------------------------- /scripts/destroyGlobal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/scripts/destroyGlobal.js -------------------------------------------------------------------------------- /scripts/destroyGuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahorabhossainmidul/Discord.js-v14-Bot-Handler/HEAD/scripts/destroyGuild.js --------------------------------------------------------------------------------