Skip to content
Discussion options

You must be logged in to vote

Discord does not allow multiple images per embeds. Likewise, Discord would not allow you to change their source code to allow multiple images per embeds using JS or JSX.

There is a caveat: webhooks can send multiple embeds and the client concatenates multiple embed images into a single embed under certain conditions.

For example, the following code given a webhook would allow you to send up to 4 images into a singular UI embed using 4 embed objects:

main_embed = discord.Embed(title='Hello', url='http://example.com')
main_embed.set_image(url='http://image.com/1.png')

embeds = [
    main_embed,
    # These need to have the same URL
    discord.Embed(url='http://example.com').set_image(url='…

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
1 reply
@kslay27
Comment options

Comment options

You must be logged in to vote
1 reply
@kslay27
Comment options

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
3 participants