Skip to content

$playlistShow

$playlistShow will return all user playlist name.

Usage

$playlistShow[userId?;page?;limit?;format?;separator?]

Parameters

FieldTypeDescriptionRequired
userID?snowflakeUser IDfalse
page?numberqueue pagefalse
limit?numbermaximum of songs to displayfalse
format?stringformat to display information about the songs (see below)false
separator?stringThe separator between songsfalse

You require Playlist setup in your manager instance.

Formatting

FieldReturnsDescription
{position} numberPlaylist position
{name}stringPlaylist name
{length}numberTrack 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
});