├── .env ├── LICENSE ├── README.md ├── buttons └── verify.js ├── commands └── info │ ├── invite.js │ └── ping.js ├── config.json ├── events ├── buttonInteraction.js ├── interactionCreate.js ├── messageCreate.js └── ready.js ├── handlers ├── buttons.js ├── command.js ├── events.js └── slashCommand.js ├── index.js ├── package.json └── slashCommands ├── fun ├── animal.js └── color.js ├── info ├── invite.js └── ping.js ├── moderation ├── role.js └── verify.js └── utility └── avatar.js /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/.env -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/README.md -------------------------------------------------------------------------------- /buttons/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/buttons/verify.js -------------------------------------------------------------------------------- /commands/info/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/commands/info/invite.js -------------------------------------------------------------------------------- /commands/info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/commands/info/ping.js -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/config.json -------------------------------------------------------------------------------- /events/buttonInteraction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/events/buttonInteraction.js -------------------------------------------------------------------------------- /events/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/events/interactionCreate.js -------------------------------------------------------------------------------- /events/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/events/messageCreate.js -------------------------------------------------------------------------------- /events/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/events/ready.js -------------------------------------------------------------------------------- /handlers/buttons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/handlers/buttons.js -------------------------------------------------------------------------------- /handlers/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/handlers/command.js -------------------------------------------------------------------------------- /handlers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/handlers/events.js -------------------------------------------------------------------------------- /handlers/slashCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/handlers/slashCommand.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/package.json -------------------------------------------------------------------------------- /slashCommands/fun/animal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/fun/animal.js -------------------------------------------------------------------------------- /slashCommands/fun/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/fun/color.js -------------------------------------------------------------------------------- /slashCommands/info/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/info/invite.js -------------------------------------------------------------------------------- /slashCommands/info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/info/ping.js -------------------------------------------------------------------------------- /slashCommands/moderation/role.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/moderation/role.js -------------------------------------------------------------------------------- /slashCommands/moderation/verify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/moderation/verify.js -------------------------------------------------------------------------------- /slashCommands/utility/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nathaniel-VFX/Discord.js-v14-Command-Handlers/HEAD/slashCommands/utility/avatar.js --------------------------------------------------------------------------------