Skip to content

$guildBoostCount

$guildBoostCount will return the guild’s boost count.

Usage

$guildBoostCount[guildID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false

Example(s)

This will return the amount of boosts a specific guild has:

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