add skip to readme

This commit is contained in:
Androz2091 2020-01-12 17:30:05 +01:00
parent 76d7c83a4d
commit 7feff3a812

View file

@ -61,6 +61,8 @@ client.player.addToQueue(guildID, songName);
client.player.clearQueue(guildID); client.player.clearQueue(guildID);
// Get the queue // Get the queue
client.player.getQueue(guildID); client.player.getQueue(guildID);
// Skip the current song
client.player.skip(guildID);
// Pause // Pause
client.player.pause(guildID); client.player.pause(guildID);
// Resume // Resume
@ -114,7 +116,7 @@ client.on('message', async (message) => {
### Pause ### Pause
To pause the current song, use the `client.manager.pause()` function. To pause the current song, use the `client.player.pause()` function.
**Usage:** **Usage:**
@ -140,7 +142,7 @@ client.on('message', async (message) => {
### Resume ### Resume
To resume the current song, use the `client.manager.resume()` function. To resume the current song, use the `client.player.resume()` function.
**Usage:** **Usage:**
@ -166,7 +168,7 @@ client.on('message', async (message) => {
### Stop ### Stop
To stop the music, use the `client.manager.stop()` function. To stop the music, use the `client.player.stop()` function.
**Usage:** **Usage:**
@ -192,7 +194,7 @@ client.on('message', (message) => {
### SetVolume ### SetVolume
To update the volume, use the `client.manager.setVolume()` function. To update the volume, use the `client.player.setVolume()` function.
**Usage:** **Usage:**
@ -317,6 +319,32 @@ client.on('message', (message) => {
}); });
``` ```
### Skip
To skip the current song, use the `client.player.skip()` function.
**Usage:**
```js
client.player.skip(guildID);
```
**Example**:
```js
client.on('message', async (message) => {
const args = message.content.slice(settings.prefix.length).trim().split(/ +/g);
const command = args.shift().toLowerCase();
if(command === 'skip'){
let song = await client.player.skip(message.guild.id);
message.channel.send(`${song} skipped!`);
}
});
```
## Info Messages ## Info Messages
You can send a message when the queue ends or when the song changes: You can send a message when the queue ends or when the song changes: