how to delete all my messages in a discord server code example
Example 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;
}
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!