“Exclua a mensagem discord.js” Respostas de código

Discord JS Exclua mensagem depois do tempo

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.*/);
Shinobi Nyaa

Exclua a mensagem discord.js

message.delete()
Nervous Newt

Como excluir uma mensagem por seu 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());
Poor Pony

Discord Excluir mensagem

"create a variable called id"
var id
"then inside your client message statement change id ->  id = message.id"
client.on('message', message => {
  id = message.id
});
"inside your command type  message.fetch(id).then(msg => msg.delete());"
  if (message.content === !test)
      message.fetch(id).then(msg => msg.delete());      
}});
ItzNightmare

Respostas semelhantes a “Exclua a mensagem discord.js”

Perguntas semelhantes a “Exclua a mensagem discord.js”

Mais respostas relacionadas para “Exclua a mensagem discord.js” em JavaScript

Procure respostas de código populares por idioma

Procurar outros idiomas de código