$playlistShow
$playlistShow
will return all user playlist name.
Usage
$playlistShow[userId?;page?;limit?;format?;separator?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
userID? | snowflake | User ID | false |
page? | number | queue page | false |
limit? | number | maximum of songs to display | false |
format? | string | format to display information about the songs (see below) | false |
separator? | string | The separator between songs | false |
You require
Playlist
setup in your manager instance.
Formatting
Field | Returns | Description |
---|---|---|
{position} |
number | Playlist position |
{name} |
string | Playlist name |
{length} |
number | Track inside the playlist |
Example(s)
This will return all user playlist in the
{position}. {name} | {length} Song(s)
format
1client.command({2 name: 'playlistshow',3 code: `4 $playlistShow[$authorId;1;10;{position}. {name} | {length} Song(s)]5 `6});
This will return all user playlist in the
{position}. {name} | {length} Song(s)
format
1module.exports = [2 {3 name: 'playlistshow',4 code: `5 $playlistShow[$authorId;1;10;{position}. {name} | {length} Song(s)]6 `7 }8];