$userCustomStatus
$userCustomStatus will return a user’s custom status.
Usage
$userCustomStatus[guildID?;userID?;option?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The guild ID. | false |
| userID? | number | The user ID. | false |
| option? | string | Which 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:
1client.command({2 name: "userCustomStatus",3 code: `4 $userCustomStatus[$guildID;$authorID;state]5 `6});