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