$playlistDelete
$playlistDelete
will delete a playlist.
Usage
$playlistDelete[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 delete a playlist
1client.command({2 name: 'delete',3 code: `4 $playlistDelete[My Playlist]5 `6});
This will delete a playlist
1module.exports = [{2 name: "delete",3 code: `4 $playlistDelete[My Playlist]5 `6}]