$createGuildTemplate
$createGuildTemplate will create a new guild template.
Usage
$createGuildTemplate[guildId;name;description;returnCode?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildId | number | The id of the guild. | true |
| name | string | The name of the template. | true |
| description | string | The description of the template. | true |
| returnCode? | boolean | Return the template code? | false |
Example(s)
This will create a new guild template.
1client.command({2 name: "createGuildTemplate",3 code: `4 $createGuildTemplate[$guildId;Guild Template;This is a template!;true]5 `6});