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