$setVoiceStatus
$setVoiceStatus will set voice status to the specified voice channel.
Usage
$setVoiceStatus[channelID;voiceStatus]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| channelID | number | The ID of the voice channel. | true | 
| voiceStatus | string | The voice status you want to set. | true | 
Example(s)
1client.command({2    name: "setVoiceStatus",3    code: `4  $setVoiceStatus[1182613173220675617;Voice status text]5  $comment[Example ID value of a voice channel]6  `7});