You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pydis_site/apps/content/resources/guides/python-guides/discord-embed-limits.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,11 +11,11 @@ If you plan on using embed responses for your bot you should know the limits of
11
11
- A **field name/title** is limited to **256 character** and the **value of the field** is limited to **1024 characters**
12
12
- Embed **footer** is limited to **2048 characters**
13
13
- Embed **author name** is limited to **256 characters**
14
-
- The **total of characters** allowed in an embed is **6000**
14
+
- The **total characters** of all embeds in a single message is limited to **6000**
15
+
- A message is limited to **10 embeds**
15
16
16
17
Now if you need to get over this limit (for example for a help command), you would need to use pagination.
17
18
There are several ways to do that:
18
19
19
-
- A library called **[disputils](https://pypi.org/project/disputils)**
20
20
- An experimental library made by the discord.py developer called **[discord-ext-menus](https://github.com/Rapptz/discord-ext-menus)**
21
21
- Make your own setup using **[wait_for()](https://discordpy.readthedocs.io/en/stable/ext/commands/api.html#discord.ext.commands.Bot.wait_for)** and wait for a reaction to be added
0 commit comments