Skip to content Skip to sidebar Skip to footer

Discord.js Send And Wait Before Editing A Message

I want my bot, to send my emotes, wait 1 seconds and edit the message to my others emotes. Here's my code : message.channel.send('my emotes') .then((msg) => { setTime

Solution 1:

ok so finaly the code that works is :

message.channel.send('my emote')
.then((msg)=> {
  setTimeout(function(){
    msg.edit('my others emotes');
  }, 1000)
}); 

Post a Comment for "Discord.js Send And Wait Before Editing A Message"