$skipTo
$skipTo will skip to a specific song in the queue.
Usage
$skipTo[index]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| index | number | track position | true |
Example(s)
This will skip to the third song in the queue:
1client.command({2 name: "skipTo",3 code: `4 $skipTo[3]5 `6});