2022-08-28 17:03:15 +02:00
|
|
|
import { SlashCommandBuilder } from 'discord.js';
|
2022-08-18 02:09:51 +02:00
|
|
|
|
|
|
|
export default {
|
|
|
|
data: new SlashCommandBuilder()
|
|
|
|
.setName('s')
|
|
|
|
.setDescription('What could this be 🤫')
|
|
|
|
.addStringOption(option =>
|
|
|
|
option.setName('something')
|
|
|
|
.setDescription('🤫')
|
|
|
|
.setRequired(true)),
|
2022-08-30 23:29:50 +02:00
|
|
|
category: 'secret',
|
2022-08-28 17:03:15 +02:00
|
|
|
async execute(interaction, args) {
|
2022-09-01 01:43:59 +02:00
|
|
|
const command = args.something;
|
2022-08-18 02:09:51 +02:00
|
|
|
|
|
|
|
if (command === 'levertowned') {
|
|
|
|
interaction.reply('Hello buddy bro <:youngtroll:488559163832795136> <@434762632004894746>');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|