Drumy is a music bot made for Discord, it supports main streaming sources such as Youtube
, Spotify
, Soundcloud
and many others.
Open the configuration file located in the main folder config.js
.
module.exports = {
app: {
px: 'd!',
token: 'pasteyourtokenhere',
playing: 'type d!help for commands'
},
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,
opusEnconded: true,
encoderArgs: ['-af', 'bass=g=25,dynaudnorm=f=200']
}
}
}
};
Basic configuration
app/px
, the prefix that will be set to use the botapp/token
, the token of the bot available on the Discord Developers sectionapp/playing
, the activity of the bot
DJ mode configuration
opt/DJ/enabled
, whether the DJ mode should be activated or notopt/DJ/roleName
, the name of the DJ role to be usedopt/DJ/commands
, the list of commands limited to members with the DJ role
Advanced configuration
opt/maxVol
, the maximum volume that users can defineopt/loopMessage
, if the message that a music is played should be sent when it is loopedopt/discordPlayer
, options used by discord-player
To use the project correctly you will need some tools.
Realized with ❤️ by SPEEDOU.