-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.example.js
More file actions
41 lines (37 loc) · 1.82 KB
/
config.example.js
File metadata and controls
41 lines (37 loc) · 1.82 KB
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
/*
88b d88 ad88888ba
888b d888 d8" "8b
88`8b d8'88 Y8,
88 `8b d8' 88 ,adPPYba, ,adPPYba, `Y8aaaaa, ,adPPYYba, 88 88 8b,dPPYba, 88 88 ,adPPYba,
88 `8b d8' 88 a8" "8a a8" "8a `"""""8b, "" `Y8 88 88 88P' "Y8 88 88 I8[ ""
88 `8b d8' 88 8b d8 8b d8 `8b ,adPPPPP88 88 88 88 88 88 `"Y8ba,
88 `888' 88 "8a, ,a8" "8a, ,a8" Y8a a8P 88, ,88 "8a, ,a88 88 "8a, ,a88 aa ]8I
88 `8' 88 `"YbbdP"' `"YbbdP"' "Y88888P" `"8bbdP"Y8 `"YbbdP'Y8 88 `"YbbdP'Y8 `"YbbdP"'
©2024-2025 Moo9xi & DJ Stomp
MIT License
See the LICENSE file for details
*/
module.exports = {
token: "", // token
clientId: "", // bot id
prefix: "!", // prefix
language: "en", // ar for arabic | en for english
verbose: true,
musicCardPath: "./musicard.png",
enableLogging: true,
djRoleName: "MooSaurus",
aliases: {
play: ["p", "start", "playmusic"],
pause: ["hold", "stopmusic"],
resume: ["r", "continue"],
skip: ["s", "next", "jump"],
stop: ["end", "terminate"],
volumeUp: ["vup", "increasevolume"],
volumeDown: ["vdown", "decreasevolume"],
repeat: ["loop"],
queue: ["q"],
nowplaying: ["np"],
clear: ["c"],
remove: ["rm", "delete"]
}
};