Skip to content

$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

1
client.command({
2
name: 'autoplay',
3
code: `
4
$autoplay // return true
5
6
autoplay enabled!
7
$autoPlay[true;youtube]
8
`
9
});