Answers for "how to make discord bot delete previous message discord js"

2

discord js delete message after time

message.reply('Invalid command')
  .then(msg => {
                msg.delete({ timeout: 20000 /*time unitl delete in milliseconds*/});
            })
  .catch(/*Your Error handling if the Message isn't returned, sent, etc.*/);
Posted by: Guest on April-10-2020
0

How to delete a message by its id discord.js

// ASSUMPTIONS:
// channel: the channel you want the message to be sent in
// lastmsg: the id of the last poll message

channel.fetchMessage(lastmsg).then(msg => msg.delete());
Posted by: Guest on July-07-2021

Code answers related to "how to make discord bot delete previous message discord js"

Code answers related to "Javascript"

Browse Popular Code Answers by Language