Skip to content

$authorBanner

$authorBanner will return the banner of the command author.

Usage

$authorBanner[size?;dynamic?;extension?]

Parameters

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

Example(s)

This will return your banner (if any):

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