Skip to content

$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

1
client.command({
2
name: 'playlistshow',
3
code: `
4
$playlistShow[$authorId;1;10;{position}. {name} | {length} Song(s)]
5
`
6
});