Skip to main content

Command Manager

Currently, you probably have something like this in your code:

const Discord = require("discordeno");
// Ideally you should move to an `.env` file
const config = require("./config.json");

const client = Discord.createBot({
events: {
messageCreate(client, message) {
if (message.content === "!ping") {
client.helpers.sendMessage(message.channelId, { content: "pong" });
}
},
},
intents: ["Guilds", "GuildMessages"],
token: config.token,
});

Discord.startBot(client);

Of course, if you add more and more commands and as your code base grows, you can lose track very quickly.

To avoid this, it is recommended to store the commands in separate folders divided into different categories.

Previously, we introduced you to our plugin structure, which has a lot of advantages.

β”œPlugins/
β”œβ”€β”€ General/
β”‚ β”œβ”€β”€ commands/
β”‚ β”‚ β”œβ”€β”€ ping.js
β”‚ β”‚ └── ...
β”œβ”€β”€ Developer/
β”‚ β”œβ”€β”€ commands/
β”‚ β”‚ β”œβ”€β”€ eval.js
β”‚ β”‚ └── ...
└── ...

Get this file from the nodejs template

const CommandManager = require("./template/Managers/CommandManager.js");
const manager = new CommandManager({});
manager.load({ plugin: true }); // Load the commands
client.commands = manager;

client.commands.cache.get("ping"); // Get the `ping` command

The Manager will automatically iterate through all files in the folder and then load them into the cache property, which is mapped on the command name.

Take a look at Create Command to learn how to create a command.

Handle Command​

The manager also contains a handler for executing the command when a message is received.

important

Currently checks for permissions, cooldowns, and rate limits are not covered, but these will be added soon.

Message Create Event:​

module.exports = async (client, message) => {
client.commands.isCommand(message);
};

Interaction Create Event:​

module.exports = async (client, interaction) => {
client.commands.isInteraction(interaction);
};

You can also customize the isCommand function to your use case.