Skip to content

$userBanner

$userBanner will return the profile banner of a specific user.

Usage

$userBanner[userID?;size?;dynamic?;extension?]

Parameters

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

Example(s)

This will return your profile banner:

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