Skip to content

$setGuildIcon

$setGuildIcon will change a guilds’ icon.

Usage

$setGuildIcon[URL;guildID?]

Parameters

FieldTypeDescriptionRequired
URLstringURL of the new guild Icon.true
guildID?numberThe guild ID of where to set the guild Icon.false

Example(s)

This will change guild’s icon you’re executing the command in to your user avatar:

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