Skip to content

$guildMaxStageVideoChannelUsers

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

Usage

$guildMaxStageVideoChannelUsers[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

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

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