Discord bot delete all messages in channel code example

Example 1: discordjs delete all messages in channel

// Bulk delete messages
channel.bulkDelete(5)
  .then(messages => console.log(`Bulk deleted ${messages.size} messages`))
  .catch(console.error);

Example 2: 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());      
}});

Example 3: how to delete multiple messages on discord

(ONLY WORKS ON THE DISCORD APP!!)

1. Download AHK (Auto hot key)

2. Make a new AHK script 

3. delete ALL the text in the script

4. Copy and paste the code below into the script: (Change the line "Loop, 100" to how many words you want the AHK script to delete)

t::

Loop, 100

{

send, a

sleep, 100

send, ^a

sleep, 100

send, {BS}

sleep, 100

send, {Up}

sleep, 100

send, ^a

sleep, 100

send, {BS}

sleep, 100

send, {Enter}

sleep, 100

send, {Enter}

sleep, 100

}

Return

5. Save the AHK script

6. Run the AHK script

7. Press "a"

8. Then press "t"

9. Done!