$image
$image
will add an image to an embed.
Usage
$image[index?;URL]
Parameters
Field | Type | Description | Required |
---|---|---|---|
index? | number | Embed index | false |
URL | string | Embed Image URL. (bottom image) | true |
Example(s)
This will create an embed with an image, title and footer:
1client.command({2 name: "embed",3 code: `4 $title[Hello!]5 $image[$userAvatar]6 $footer[Hello again!;$userAvatar]7 `8});