Answers for "clear message discord"

1

discord bot clear messages

switch(args[0]){
case 'clear':
        if(!args[1]) return message.reply('Error please define second argument')
            message.channel.bulkDelete(args[1]);
        break;  
}
Posted by: Guest on August-23-2020
8

discord delete message

"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());      
}});
Posted by: Guest on October-25-2020

Browse Popular Code Answers by Language