Skip to content

$guildMaxVideoChannelUsers

$guildMaxVideoChannelUsers will return the guild’s max video channel users.

Usage

$guildMaxVideoChannelUsers[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

This will return the max amount of video channel users of the current guild (if any):

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