-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathconfig.js
44 lines (42 loc) · 1 KB
/
config.js
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
module.exports = {
app: {
token: process.env.DISCORD_TOKEN || 'xxx',
playing: 'by the Community ❤️',
global: true,
guild: process.env.GUILD_ID || 'xxx',
extraMessages: false,
loopMessage: false,
lang: 'en',
enableEmojis: false,
},
emojis:{
'back': '⏪',
'skip': '⏩',
'ResumePause': '⏯️',
'savetrack': '💾',
'volumeUp': '🔊',
'volumeDown': '🔉',
'loop': '🔁',
},
opt: {
DJ: {
enabled: false,
roleName: '',
commands: []
},
Translate_Timeout: 10000,
maxVol: 100,
spotifyBridge: true,
volume: 75,
leaveOnEmpty: true,
leaveOnEmptyCooldown: 30000,
leaveOnEnd: true,
leaveOnEndCooldown: 30000,
discordPlayer: {
ytdlOptions: {
quality: 'highestaudio',
highWaterMark: 1 << 25
}
}
}
};