Skip to content

$findGuild

$findGuild will attempt to find a guild which is matching with the given query.

Usage

$findGuild[guildResolver]

Parameters

FieldTypeDescriptionRequired
guildResolverstringQuery which is used to find the guild.true

Example(s)

This will search for a guild:

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