MOOver.js/commands/helpWIP.js
ZyLacx d2a87e6f10 MOOver 2.0
Slashcommands added hehehehehe
2022-02-12 14:04:18 +01:00

15 lines
No EOL
537 B
JavaScript

const { SlashCommandBuilder } = require('@discordjs/builders');
const { MessageEmbed } = require('discord.js');
module.exports = {
data: new SlashCommandBuilder()
.setName('help')
.setDescription('sheeeee')
.addMentionableOption(option => option.setName('aaaa').setDescription('aaaaaaa')),
// .addBooleanOption(option => option.setName('naco').setDescription('Select a boolean')),
async execute(interaction) {
const embed = new MessageEmbed()
.addField('Battle', 'Field');
interaction.reply({ embeds: [embed] });
},
};