Skip to content

$getGuildTemplate

$getGuildTemplate will return data about a given guild template.

Usage

$getGuildTemplate[template;property]

Parameters

FieldTypeDescriptionRequired
templatestringThe Id of the template you want the data returned of.true
propertystringThe property to be returned.true

Example(s)

This will return the data about a given guild template:

1
client.command({
2
name: "getGuildTemplate",
3
code: `
4
$getGuildTemplate[guild-template-code;name]
5
`
6
});