Skip to content

$setGuildDiscoverySplash

$setGuildDiscoverySplash will change a Guild’s discovery splash banner.

Usage

$setGuildDiscoverySplash[guildID?;URL;reason?]

Parameters

FieldTypeDescriptionRequired
guildID?numberGuild ID of the guild.false
URLstringNew discovery splash 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: "setGuildDiscoverySplash",
3
code: `
4
$setGuildDiscoverySplash[$guildID;https://cdn.discordapp.com/banners/773352845738115102/b2b27d0915a838e8b4f68b180d1901ad.webp;Example!]
5
`
6
});