Skip to content

$memberAvatar

$memberAvatar will return the profile picture of a guild member.

Usage

$memberAvatar[guildID?;userID?;size?;dynamic?;format?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false
userID?numberThe ID of the user.false
size?numberThe size of the image.false
dynamic?boolean1. true (default)
2. false
false
format?stringImage format.false

Example(s)

This will return your profile picture:

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