$playerStatus
$playerStatus will return playing, stopped, destroyed or paused depends on the current player status.
Usage
$playerStatusExample(s)
This will return playing, stopped, destroyed or paused depends on the current player status
1client.command({2 name: 'playerstatus',3 code: `4 $playerStatus5 `6});This will return playing, stopped, destroyed or paused depends on the current player status
1module.exports = [{2 name: 'playerstatus',3 code: `4 $playerStatus5 `6}]