Lanbot_Music/config.js

24 lines
536 B
JavaScript
Raw Normal View History

2022-04-03 04:34:37 +02:00
module.exports = {
app: {
prefix: '$',
2022-04-03 11:19:25 +02:00
token: ''
2022-04-03 04:34:37 +02:00
},
opt: {
DJ: {
enabled: false,
roleName: 'DJ',
commands: ['back', 'clear', 'filter', 'loop', 'pause', 'resume', 'seek', 'shuffle', 'skip', 'stop', 'volume']
},
maxVol: 100,
loopMessage: false,
discordPlayer: {
ytdlOptions: {
quality: 'highestaudio',
highWaterMark: 1 << 25,
type: 'opus',
}
}
}
2022-04-03 04:41:03 +02:00
};