Skip to content

$playerStatus

$playerStatus will return playing, stopped, destroyed or paused depends on the current player status.

Usage

$playerStatus

Example(s)

This will return playing, stopped, destroyed or paused depends on the current player status

1
client.command({
2
name: 'playerstatus',
3
code: `
4
$playerStatus
5
`
6
});