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
Minty U
2022-06-02 16:57:19 +0900
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
f33c0c546151e5eaea54297f82f990135ea96865
f33c0c54
1 parent
c67ad5c1
Change category name to upper case
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
Commands/Help/help.js
Commands/OCR/ocr.js
Commands/Stationery/search.js
Commands/Help/help.js
View file @
f33c0c5
...
...
@@ -69,7 +69,7 @@ exports.run = async (client, msg, args, prefix) => {
exports
.
config
=
{
name
:
'도움말'
,
aliases
:
[
'도움'
,
'명령어'
,
'commands'
,
'help'
],
category
:
[
'
example
'
],
category
:
[
'
Help
'
],
des
:
[
'봇에 대한 명령어 리스트들을 불러옵니다.'
],
use
:
[
'!도움말 <명령어>'
]
};
\ No newline at end of file
...
...
Commands/OCR/ocr.js
View file @
f33c0c5
...
...
@@ -79,7 +79,7 @@ exports.run = async (client, msg, args, prefix) => {
exports
.
config
=
{
name
:
'ocr'
,
aliases
:
[
'ㅐㅊㄱ'
],
category
:
[
'
o
cr'
],
category
:
[
'
O
cr'
],
des
:
[
'이미지를 첨부하고 명령어를 입력하면, 이미지에 있는 텍스트를 추출합니다.'
],
use
:
[
'!ocr <사용 언어>'
]
};
\ No newline at end of file
...
...
Commands/Stationery/search.js
View file @
f33c0c5
...
...
@@ -3,7 +3,7 @@ exports.run = async (client, msg, args, prefix) => {
if
(
args
[
0
])
{
// 명령어 뒤에 입력값이 있을 경우 (ex. !<명령어> <채팅>)
let
Commands
=
new
Discord
.
MessageEmbed
()
.
setTitle
(
`
${
args
[
0
]}
에 대한 검색 결과`
)
.
setColor
(
"E5D49A"
)
.
setColor
(
"E5D49A"
)
;
msg
.
reply
({
embeds
:
[
Commands
]
});
}
else
{
msg
.
reply
(
"검색어가 없습니다. 검색어를 추가해서 다시 입력해주세요."
);
...
...
@@ -13,7 +13,7 @@ exports.run = async (client, msg, args, prefix) => {
exports
.
config
=
{
name
:
'문구'
,
aliases
:
[
' '
,
' '
,
' '
,
' '
],
category
:
[
'
s
tationery'
],
category
:
[
'
S
tationery'
],
des
:
[
'채팅 내용에 대한 검색결과를 보여줍니다.'
],
use
:
[
'!문구 <채팅>'
]
};
\ No newline at end of file
...
...
Please
register
or
login
to post a comment