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-31 22:03:41 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
eebd42c12274e2102c768ffe22d723f58c29725b
eebd42c1
1 parent
2c61635e
Update help command
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletions
commands/help.js
commands/help.js
View file @
eebd42c
...
...
@@ -24,7 +24,8 @@ module.exports = {
.
addField
(
'/정보 <닉네임>'
,
'전투정보실 조회'
,
true
)
.
addField
(
'/로아와 <닉네임>'
,
'로아와 조회'
,
true
)
.
addField
(
'/나침반'
,
'금일 스케줄 조회'
,
true
)
.
addField
(
'/용어 <단어>'
,
'로스트아크 용어 설명'
,
true
);
.
addField
(
'/용어 <단어>'
,
'로스트아크 용어 설명'
,
true
)
.
addField
(
'/각인 <클래스>'
,
'클래스 별 각인 분석 정보 제공'
,
true
);
await
interaction
.
reply
({
embeds
:
[
helpEmbed
],
allowedMentions
:
{
repliedUser
:
false
}});
}
else
if
(
helpCommand
===
"도움"
)
{
const
helpEmbed
=
new
MessageEmbed
()
...
...
@@ -68,6 +69,12 @@ module.exports = {
.
setTitle
(
`/용어 사용방법`
)
.
setDescription
(
`<단어>에 해당하는 로스트아크 용어 설명을 제공합니다.`
);
await
interaction
.
reply
({
embeds
:
[
helpEmbed
],
allowedMentions
:
{
repliedUser
:
false
}});
}
else
if
(
helpCommand
===
"각인"
){
const
helpEmbed
=
new
MessageEmbed
()
.
setColor
(
'#0099ff'
)
.
setTitle
(
`/각인 <클래스> 사용방법`
)
.
setDescription
(
`<클래스>에 해당하는 로아와 상위 20명의 각인 정보를 분석하고 제공합니다.`
);
await
interaction
.
reply
({
embeds
:
[
helpEmbed
],
allowedMentions
:
{
repliedUser
:
false
}});
}
else
{
await
interaction
.
reply
(
"해당 명령어는 없습니다."
);
}
...
...
Please
register
or
login
to post a comment