Skip to content

$guildExists

$guildExists will check if the given guild exists.

Usage

$guildExists[guildId]

Parameters

FieldTypeDescriptionRequired
guildIdnumberGuild ID.true

Example(s)

This will return true your guild exists:

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