Skip to content

$setGuildBanner

$setGuildBanner will change a Guild’s banner.

Usage

$setGuildBanner[guildID?;URL;reason?]

Parameters

FieldTypeDescriptionRequired
guildID?numberGuild ID of the guild.false
URLstringNew guild banner.true
reason?stringReason that will be displayed in the guild’s audit logs.false

Example(s)

This will change the banner of the current guild:

1
client.command({
2
name: "setGuildBanner",
3
code: `
4
$setGuildBanner[$guildID;https://cdn.discordapp.com/banners/773352845738115102/b2b27d0915a838e8b4f68b180d1901ad.webp;Example!]
5
`
6
});