$memberDisplayColor
$memberDisplayColor will return the display color of a given user.
Usage
$memberDisplayColor[guildID?;userID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
| userID? | number | The ID of the user. | false |
Example(s)
This will return your display color:
1client.command({2 name: "memberDisplayColor",3 code: `4 $memberDisplayColor[$guildID;$authorID]5 `6});