Skip to content

$moveTrack

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

Usage

$moveTrack[from;to]

Parameters

Field Type Description Required
from number Old track position in the queue true
to number New track position in the queue true

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
});