Toggle navigation
Toggle navigation
This project
Loading...
Sign in
유병우
/
lostark-discord-bot
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Snippets
Network
Create a new issue
Builds
Commits
Issue Boards
Authored by
유병우
2022-05-05 19:03:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
bc21415eebaeb56f0e6e69e1dd5e731fcf50c582
bc21415e
1 parent
afc4e28e
Make description of help command
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
0 deletions
commands/help.js
commands/help.js
View file @
bc21415
const
{
SlashCommandBuilder
}
=
require
(
'@discordjs/builders'
);
module
.
exports
=
{
data
:
new
SlashCommandBuilder
()
.
setName
(
'도움'
)
.
setDescription
(
'롸!봇의 명령어에 대한 설명입니다.'
)
.
addStringOption
((
option
)
=>
option
.
setName
(
"명령어"
)
.
setDescription
(
"명령어의 설명 조회"
)
.
setRequired
(
false
)
),
async
execute
(
interaction
)
{
await
interaction
.
reply
(
"도움말 제공!"
);
//여러가지 기능 넣을지 고민중.. 여기서 기획하고 설계할 계획
//경매금 계산기, 마리샵 정보 제공, 전투정보실 캐릭터 정보 조회 기능은 기본적으로 구현할 예정
},
};
\ No newline at end of file
...
...
Please
register
or
login
to post a comment