$guildMaxStageVideoChannelUsers
$guildMaxStageVideoChannelUsers
will return the guild’s max video channel users.
Usage
$guildMaxStageVideoChannelUsers[guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | number | The ID of the guild. | false |
Example(s)
This will return the max amount of stage video channel users of the current guild (if any):
1client.command({2 name: "guildMaxStageVideoChannelUsers",3 code: `4 $guildMaxStageVideoChannelUsers[$guildID]5 `6});