Social Engineering

[AHK] Delete Facebook Messenger messages fast

Submitted by kolabollen, , Thread ID: 205141

Thread Closed
30-04-2021, 08:50 AM
#1
Here is a AHK script that lets you delete Facebook Messenger messages real fast.
  • Open up Messanger in Chrome via Facebook.com and enter a chat.
  • Start the script and hover the three dots on a other users message and then scoll down once, this will execute a sequense and removes the message.
  • To remove your messages you over the three dots on your message and scroll up.

Code:
WheelDown::
{
  MouseGetPos, xpos, ypos

  Send {LButton}
  Sleep 50

  MouseMove xpos-=60, ypos-=55

  Sleep 50
  Send {LButton}

  MouseMove 1240, 680

  Sleep 50
  Send {LButton}

  MouseMove 800, 680
}

WheelUp::
{
  MouseGetPos, xpos, ypos

  Send {LButton}
  Sleep 50

  MouseMove xpos-=60, ypos-=55

  Sleep 50
  Send {LButton}

  MouseMove 1300, 800

  Sleep 50
  Send {LButton}

  MouseMove xpos, ypos
}

Users browsing this thread: 1 Guest(s)