$guildDescription
$guildDescription will return the guild’s description.
Usage
$guildDescription[guildID?]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| guildID? | number | The ID of the guild. | false |
Example(s)
This will return the description of a specific guild:
1client.command({2 name: "guildDescription",3 code: `4 $guildDescription[$guildID]5 `6});