Skip to content
Advertisement

How can I delete a message after sending it?

I have a code that sends a message when a member joins the guild and I want to shortly delete it afterwards.

My code:

JavaScript

I tried embed.delete or just the classic msg.delete but it doesn’t work as I can/don’t know how to define “msg” as the last msg the bot has sent.

Advertisement

Answer

kanal.send(embed) returns a promise. You can use async/await here to grab that message so you can delete it later. Check the following code; it should delete the message after 5s:

JavaScript

Update: Legendary Emoji mentioned that instead of setTimeout you could also use an options object with a timeout property in sentMessage.delete like this:

JavaScript
User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement