Skip to content

$isPlaylistExists

$isPlaylistExists will return either true or false depending if the playlist exists or not.

Usage

$isPlaylistExists[name;userID?]

Parameters

FieldTypeDescriptionRequired
namestringPlaylist nametrue
userID?snowflakeUser IDfalse

You require Playlist setup in your manager instance.

Example(s)

This will return either true or false depending if the playlist exists or not

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