$discriminator
Returns the discriminator (last four digits of their tag) of the given user.
Usage
$discriminator or $discriminator[userID]Param
Description
Type
Required
Examples
bot.commands.add({
type: "basicCommand",
name: "example",
code: `$discriminator` //Returns the author's discriminator
})bot.commands.add({
type: "basicCommand",
name: "example",
code: `$discriminator[608358453580136499]` //Returns Leref's discriminator (0001)
})Last updated
Was this helpful?