Skip to content

$setGuildName

$setGuildName will change a guilds’ name.

Usage

$setGuildName[name;guildID?]

Parameters

FieldTypeDescriptionRequired
namestringThe new guild name.true
guildID?numberThe ID of the guild whose name will be modified.false

Example(s)

This will change guild’s name you’re executing the command in to your username:

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