-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
43 lines (35 loc) · 1.59 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
module.exports = {
TOKEN: "",
ownerID: "", //write your discord user id.
botInvite: "", //write your discord bot invite.
mongodbURL: "", //write your mongodb url.
status: '',
commandsDir: './commands', //Please don't touch
language: "en", //en, tr, nl
embedColor: "", //hex color code
errorLog: "", //write your discord error log channel id.
voteManager: { //optional
status: false, //true or false
api_key: "", //write your top.gg api key.
vote_commands: ["back","channel","clear","dj","filter","loop","nowplaying","pause","play","playlist","queue","resume","save","search","skip","stop","time","volume"], //write your use by vote commands.
vote_url: "", //write your top.gg vote url.
},
playlistSettings:{
maxPlaylist: 10, //max playlist count
maxMusic: 75, //max music count
},
opt: {
DJ: {
commands: ['back', 'clear', 'filter', 'loop', 'pause', 'resume', 'skip', 'stop', 'volume'] //Please don't touch
},
voiceConfig: {
leaveOnFinish: true, //If this variable is "true", the bot will leave the channel the music ends.
leaveOnStop: true, //If this variable is "true", the bot will leave the channel when the music is stopped.
leaveOnEmpty: { //The leaveOnEnd variable must be "false" to use this system.
status: true, //If this variable is "true", the bot will leave the channel when the bot is offline.
cooldown: 10000000, //1000 = 1 second
},
},
maxVol: 150, //You can specify the maximum volume level.
}
}