Skip to content

$isBoosting

$isBoosting will check if the given user is boosting the given guild.

Usage

$isBoosting[userID?;guildID?]

Parameters

FieldTypeDescriptionRequired
userID?numberUser ID to check if they’re boosting.false
guildID?numberThe guild ID of where they boosted the server.false

Example(s)

This will return false or true depending on if you boosted this server:

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