Skip to content

$skipTo

$skipTo will skip to a specific song in the queue.

Usage

$skipTo[index]

Parameters

FieldTypeDescriptionRequired
indexnumbertrack positiontrue

Example(s)

This will skip to the third song in the queue:

1
client.command({
2
name: "skipTo",
3
code: `
4
$skipTo[3]
5
`
6
});