$seek
$seek will seek to a specified position of a song.
Usage
$seek[time]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| time | number | song position in ms | true |
Example(s)
This will seek to second 10 of the song>
1client.command({2 name: "seek",3 code: `4 $seek[10000]5 `6});