Search code examples
javascriptdiscord.js

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


Solution

  • 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}});