$description
$description is used for embeds to add an description field.
Usage
$description[index?;description]Parameters
| Field | Type | Description | Required |
|---|---|---|---|
| index? | number | The embed index. | false |
| description | string | The content of the embeds description. | true |
Example(s)
This will send an embed with the content aoi.js is great!:
1client.command({2 name: "embed",3 code: `4 $description[aoi.js is great!]5 `6});