$setClientBanner
$setClientBanner
will set the banner of the client.
Usage
$setClientBanner[url]
Parameters
Field | Type | Description | Required |
---|---|---|---|
url | string | The URL of the banner (supports base64). | true |
Example(s)
This will attempt to set the avatar of the client to your user banner:
1client.command({2 name: "setClientBanner",3 code: `4 $setClientBanner[$authorBanner]5 `6});