Skip to content

$boostingSince

$boostingSince will return the starting date of someone boosting a specific guild.

Usage

$boostingSince[guildID?;userID?;format?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild of where you want to check how long someone’s been boosting.false
userID?numberThe user ID you want to check the boosting start date of.false
format?stringThe format that the date will be returned in, listed below.false
Format
ms1652643158052
dateSun May 15 2022 20:32:38 GMT+0100 (British Summer Time)

Example(s)

This will return the date when you started boosting (wont work when you’re not boosting):

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