Skip to content

$playlistPlay

$playlistPlay will load and play the playlist.

Usage

$playlistPlay[name;index?;userID?]

Parameters

FieldTypeDescriptionRequired
namestringPlaylist nametrue
index?numberTrack position in the playlistfalse
userID?snowflakeUser IDfalse

You require Playlist setup in your manager instance.

Example(s)

This will load and play the playlist

1
client.command({
2
name: "playlistplay",
3
code: `
4
$playlistPlay[My Playlist;1]
5
`
6
});