Skip to content

$image

$image will add an image to an embed.

Usage

$image[index?;URL]

Parameters

FieldTypeDescriptionRequired
index?numberEmbed indexfalse
URLstringEmbed Image URL. (bottom image)true

Example(s)

This will create an embed with an image, title and footer:

1
client.command({
2
name: "embed",
3
code: `
4
$title[Hello!]
5
$image[$userAvatar]
6
$footer[Hello again!;$userAvatar]
7
`
8
});