$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
1client.command({2 name: 'movetrack',3 code: `4 $moveTrack[1;2]5 `6});
This will move a track to a new position in the queue
1module.exports = [{2 name: "movetrack",3 code: `4 $moveTrack[1;2]5 `6}]