Skip to content

$getAvatarDecoration

$getAvatarDecoration will return an static image of the provided users’ avatar decoration.

Usage

$getAvatarDecoration[userID?;extension?;size?]

Parameters

FieldTypeDescriptionRequired
userID?numberThe user ID you want to check.false
extension?stringThe file extension of the decoration. (default: png)false
size?numberThe decoration image size. (default: 4096)false

Example(s)

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