Skip to content

$moveTrack

$moveTrack will move a track to a new position in the queue.

Usage

$moveTrack[from;to]

Parameters

FieldTypeDescriptionRequired
fromnumberOld track position in the queuetrue
tonumberNew track position in the queuetrue

Example(s)

This will move a track to a new position in the queue

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