$guildExists
$guildExists will check if the given guild exists.
Usage
$guildExists[guildId]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildId | number | Guild ID. | true |
Example(s)
This will return true your guild exists:
1client.command({2 name: "guildExists",3 code: `4 $guildExists[$guildID]5 `6});