discord.js-music-hiico
Version:
Edit of discord.js-music-v11
31 lines (21 loc) • 946 B
Markdown
# Discord.js Music Plugin
__Introduction :__
So, this package is an Edit of discord.js-music-hiico that wa basically created for my bot, Lucy. But when I saw that mostly 500 users downloaded my package in one day... waw :D
__Lucy (my Bot) :__
Lucy's Discord : http://discord.hiico.fr/
Invite Lucy to your Discord : http://lucy.hiico.fr/
__The commands :__
* `_play (url/search string)` : Play a video/music. It can take a URL from various services (YouTube, Vimeo, YouKu, etc). You can also search using a string.
* `_skip (nothing/number)` : Skip some number of songs. Will skip 1 song if a number is not specified.
* `_volume` : Adjust the playback volume between 1 and 200 (requires music manager)
To use this plugin :
```javascript
const Discord = require('discord.js');
const music = require('discord.js-music-hiico');
const client = new Discord.Client();
/*
Your codes here--
*/
music(client);
client.login(TokenHere);
```