Skip to content

$isGuildVerified

$isGuildVerified checks if the given guild is verified by Discord.

Usage

$isGuildVerified[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild where you want to check its verification status of.false

Example(s)

This will check if your server is verified and return either true or false:

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