$removeTrack
$removeTrack
will remove a specific track from the
queue.
Usage
$removeTrack[position]
Parameters
Field | Type | Description | Required |
---|---|---|---|
position | number | track position in the queue | true |
Example(s)
This will remove a specific track from the queue
1client.command({2 name: 'remove',3 code: `4 $removeTrack[1]5 `6});
This will remove a specific track from the queue
1module.exports = [{2 name: "remove",3 code: `4 $removeTrack[1]5 `6}]