99 lines
2.8 KiB
Markdown
99 lines
2.8 KiB
Markdown
# Music-bot
|
|
A complete code to download for a music bot. Using a module (discord-player).
|
|
|
|
Looking for a code for a music bot ? This fully open source code is made for your !
|
|
Warning, this code uses the v12 of the Discord.js module. Previous versions such as (11.5.1, 11.5.0 or other) will not be supported.
|
|
|
|
Well, let's start by downloading the code.
|
|
Go to the folder `config` then the file `config.json`.
|
|
For the bot to be able to start, please complete the file with your credentials as follows :
|
|
|
|
```js
|
|
{
|
|
"prefix": "PREFIX BOT",
|
|
|
|
"token_bot": "TOKEN BOT",
|
|
"youtube_api": "TOKEN YOUTUBE API"
|
|
}
|
|
```
|
|
|
|
Reminder :
|
|
|
|
- `prefix`, the prefix that will be set to use the bot.
|
|
- `token_bot`, the token of the bot available on the [Discord Developers](https://discordapp.com/developers/applications) section.
|
|
- `youtube_api`, your youtube token available on the [Google console](https://console.developers.google.com).
|
|
|
|
To customize the emojis go to the file `emojis.json`.
|
|
Emojis are already defined by default but you can modify them if you wish.
|
|
|
|
```js
|
|
{
|
|
"music": ":musical_note:",
|
|
"queue": ":bar_chart:",
|
|
"error": ":tools:",
|
|
"success": ":white_check_mark:"
|
|
}
|
|
```
|
|
|
|
Go to the console and type this :
|
|
|
|
```
|
|
npm init
|
|
npm i (name of each missing module)
|
|
```
|
|
|
|
All you have to do is turn on your bot !
|
|
|
|
- `play <name>`, play music in a vocal salon.
|
|
- `pause`, pauses the current music.
|
|
- `resume`, puts the current music back on.
|
|
- `queue`, see the next musics.
|
|
- `clear-queue`, delete the next music.
|
|
- `now-playing`, see music in progress.
|
|
- `set-volume <...>`, change the volume.
|
|
- `set-repeat`to enable or disable the repeat function.
|
|
- `skip`, skip to next music.
|
|
- `stop`, stop all music.
|
|
|
|
|
|
Utilities (to change the code) :
|
|
|
|
Functions available with the `discord-player` module that you can use :
|
|
|
|
```js
|
|
// Play a song in the voice channel and init the guild queue
|
|
client.player.play(voiceChannel, songName);
|
|
|
|
// Add a song to the queue
|
|
client.player.addToQueue(guildID, songName);
|
|
// Clear the queue
|
|
client.player.clearQueue(guildID);
|
|
// Get the queue
|
|
client.player.getQueue(guildID);
|
|
// Skip the current song
|
|
client.player.skip(guildID);
|
|
|
|
|
|
// Pause
|
|
client.player.pause(guildID);
|
|
// Resume
|
|
client.player.resume(guildID);
|
|
// Stop
|
|
client.player.stop(guildID);
|
|
|
|
// Check if music is playing in a guild
|
|
client.player.isPlaying(guildID);
|
|
// Get the currently playing song
|
|
client.player.nowPlaying(guildID);
|
|
|
|
|
|
// Current song will be repeated indefinitely
|
|
client.player.setRepeatMode(true);
|
|
// Current song will no longer be repeated indefinitely
|
|
client.player.setRepeatMode(false);
|
|
```
|
|
|
|
Find all the functions available on the official code [right here](https://github.com/Androz2091/discord-player).
|
|
|
|
This is used with [Discord.js](https://www.npmjs.com/package/discord.js) and [discord-player](https://www.npmjs.com/package/discord-player).
|