Skip to content

$userCustomStatus

$userCustomStatus will return a user’s custom status.

Usage

$userCustomStatus[guildID?;userID?;option?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe role ID.false
userID?numberThe user ID.false
option?stringWhich part of the status will be returned
1. state (default) - returns the status text
2. emoji - returns the emoji
false

Example(s)

This will return your status text if you have any:

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