$guildBanner
$guildBanner will return the guild banner of a given guild.
Usage
$guildBanner[guildID?;size?;dynamic?;extension?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
| size? | number | The size of the image. | false |
| dynamic? | boolean | 1. true (default) 2. false | false |
| extension? | string | Image format. | false |
Example(s)
This will return your guild banner (if unlocked and using):
1client.command({2 name: "guildBanner",3 code: `4 $guildBanner[$guildID]5 `6});