This repository has been archived on 2026-03-28. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
legacy-musicbot/config.js
2022-06-26 19:51:23 +02:00

36 lines
554 B
JavaScript

module.exports = {
app: {
px: "XXX",
token: "XXX",
playing: "ciepłe dranie",
},
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,
},
},
},
};