$playlistMaxSongs
$playlistMaxSongs
will return or set the maximum
tracks length in the playlist.
Usage
$playlistMaxSongs[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 tracks length in the playlist
1client.command({2 name: 'maxsongs',3 code: `4 $playlistMaxSongs // return 205 $playlistMaxSongs[20]6 `7});
This will return or set the maximum tracks length in the playlist
1module.exports = [{2 name: 'maxsongs',3 code: `4 $playlistMaxSongs // return 205 $playlistMaxSongs[20]6 `7}]