$isStreaming
$isStreaming will check if one user is streaming in a voice channel.
Usage
$isStreaming[userID?;guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | number | ID of the user you want to check if they’re streaming. | false |
| guildID? | number | ID of the channel where they’re streaming in. | false |
Example(s)
This will return either true or false depending on if you’re streaming (voice channel) or not:
1client.command({2 name: "isStreaming",3 code: `4 $isStreaming[$authorID;$guildID]5 `6});