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