Skip to content

$isVideoOn

$isVideoOn checks if the given user has their video on in a voice channel.

Usage

$isVideoOn[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userID?numberID of the user who turned video on.false
guildID?numberID 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:

1
client.command({
2
name: "isVideoOn",
3
code: `
4
$isVideoOn[$authorID;$guildID]
5
`
6
});