forked from 1s-Viper/MusicBot
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.js
More file actions
22 lines (21 loc) · 881 Bytes
/
config.js
File metadata and controls
22 lines (21 loc) · 881 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module.exports = {
TOKEN: '', //write your discord bot token
px: '!',
playing: 'Umut Bayraktar ❤️ Music Bot',
opt: {
DJ: {
enabled: false, //IF YOU WANT ONLY DJS TO USE IT, set false to true.
roleName: 'DJ', //WRITE WHAT THE NAME OF THE DJ ROLE WILL BE, THEY CAN USE IT ON YOUR SERVER
commands: ['back', 'clear', 'filter', 'loop', 'pause', 'resume', 'skip', 'stop', 'volume'] //Please don't touch
},
selfDeaf: false, //IF YOU WANT TO DEAF THE BOT, set false to true.
maxVol: 100, //You can specify the maximum volume level.
loopMessage: false, //Please don't touch
discordPlayer: {
ytdlOptions: {
quality: 'highestaudio', //Please don't touch
highWaterMark: 1 << 25 //Please don't touch
}
}
}
};