Skip to content

$createGuildTemplate

$createGuildTemplate will create a new guild template.

Usage

$createGuildTemplate[guildId;name;description;returnCode?]

Parameters

FieldTypeDescriptionRequired
guildIdnumberThe id of the guild.true
namestringThe name of the template.true
descriptionstringThe description of the template.true
returnCode?booleanReturn the template code?false

Example(s)

This will create a new guild template.

1
client.command({
2
name: "createGuildTemplate",
3
code: `
4
$createGuildTemplate[$guildId;Guild Template;This is a template!;true]
5
`
6
});