$getGuildTemplates
$getGuildTemplates
will return all guild templates of a specific guild.
Usage
$getGuildTemplates[guildID?;option?;separator?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildID? | number | The Id of the guild you want their templates returned. | false |
option? | string | The option it will be returned as. 1. code (default) 2. name | false |
separator? | string | The separator which will separate the data returned. | false |
Example(s)
This will return all guild templates of the current guild:
1client.command({2 name: "getGuildTemplates",3 code: `4 $getGuildTemplates[$guildID;code;, ]5 `6});