$guildVerificationLevel
$guildVerificationLevel will return the guild’s verification level.
Usage
$guildVerificationLevel[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
| Type | |
|---|---|
| 0 | None |
| 1 | Low |
| 2 | Medium |
| 3 | High |
| 4 | Highest |
Example(s)
This will return the guild’s verification Level:
1client.command({2 name: "guildVerificationLevel",3 code: `4 $guildVerificationLevel[$guildID]5 `6});