$setClientAvatar
$setClientAvatar
will change the clients’ avatar.
Usage
$setClientAvatar[URL]
Parameters
Field | Type | Description | Required |
---|---|---|---|
URL | string | The new avatar URL. | true |
Example(s)
This will change the client’s avatar to the command author’s user avatar:
1client.command({2 name: "setClientAvatar",3 code: `4 $setClientAvatar[$userAvatar[$authorID]]`5});