Toggle navigation
Toggle navigation
This project
Loading...
Sign in
박건희
/
emon_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
String15
2022-05-18 01:08:34 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3c1cb1e6780d3f679afbbb54657a7e5e67ce7210
3c1cb1e6
1 parent
35bb2b5c
Add skeleton code to stationery
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
19 additions
and
0 deletions
Commands/Stationery/search.js
Commands/Stationery/temp1.js
Commands/Stationery/search.js
0 → 100644
View file @
3c1cb1e
const
Discord
=
require
(
"discord.js"
);
exports
.
run
=
async
(
client
,
msg
,
args
,
prefix
)
=>
{
if
(
args
[
0
])
{
// 명령어 뒤에 입력값이 있을 경우 (ex. !<명령어> <채팅>)
let
Commands
=
new
Discord
.
MessageEmbed
()
.
setTitle
(
`
${
args
[
0
]}
에 대한 검색 결과`
)
.
setColor
(
"E5D49A"
)
msg
.
reply
({
embeds
:
[
Commands
]
});
}
else
{
msg
.
reply
(
"검색어가 없습니다. 검색어를 추가해서 다시 입력해주세요."
);
}
};
exports
.
config
=
{
name
:
'문구'
,
aliases
:
[
' '
,
' '
,
' '
,
' '
],
category
:
[
'stationery'
],
des
:
[
'채팅 내용에 대한 검색결과를 보여줍니다.'
],
use
:
[
'!문구 <채팅>'
]
};
\ No newline at end of file
Commands/Stationery/temp1.js
deleted
100644 → 0
View file @
35bb2b5
File mode changed
Please
register
or
login
to post a comment