Skip to content

$guildVerificationLevel

$guildVerificationLevel will return the guild’s verification level.

Usage

$guildVerificationLevel[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false
Type
0None
1Low
2Medium
3High
4Highest

Example(s)

This will return the guild’s verification Level:

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