$isGuildVerified
$isGuildVerified
checks if the given guild is verified by Discord.
Usage
$isGuildVerified[guildID?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | number | The 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
:
1client.command({2 name: "isGuildVerified",3 code: `4 $isGuildVerified[$guildID]5 `6});