$autoPlay
$autoPlay
will autoplay songs
Usage
$autoPlay[enable?;type?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
enable? | boolean |
true to enable,
false to disable
|
false |
type? | string |
Source type: youtube ,
soundcloud ,
applemusic ,
deezer , spotify ,
etc.
|
false |
Example(s)
This will automatically add songs to your queue
1client.command({2 name: 'autoplay',3 code: `4 $autoplay // return true5
6 autoplay enabled!7 $autoPlay[true;youtube]8 `9});
This will automatically add songs to your queue
1module.exports = [{2 name: "autoplay",3 code: `4 $autoplay // return true5
6 autoplay enabled!7 $autoPlay[true;youtube]8 `9}]