$hasGuildTemplate
$hasGuildTemplate will check if the given guild has a guild template created.
Usage
$hasGuildTemplate[guildId?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildId? | number | The guild Id to check for. | false |
Example(s)
This will check if the given guild has a guild template created.
1client.command({2 name: "hasGuildTemplate",3 code: `4 $hasGuildTemplate[$guildId]5 `6});