$authorBanner
$authorBanner
will return the banner of the command author.
Usage
$authorBanner[size?;dynamic?;extension?]
Parameters
Field | Type | Description | Required |
---|---|---|---|
size? | string, number | The size of the image | false |
dynamic? | boolean | 1. true (default) 2. false | false |
extension? | string | The format of the returned image. | false |
Example(s)
This will return your banner (if any):
1client.command({2 name: "authorBanner",3 code: `4 $authorBanner[2048;true;webp]5 `6});