$memberPremiumSince
$memberPremiumSince will return the timestamp of when the member started boosting the guild.
Usage
$memberPremiumSince[userID?;guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| userID? | number | The user ID. | false |
| guildID? | number | The guild ID. | false |
Example(s)
This will return the timestamp of when you started boosting the guild:
1client.command({2 name: "memberPremiumSince",3 code: `$memberPremiumSince[$authorID;$guildID]`4});