A complete code to download for a music bot 🎧
Looking for a code for a music bot? This fully open-source code is made for your project!
If you need help with this project, to get support faster you can join the help server by just clicking here.
If you don't have any development knowledge, it is recommended to join the Discord support server to get help.
Open the configuration file located in the main folder config.js
.
module.exports = {
app: {
token: "XXX",
playing: "by awadbilal ❤️",
global: true,
guild: "",
ExtraMessages: false,
loopMessage: false,
},
opt: {
DJ: {
enabled: false,
roleName: "",
commands: [],
},
maxVol: 100,
spotifyBridge: true,
volume: 75,
leaveOnEmpty: true,
leaveOnEmptyCooldown: 60000,
leaveOnEnd: true,
leaveOnEndCooldown: 60000,
discordPlayer: {
ytdlOptions: {
quality: "highestaudio",
highWaterMark: 1 << 25,
},
},
},
};
Basic configuration
app/token
, the token of the bot available on the Discord Developers sectionapp/playing
, the activity of the botapp/global
, whether the commands will work on all servers or just one (if global they might take up to an hour to show up)app/guild
, the guild the slash command will be loaded to (this only applys if global is set to false)app/ExtraMessages
will increesse the amount of bot spam, while you get more infomation (not recommended)opt/loopMessage
, if the message that a music is played should be sent when it is looped
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 (only change if you know what you are doing)
opt/maxVol
, the maximum volume that users can defineopt/spotifyBridge
, takes spotify songs/playlists and searches it on youtube and plays it (highly recommended)opt/volume
, is the defaul volume the queue will start atopt/leaveOnEmpty
, if the bot will leave when the queue is emptyopt/leaveOnEmptyCooldown
, the cooldown before the bot leaves when the queue is emptyopt/leaveOnEnd
, if the bot will leave on finishing the queueopt/leaveOnEndCooldown
, the cooldown before the bot leaves on finishing the queueopt/discordPlayer
, options used by discord-player
To use the project correctly you will need some tools.
WARNING: You MUST use Node.js version under 18.17, otherwise, you will encounter major compatibility issues.
FFmpeg to process audio
Node JS (v18.17) or older for environment
yarn for package management
Without forgetting of course the code editor, we recommend visual studio code
Now in your terminal run the following commands assuming you are in the same directory as the project.
yarn install
(or npm install
not recommended as it might not work)
node .
(or node index.js
)
and Done, your bot should be running!
Realized with ❤️ by AwadBilal.
Please do not withdraw the license and keep the credits on this project.
To have full access to the project and to be able to withdraw the credits a small donation is accepted.