Skip to content

$authorAvatar

$authorAvatar will return the profile picture of the command author.

Usage

$authorAvatar[size?;dynamic?;format?]

Parameters

FieldTypeDescriptionRequired
size?string, numberThe size of the imagefalse
dynamic?boolean1. true (default)
2. false
false
format?stringThe format of the returned image.false

Example(s)

This will return your profile picture:

1
client.command({
2
name: "authorAvatar",
3
code: `
4
$authorAvatar[2048;true;webp]
5
`
6
});