유병우

Make description of help command

1 +const { SlashCommandBuilder } = require('@discordjs/builders');
2 +
3 +module.exports = {
4 + data: new SlashCommandBuilder()
5 + .setName('도움')
6 + .setDescription('롸!봇의 명령어에 대한 설명입니다.')
7 + .addStringOption((option)=>
8 + option
9 + .setName("명령어")
10 + .setDescription("명령어의 설명 조회")
11 + .setRequired(false)
12 + ),
13 + async execute(interaction) {
14 + await interaction.reply("도움말 제공!");
15 + //여러가지 기능 넣을지 고민중.. 여기서 기획하고 설계할 계획
16 + //경매금 계산기, 마리샵 정보 제공, 전투정보실 캐릭터 정보 조회 기능은 기본적으로 구현할 예정
17 + },
18 +};
...\ No newline at end of file ...\ No newline at end of file
......