$playlistPlay
$playlistPlay
will load and play the playlist.
Usage
$playlistPlay[name;index?;userID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
name | string | Playlist name | true |
index? | number | Track position in the playlist | false |
userID? | snowflake | User ID | false |
You require
Playlist
setup in your manager instance.
Example(s)
This will load and play the playlist
1client.command({2 name: 'playlistplay',3 code: `4 $playlistPlay[My Playlist;1]5 `6});
This will load and play the playlist
1module.exports = [{2 name: "playlistplay",3 code: `4 $playlistPlay[My Playlist;1]5 `6}]