Skip to content

$footer

$footer will add a footer to an embed.

Usage

$footer[index?;content;iconURL?]

Parameters

FieldTypeDescriptionRequired
index?numberEmbed index.false
contentstring, numberContent of the footer text.true
iconURL?stringFooter Icon (bottom left image).false

Example(s)

This will create an embed with a footer and title:

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