$isBotVerified
$isBotVerified checks if the given bot is verified by Discord.
Usage
$isBotVerified[clientId?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| clientId? | number | The ID of the bot you want to check its verification status. | false |
Example(s)
This will check if your bot is verified and return either true or false:
1client.command({2 name: "isBotVerified",3 code: `4 $isBotVerified[$clientId]5 `6});