$playlistCount
$playlistCount will return the playlist count the user has.
Usage
$playlistCount[userID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | snowflake | User ID | false |
You require Playlist setup in your manager instance.
Example(s)
This will return the playlist count the user has
1client.command({2 name: 'playlistcount',3 code: `4 $playlistCount5 `6});This will return the playlist count the user has
1module.exports = [{2 name: 'playliscount',3 code: `4 $playlistCount5 `6}]