Skip to content

$seek

$seek will seek to a specified position of a song.

Usage

$seek[time]

Parameters

FieldTypeDescriptionRequired
timenumbersong position in mstrue

Example(s)

This will seek to second 10 of the song>

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