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-27 18:09:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f267aad0b3ddc8d70e3850022ae87893276dd89f
f267aad0
1 parent
a392a4f2
Update help.js for adding contents of auction command
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
commands/help.js
commands/help.js
View file @
f267aad
...
...
@@ -20,6 +20,7 @@ module.exports = {
.
addField
(
'/도움'
,
'명령어 설명 및 목록'
,
true
)
.
addField
(
'/도움 <명령어>'
,
'명령어 상세 설명'
,
true
)
.
addField
(
'/마리샵'
,
'마리샵 정보 조회'
,
true
)
.
addField
(
'/경매'
,
'경매 분배금 계산'
,
true
)
.
addField
(
'/정보 <닉네임>'
,
'전투정보실 조회'
,
true
)
.
addField
(
'/로아와 <닉네임>'
,
'로아와 조회'
,
true
)
.
addField
(
'/나침반'
,
'금일 스케줄 조회'
,
true
)
...
...
@@ -37,6 +38,12 @@ module.exports = {
.
setTitle
(
`/마리샵 사용방법`
)
.
setDescription
(
`현재 마리샵과 이전, 전전의 마리샵의 정보를 조회합니다.`
);
await
interaction
.
reply
({
embeds
:
[
helpEmbed
],
allowedMentions
:
{
repliedUser
:
false
}});
}
else
if
(
helpCommand
===
"경매"
)
{
const
helpEmbed
=
new
MessageEmbed
()
.
setColor
(
'#0099ff'
)
.
setTitle
(
`/경매 <경매가> <인원> 사용방법`
)
.
setDescription
(
`경매 분배금을 계산해서 이득 입찰금을 조회합니다.`
);
await
interaction
.
reply
({
embeds
:
[
helpEmbed
],
allowedMentions
:
{
repliedUser
:
false
}});
}
else
if
(
helpCommand
===
"정보"
)
{
const
helpEmbed
=
new
MessageEmbed
()
.
setColor
(
'#0099ff'
)
...
...
Please
register
or
login
to post a comment