$isBoosting
$isBoosting will check if the given user is boosting the given guild.
Usage
$isBoosting[userID?;guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | number | User ID to check if they’re boosting. | false |
| guildID? | number | The guild ID of where they boosted the server. | false |
Example(s)
This will return false or true depending on if you boosted this server:
1client.command({2 name: "isBoosting",3 code: `4 $isBoosting[$authorID;$guildID]5 `6});