Embed Builder
This plugin allows you to fully customize Discord embed messages using simple YAML configuration files. Here is a complete guide on what you can edit and how to do it.
✏️ Available Embed Options
title
The main title of the embed.
description
The main text. Use for line breaks.
color
Embed color in HEX format (example: #00FFFF
).
url
Makes the title clickable, linking to the specified URL.
timestamp
If true
, adds the current timestamp.
author.name
Displays an author name at the top of the embed.
author.url
(Optional) URL linked to the author name.
author.icon_url
(Optional) Icon shown next to the author name.
thumbnail
Small image displayed on the right side.
image
Large image displayed under the description.
footer.text
Footer text displayed at the bottom.
footer.icon_url
(Optional) Icon next to the footer text.
fields
Adds multiple custom name/value fields.
🔹 How to Use Author, Footer, and Fields
Author example:
author.name
is required if you want to show an author.url
andicon_url
are optional.
Footer example:
footer.text
is required for a footer to appear.icon_url
is optional.
Fields example (optional):
name
: Title of the field.value
: Text inside the field.inline
: Whether the field should be shown next to others (true
) or on a new line (false
).
🎨 Notes and Tips
Color must start with
#
, otherwise the embed will use a default color.Line breaks inside description: use
\n
.If a field or option is missing, it will simply not be shown — no errors.
Always check that URLs and image links are valid.
✅ Minimal Working Example
Last updated