$getGuildBoosters
$getGuildBoosters will fetch and return all the boosters of the specified guild.
Usage
$getGuildBoosters[guildID;option?;sep?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID | number | The ID of the guild. | true |
| option? | string | The type of the function response. | false |
| sep? | string | The separator between each booster. | false |
Types
| Type | Description |
|---|---|
| {mention} | Mentions boosters. |
| {id} | Returns the id’s of boosters. |
| {nickname} | Returns the nickname’s of boosters. |
| {username} | Returns the username’s of boosters. |
| {premiumSinceTimestamp} | Returns the timestamp of boost time. |
Example(s)
1client.command({2 name: "getGuildBoosters",3 code: `4 $getGuildBoosters[$guildID;{username} - {id};, ]5 `6});1module.exports = {2 name: "getGuildBoosters",3 code: `4 $getGuildBoosters[$guildID;{username} - {id};, ]5 `6 };