$playlistMaxPlaylist
$playlistMaxPlaylist will return or set the maximum playlist user has.
Usage
$playlistMaxPlaylist[value?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| value | number | No description provided | false |
You require Playlist setup in your manager instance.
Example(s)
This will return or set the maximum playlist user has
1client.command({2 name: 'maxplaylist',3 code: `4 $playlistMaxPlaylist // return 55 $playlistMaxSongs[5]6 `7});This will return or set the maximum playlist user has
1module.exports = [{2 name: 'maxplaylist',3 code: `4 $playlistMaxPlaylist // return 55 $playlistMaxPlaylist[5]6 `7}]