$guildBoostCount
$guildBoostCount will return the guild’s boost count.
Usage
$guildBoostCount[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
Example(s)
This will return the amount of boosts a specific guild has:
1client.command({2 name: "guildBoostCount",3 code: `4 $guildBoostCount[$guildID]5 `6});