$maxPlaylistSize
$maxPlaylistSize
will set or return the maximum
playlist size can be loaded.
Usage
$maxPlaylistSize[size?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
size? | number | The size of maximum playlist can be loaded | false |
Example(s)
This will set or return the maximum playlist size can be loaded
1client.command({2 name: 'maxplaylist',3 code: `4 $maxPlaylistSize // return 105 $maxPlaylistSize[10]6 `7});
This will set or return the maximum playlist size can be loaded
1module.exports = [{2 name: "maxplaylist",3 code: `4 $maxPlaylistSize // return 105 $maxPlaylistSize[10]6 `7}]