Skip to content

$memberDisplayColor

$memberDisplayColor will return the display color of a given user.

Usage

$memberDisplayColor[guildID?;userID?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false
userID?numberThe ID of the user.false

Example(s)

This will return your display color:

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