简体   繁体   中英

Discord.js V14 how to edit an embed already sent?

Im doing a fake giveaway system and i need to edit the "giveaway started" embed message with "giveaway ended" embed message example

I couldn t find a solution for it

You can store your message in a variable and then edit it when you need it.

const MSG = await message.channel.send({embeds: [yourEmbed]});

// Create a new Embed with which you're going to edit the message

const basicEmbed = new EmbedBuilder()
.setDescription("Example")

// Then edit your original message

MSG.edit({embeds: [basicEmbed}});

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM