From 657599acccf351c7c9366cec9f648b7496c89bdb Mon Sep 17 00:00:00 2001 From: Andrew Lee Date: Tue, 1 Apr 2025 21:52:44 -0400 Subject: New commands (warn, adventure); Splitting log channels --- bot/src/commands/adventure.js | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 bot/src/commands/adventure.js (limited to 'bot/src/commands/adventure.js') diff --git a/bot/src/commands/adventure.js b/bot/src/commands/adventure.js new file mode 100644 index 0000000..0565478 --- /dev/null +++ b/bot/src/commands/adventure.js @@ -0,0 +1,12 @@ +// The plan for this command is that the user can select a story, then the bot sends the story that the user selected, and it will be interactive +// so it will be like an adventure story, and it will have multiple paths that the user can select. +import { SlashCommandBuilder } from 'discord.js'; + +export default { + data: new SlashCommandBuilder() + .setName('adventure') + .setDescription('Select an interactive story'), + async execute(interaction) { + return await interaction.reply('Hello world'); + } +}; -- cgit v1.2.3