Skip to content

$guildIcon

$guildIcon will return the guild’s icon.

Usage

$guildIcon[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 the icon of the guild:

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