Skip to content

$setClientBanner

$setClientBanner will set the user banner of the client.

Usage

$setClientBanner[url]

Parameters

FieldTypeDescriptionRequired
urlstringThe URL of the banner (supports base64).true

Example(s)

This will attempt to set the avatar of the client to your user banner:

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