discord delete all messages with someone code example

Example 1: 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 2: 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!