blob: 056547816eb5f258e361d23e0bab96b8ad436183 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
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');
}
};
|