Skip to content

$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

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