Skip to content

$guildBoostLevel

$guildBoostLevel will return the guild’s boost level.

Usage

$guildBoostLevel[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

This will return the boost level of a specific guild:

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