$playlistClear
$playlistClear will clear a playlist.
Usage
$playlistClear[name;userID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| name | string | Playlist name | true |
| userID? | snowflake | User ID | false |
You require Playlist setup in your manager instance.
Example(s)
This will clear a playlist
1client.command({2 name: 'clear',3 code: `4 $playlistClear[My Playlist]5 `6});This will clear a playlist
1module.exports = [{2 name: "clear",3 code: `4 $playlistClear[My Playlist]5 `6}]