From e4450c8417624b71d779cb4f41692538f9165e10 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sat, 2 Sep 2023 19:12:47 -0400 Subject: first commit --- commands/add.js | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 commands/add.js (limited to 'commands/add.js') diff --git a/commands/add.js b/commands/add.js new file mode 100644 index 0000000..5d74b6a --- /dev/null +++ b/commands/add.js @@ -0,0 +1,26 @@ +const { SlashCommandBuilder } = require('discord.js'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('add') + .setDescription('Add a Command') + .addStringOption(option => + option.setName('command') + .setDescription('The name of the command `/use THIS`') + .setRequired(true)) + .addStringOption(option => + option.setName('content') + .setDescription('What the bot will send') + .setRequired(true)), + async execute(interaction) { + if (global.data.getList().length <= 25) + { + global.data.add(interaction.options.getString('command'),interaction.options.getString('content')); + await interaction.reply('Added `'+interaction.options.getString('command')+'`.'); + } + else + { + await interaction.reply('Failed to add command. There is a hard limit of 25 commands!'); + } + }, +}; \ No newline at end of file -- cgit v1.2.3