$isVideoOn
$isVideoOn checks if the given user has their video on in a voice channel.
Usage
$isVideoOn[userID?;guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | number | ID of the user who turned video on. | false |
| guildID? | number | ID of the guild you want to check if they have their video on. | false |
Example(s)
This will check if you’re currently using the video feature in a voice channel:
1client.command({2 name: "isVideoOn",3 code: `4 $isVideoOn[$authorID;$guildID]5 `6});