$createGuild
$createGuild will create a new guild with the client as owner.
Usage
$createGuild[name;icon?;returnId?]Parameters
| Field | Type | Description | Required | 
|---|---|---|---|
| name | string | The name of the guild. | true | 
| icon? | string | The icon of the guild. | false | 
| returnId? | boolean | Return the id of the newly created guild? | false | 
Example(s)
This will create a new guild with your username and avatar:
1client.command({2    name: "createGuild",3    code: `4  $createGuild[$username;$authorAvatar;true]5  `6});