Addon System
Understanding and setting up addons. This system is meant for experienced developers.
Creating Addons for Drako Bot
Types of Addons
Command Addons
const { SlashCommandBuilder } = require('@discordjs/builders');
module.exports = {
data: new SlashCommandBuilder()
.setName('test')
.setDescription('Test command!'),
async execute(interaction, client) {
interaction.reply({ content: 'This is a test', ephemeral: true });
}
};Event Addons
Steps to Create Addons
Last updated