Skip to content

$skipTo

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

Usage

$skipTo[position]

Parameters

FieldTypeDescriptionRequired
positionnumberSong position in the queuetrue

Example(s)

This will skip to a specific song in the queue

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