├── .github └── FUNDING.yml ├── LICENSE ├── README.md ├── botconfig ├── config.json ├── embed.json └── settings.json ├── commands ├── Administration │ ├── embed.js │ └── say.js ├── Information │ ├── avatar.js │ ├── commandcount.js │ ├── emojiinfo.js │ ├── help.js │ ├── invite.js │ ├── membercount.js │ ├── permissions.js │ ├── ping.js │ ├── roleinfo.js │ ├── serveravatar.js │ ├── serverinfo.js │ ├── support.js │ ├── uptime.js │ └── userinfo.js └── Owner │ ├── changeavatar.js │ ├── changename.js │ ├── cmdreload.js │ ├── detailedeval.js │ ├── eval.js │ └── reloadbot.js ├── events ├── client │ ├── debug.js │ ├── disconnect.js │ ├── error.js │ ├── rateLimit.js │ ├── ready.js │ ├── reconnecting.js │ ├── shardDisconnect.js │ ├── shardError.js │ ├── shardReady.js │ ├── shardReconnecting.js │ ├── shardResume.js │ └── warn.js └── guild │ ├── guildMemberAdd.js │ ├── interactionCreate.js │ ├── messageCreate.js │ ├── messageReactionAdd.js │ ├── messageReactionRemove.js │ ├── threadCreate.js │ └── voiceStateUpdate.js ├── handlers ├── antiCrash.js ├── commands.js ├── events.js ├── functions.js └── slashCommands.js ├── index.js ├── package.json └── slashCommands ├── Admin ├── embed.js └── say.js └── Info ├── ping.js └── userinfo.js /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/README.md -------------------------------------------------------------------------------- /botconfig/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/botconfig/config.json -------------------------------------------------------------------------------- /botconfig/embed.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/botconfig/embed.json -------------------------------------------------------------------------------- /botconfig/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/botconfig/settings.json -------------------------------------------------------------------------------- /commands/Administration/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Administration/embed.js -------------------------------------------------------------------------------- /commands/Administration/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Administration/say.js -------------------------------------------------------------------------------- /commands/Information/avatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/avatar.js -------------------------------------------------------------------------------- /commands/Information/commandcount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/commandcount.js -------------------------------------------------------------------------------- /commands/Information/emojiinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/emojiinfo.js -------------------------------------------------------------------------------- /commands/Information/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/help.js -------------------------------------------------------------------------------- /commands/Information/invite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/invite.js -------------------------------------------------------------------------------- /commands/Information/membercount.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/membercount.js -------------------------------------------------------------------------------- /commands/Information/permissions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/permissions.js -------------------------------------------------------------------------------- /commands/Information/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/ping.js -------------------------------------------------------------------------------- /commands/Information/roleinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/roleinfo.js -------------------------------------------------------------------------------- /commands/Information/serveravatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/serveravatar.js -------------------------------------------------------------------------------- /commands/Information/serverinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/serverinfo.js -------------------------------------------------------------------------------- /commands/Information/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/support.js -------------------------------------------------------------------------------- /commands/Information/uptime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/uptime.js -------------------------------------------------------------------------------- /commands/Information/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Information/userinfo.js -------------------------------------------------------------------------------- /commands/Owner/changeavatar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Owner/changeavatar.js -------------------------------------------------------------------------------- /commands/Owner/changename.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Owner/changename.js -------------------------------------------------------------------------------- /commands/Owner/cmdreload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Owner/cmdreload.js -------------------------------------------------------------------------------- /commands/Owner/detailedeval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Owner/detailedeval.js -------------------------------------------------------------------------------- /commands/Owner/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Owner/eval.js -------------------------------------------------------------------------------- /commands/Owner/reloadbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/commands/Owner/reloadbot.js -------------------------------------------------------------------------------- /events/client/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/debug.js -------------------------------------------------------------------------------- /events/client/disconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/disconnect.js -------------------------------------------------------------------------------- /events/client/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/error.js -------------------------------------------------------------------------------- /events/client/rateLimit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/rateLimit.js -------------------------------------------------------------------------------- /events/client/ready.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/ready.js -------------------------------------------------------------------------------- /events/client/reconnecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/reconnecting.js -------------------------------------------------------------------------------- /events/client/shardDisconnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/shardDisconnect.js -------------------------------------------------------------------------------- /events/client/shardError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/shardError.js -------------------------------------------------------------------------------- /events/client/shardReady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/shardReady.js -------------------------------------------------------------------------------- /events/client/shardReconnecting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/shardReconnecting.js -------------------------------------------------------------------------------- /events/client/shardResume.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/shardResume.js -------------------------------------------------------------------------------- /events/client/warn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/client/warn.js -------------------------------------------------------------------------------- /events/guild/guildMemberAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/guildMemberAdd.js -------------------------------------------------------------------------------- /events/guild/interactionCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/interactionCreate.js -------------------------------------------------------------------------------- /events/guild/messageCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/messageCreate.js -------------------------------------------------------------------------------- /events/guild/messageReactionAdd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/messageReactionAdd.js -------------------------------------------------------------------------------- /events/guild/messageReactionRemove.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/messageReactionRemove.js -------------------------------------------------------------------------------- /events/guild/threadCreate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/threadCreate.js -------------------------------------------------------------------------------- /events/guild/voiceStateUpdate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/events/guild/voiceStateUpdate.js -------------------------------------------------------------------------------- /handlers/antiCrash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/handlers/antiCrash.js -------------------------------------------------------------------------------- /handlers/commands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/handlers/commands.js -------------------------------------------------------------------------------- /handlers/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/handlers/events.js -------------------------------------------------------------------------------- /handlers/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/handlers/functions.js -------------------------------------------------------------------------------- /handlers/slashCommands.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/handlers/slashCommands.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/package.json -------------------------------------------------------------------------------- /slashCommands/Admin/embed.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/slashCommands/Admin/embed.js -------------------------------------------------------------------------------- /slashCommands/Admin/say.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/slashCommands/Admin/say.js -------------------------------------------------------------------------------- /slashCommands/Info/ping.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/slashCommands/Info/ping.js -------------------------------------------------------------------------------- /slashCommands/Info/userinfo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Tomato6966/Discord-js-handler-slash-Commands/HEAD/slashCommands/Info/userinfo.js --------------------------------------------------------------------------------