Skip to content

$playlistCount

$playlistCount will return the playlist count the user has.

Usage

$playlistCount[userID?]

Parameters

FieldTypeDescriptionRequired
userID?snowflakeUser IDfalse

You require Playlist setup in your manager instance.

Example(s)

This will return the playlist count the user has

1
client.command({
2
name: 'playlistcount',
3
code: `
4
$playlistCount
5
`
6
});