$loopMode
$loopMode
will either loop the current track, queue
or end the loop.
Usage
$loopMode[mode]
Parameters
Field | Type | Description | Required |
---|---|---|---|
mode | string |
Loop mode: song ,
queue , none
|
true |
Example(s)
This will either loop the current track, queue or end the loop
1client.command({2 name: 'loop',3 code: `4 $loopMode[song]5 `6});
This will either loop the current track, queue or end the loop
1module.exports = [{2 name: "loop",3 code: `4 $loopMode[song]5 `6}]