The Lounge

Serious How to delete your discord messages (Really Fast)

Submitted by noahwilliams62696, , Thread ID: 155671

Thread Closed
17-01-2020, 04:47 AM
This post was last modified: 17-01-2020, 04:48 AM by noahwilliams62696
#1
If you download a program called AutoHotKey (AHK)
You can create a file that will auto delete your messages from discord.
1. Right click and create a new .ahk
2. Edit the ahk and insert the following code below:
Code:
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

^j::

Loop, 100
{
  send, {Up}
  send, ^a
  send, {BS}
  send, {Enter}
  send, {Enter}
  sleep, 500
}
Return
#Loop
How many messages will be deleted
to activate this you must use the following keys
CTRL + J

Users browsing this thread: 1 Guest(s)