From e4450c8417624b71d779cb4f41692538f9165e10 Mon Sep 17 00:00:00 2001 From: sowgro Date: Sat, 2 Sep 2023 19:12:47 -0400 Subject: first commit --- commands/use.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 commands/use.js (limited to 'commands/use.js') diff --git a/commands/use.js b/commands/use.js new file mode 100644 index 0000000..dc9897b --- /dev/null +++ b/commands/use.js @@ -0,0 +1,16 @@ +const { SlashCommandBuilder } = require('discord.js'); + +module.exports = { + data: new SlashCommandBuilder() + .setName('use') + .setDescription('Use a Command') + .addStringOption(option => + option.setName('command') + .setDescription('What the bot will send') + .setRequired(true) + .addChoices(...global.data.getList()) + ), + async execute(interaction) { + await interaction.reply(global.data.get(interaction.options.getString('command'))); + }, +}; \ No newline at end of file -- cgit v1.2.3