Skip to content

$guildBanner

$guildBanner will return the guild banner of a given guild.

Usage

$guildBanner[guildID?;size?;dynamic?;extension?]

Parameters

FieldTypeDescriptionRequired
guildID?numberThe ID of the guild.false
size?numberThe size of the image.false
dynamic?boolean1. true (default)
2. false
false
extension?stringImage format.false

Example(s)

This will return your guild banner (if unlocked and using):

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