Skip to content

$guildSplash

$guildSplash will return a guild’s invite background (if unlocked).

Usage

$guildSplash[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 guild’s invite background (if unlocked):

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