$deleteGuild
$deleteGuild
will delete a given guild.
Usage
$deleteGuild[guildId]
Parameters
Field | Type | Description | Required |
---|---|---|---|
guildId | number | The id of the guild. | true |
Example(s)
This will attempt to delete the current guild:
1client.command({2 name: "deleteGuild",3 code: `4 $deleteGuild[$guildId]5 `6});