Anyone know of a script or bot for this?
it would be very useful thank you :)
it would be very useful thank you :)
Quote:
MsgBox(0,"Spammer, By PureEnergy","Press F10 to pause, press F9 to quit")
HotKeySet("{F10}", "TogglePause")
HotKeySet("{F9}", "Terminate")
Global $Paused
Global $Loop = 0
Global $Loop1 = 0
Global $Loop2 = 0
While 1 = 1
WinWaitActive ("Dekaron")
Send ("{SPACE}")
sleep(1)
WEnd
Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc
Func Terminate()
ToolTip("Thankyou and Goodbye",0,0)
Sleep(2000)
Exit 0
EndFunc