forked from zijipia/Ziji-bot-discord
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js.example
165 lines (142 loc) · 3.92 KB
/
config.js.example
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
module.exports = {
/**
* Cho phép deploy command bot
* Allow bot command deployment
*/
deploy: true,
/**
* Thời gian chờ mặc định giữa các lệnh (tính bằng mili giây)
* Default cooldown duration between commands (in milliseconds)
*/
defaultCooldownDuration: 5_000,
/**
* Màu mặt định (hex , Random)
* color (hex , Random)
*/
defaultColor: "Random",
/**
* Bật tính năng tìm kiếm hình ảnh 'true', 'false' nên tắt khi chạy trên server vì khá tốn tài nguyên
* Enable image search feature 'true', 'false'. Should be turned off when running on server as it's resource-intensive
*/
ImageSearch: true,
/**
* Cấu hình mặc định của bot
* Default bot configuration
*/
botConfig: {
/**
* Tên hoạt động của bot
* Bot's activity name
*/
ActivityName: "/help",
/**
* Loại hoạt động của bot
* Bot's activity type (PLAYING, WATCHING, LISTENING, STREAMING)
*/
ActivityType: "PLAYING",
/**
* Trạng thái mặc định của bot 'online', 'idle', 'dnd', 'invisible'
* Default bot status: 'online', 'idle', 'dnd', 'invisible'
*/
Status: "idle",
/**
* ID của channel bot gửi lỗi
* Bot's error log channel ID
*/
ErrorLog: "",
/**
* ID của server hỗ trợ
* Support server ID
*/
SupportServer: "https://discord.gg/bkBejRNcR3",
/**
* Link mời bot
* Bot's invite link
*/
InviteBot: "https://discord.com/oauth2/authorize?client_id=1005716197259612193",
/**
* Link ảnh banner
* Banner image link
*/
Banner: "https://media.discordapp.net/attachments/1064851388221358153/1209448467077005332/image.png",
},
/**
* Cấu hình mặc định của player
* Default player configuration
*/
PlayerConfig: {
/**
* Mặc định tắt nghe của bot
* Default: bot doesn't listen (deaf mode)
*/
selfDeaf: true,
/**
* Mặc định volume của bot (0-100) (auto)
* Default bot volume (0-100) (auto)
*/
volume: "auto",
/**
* Mặc định bot sẽ rời khi không còn ai nghe
* Default: bot leaves when no one is listening
*/
leaveOnEmpty: true,
/**
* Thời gian chờ bot sẽ rời khi không có người trong voice (ms)
* Cooldown before bot leaves when no one is listening (ms)
*/
leaveOnEmptyCooldown: 5_000,
/**
* Mặc định bot sẽ rời khi hết bài hát
* Default: bot leaves when the song ends
*/
leaveOnEnd: true,
/**
* Thời gian chờ bot sẽ rời khi hết bài hát (ms)
* Cooldown before bot leaves after song ends (ms)
*/
leaveOnEndCooldown: 50_0000,
},
/**
* Ngôn ngữ mặc định của bot (vi, en, ...)
* Default bot language (vi, en, ...)
*/
DeafultLang: "vi",
/**
* Danh sách ID của chủ sở hữu bot (người dùng có thể thực hiện lệnh owner) ["ID admin", "ID admin", ...]
* List of bot owner IDs (users who can execute owner commands) ["admin ID", "admin ID", ...]
*/
OwnerID: [],
/**
* Danh sách ID của các server dành cho nhà phát triển ["ID server", "ID server", ...] or []
* List of server IDs for developers ["server ID", "server ID", ...] or []
*/
DevGuild: [],
/**
* Danh sách các lệnh cần tắt ["Play / Add music", "giveaways", ...]
* List of commands to disable ["command name", "command name", ...]
*/
disabledCommands: [],
DevConfig: {
/** ============ DEBUG ============ */
//discordjs debug
DJS_DEBUG: false,
//discord-player debug
DP_DEBUG: false,
//discord-player events debug
DPe_DEBUG: false,
//voiceExtractor events debug
voiceExt_DEBUG: false,
/** ============ Extractor ============ */
//enable YoutubeiExtractor
YoutubeiExtractor: true,
//enable Ziext (beta)
ZiExtractor: true,
/** ============ Else ============ */
//enable VoiceExtractor (beta)
VoiceExtractor: true,
//enable Giveaway
Giveaway: true,
//enable AutoResponder
AutoResponder: true,
},
};