#How send multiply embeds in one message?
31 messages · Page 1 of 1 (latest)
Hello everyone
what is embed1, embed2 and embed3?
because that is how you send multiple embeds, so my only question are the embeds themselves
const embeds1 = {
title: 'test',
description: 'test'
image: { url: 'https://discord.com/assets/b6a3073e1281d1ef79d48ef130c183b2.svg' }
};
const embeds2 = {
title: 'test',
description: 'test'
image: { url: 'https://discord.com/assets/b6a3073e1281d1ef79d48ef130c183b2.svg' }
};
const embeds3 = {
title: 'test',
description: 'test'
image: { url: 'https://discord.com/assets/b6a3073e1281d1ef79d48ef130c183b2.svg' }
};
hmm, alright, and no errors?
so it sends a message?
I tried different methods, but it didn't work for me. I'm probably doing something wrong.
and you're sure that is the code that is being run?
yes
I decided to send several messages at once. Maybe tomorrow with a fresh mind I'll figure out where I made a mistake. thanks.
alr 👍
Have you tried just putting in the embeds in the embed field like [embeds1, embeds2, embeds3] without the variable?
Not sure why it would make a difference but its worth a shot.
Actually
It looks like you aren't using the EmbedBuilder 🤔
Try making your embeds with the EmbedBuilder and that should hopefully resolve the problem
why, embed builder turns into json when sent to the api anyway, the embeds he has are valid
if they werent valid embeds he would get an error when sending the message
Its worth trying just to see if it makes a difference 🤷♂️
afaik discord won't display 100% same embeds, your embeds are 100% same for now
try to change something inside this embeds to make them different
@fallow echo ok tnx