diff options
author | sowgro <tpoke.ferrari@gmail.com> | 2023-09-02 19:12:47 -0400 |
---|---|---|
committer | sowgro <tpoke.ferrari@gmail.com> | 2023-09-02 19:12:47 -0400 |
commit | e4450c8417624b71d779cb4f41692538f9165e10 (patch) | |
tree | b70826542223ecdf8a7a259f61b0a1abb8a217d8 /commands/add.js | |
download | sowbot3-e4450c8417624b71d779cb4f41692538f9165e10.tar.gz sowbot3-e4450c8417624b71d779cb4f41692538f9165e10.tar.bz2 sowbot3-e4450c8417624b71d779cb4f41692538f9165e10.zip |
first commit
Diffstat (limited to 'commands/add.js')
-rw-r--r-- | commands/add.js | 26 |
1 files changed, 26 insertions, 0 deletions
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 |