Skip to content

$removeTrack

$removeTrack will remove a specific track from the queue.

Usage

$removeTrack[position]

Parameters

FieldTypeDescriptionRequired
positionnumbertrack position in the queuetrue

Example(s)

This will remove a specific track from the queue

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