Skip to content

$createGuild

$createGuild will create a new guild with the client as owner.

Usage

$createGuild[name;icon?;returnId?]

Parameters

FieldTypeDescriptionRequired
namestringThe name of the guild.true
icon?stringThe icon of the guild.false
returnId?booleanReturn the id of the newly created guild?false

Example(s)

This will create a new guild with your username and avatar:

1
client.command({
2
name: "createGuild",
3
code: `
4
$createGuild[$username;$authorAvatar;true]
5
`
6
});