Embed Indexes

If you look around BDFD Embed Functions. You’ll see a parameter called Index. This parameter is used to create multi-embeds.

Limit

Discord supports creating upto a maximum of 10 embeds per bot message.

Creating Multi-Embeds

By default, the Index is set to 1 (the first embed). To create a second embed, you have to write 2 in Index parameter and so on. You can specify any number between 1 to 10 in index parameter.

Limit

Total character length of the overall response should not exceed more than 6,000. If it does, the bot won’t send the message.

Remember!

By default, the parameter Index is set to 1 (The first embed).
$title[Title] == $title[Title;1]
$title[Title] == $title[Title;2]
$title[Title] == $title[Title;1] + $title[Title;2]

Example

$nomention

$color[#673ab7]
$title[Title 1;1]
$description[Hello user!;1]
$footer[I love BDFD]

$color[#673ab7;2]
$title[Embed 2;2]
$description[hello embed!;2]

$color[#673ab7;3]
$title[Embed 3;3]
$description[Посхалка;3]
$addField[First Field;Content;yes;3]
$addField[Second Field;Cat or dog?;yes;3]
!example Hello user! I love BDFD Hello embed! Посхалка Content Cat or dog?

What is this?

All Embed Functions

  • With Index parameter:
  1. $color[] - Sets the embed border color.
  2. $author[] - Adds author text to an embed.
  3. $authorIcon[] - Adds an icon to the author section in the embed.
  4. $authorURL[] - Adds a hyperlink to the author text.
  5. $title[] - Adds an embedded title to bot’s response message.
  6. $embeddedURL[] - Sets the title to be a hyperlink.
  7. $thumbnail[] - Adds an embedded thumbnail to the bot’s response message.
  8. $description[] - Adds a description to an embed.
  9. $addField[] - Adds a field to an embed.
  10. $image[] - Adds an image to the embed.
  11. $footer[] - Sets the embed footer text.
  12. $footerIcon[] - Sets the embed footer icon.
  13. $addTimestamp - Adds a timestamp to an embed.
  14. $addTimestamp[] - Adds a timestamp to a specific embed.
  • Without Index parameter (You can’t separate embeds):
  1. $sendEmbedMessage[] - Sends an embed message to the provided channel.
  2. $editMessage[] - Edits one of the bot’s messages.