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