Skip to content

$hasGuildTemplate

$hasGuildTemplate will check if the given guild has a guild template created.

Usage

$hasGuildTemplate[guildId?]

Parameters

FieldTypeDescriptionRequired
guildId?numberThe guild Id to check for.false

Example(s)

This will check if the given guild has a guild template created.

1
client.command({
2
name: "hasGuildTemplate",
3
code: `
4
$hasGuildTemplate[$guildId]
5
`
6
});