This AHK Script Was written by T3D from eliteevil, to turn it on simply use the \ key or edit the script to suit.
You will need AutoHotKey (AHK)
Once installed copy paste this script into a text editor and save it with extension .ahk
Double click to launch AHK and the Script.
Enjoy
; -------------------------------------------------------------------------------------------------------------------------------------------------- .
; ----------------------- B A T T L E F I E L D 2 A U T O C L I C K E R ----------------------- :
; -------------------------------------------------------------------------------------------------------------------------------------------------- '
#MaxHotkeysPerInterval 999
#SingleInstance force
#InstallMouseHook
#InstallKeybdHook
#NoEnv
KeepRunning:
WinGet, szProcessName, ProcessName, A
if szProcessName = bf2.exe
{
Suspend, off
}
else
{
Suspend, toggle
}
return
; ---------------------------------------------------------------------------- .
; ------------------- S C R I P T O N / O F F ----------------- :
; ---------------------------------------------------------------------------- '
$\::
Suspend, Toggle
If toggle != 1
{
toggle := 1
SoundBeep 333
SoundBeep 444
SoundBeep 555
}
else
{
toggle := 0
SoundBeep 555
SoundBeep 444
SoundBeep 222
}
return
; ---------------------------------------------------------------------------- .
; ---------- A U T O C L I C K E R O N / O F F ---------- :
; ---------------------------------------------------------------------------- '
$=::
Hotkey, ~LButton, toggle
If toggle != 1
{
toggle := 1
SoundBeep
}
else
{
toggle := 0
SoundBeep
SoundBeep
}
return
; ----------------------------------------------------------------------------- .
; ------------------------------- AUTO CLICKER --------------------------- :
; ----------------------------------------------------------------------------- '
~LButton::
Loop
{
if (GetKeyState("LButton", "P") = 0)
{
break
}
else
{
MouseClick, left,,, 1, 0, D
Sleep, 20
MouseClick, left,,, 1, 0, U
Sleep 20
}
}
return
Comments
Nice, this is pretty cool for
Nice, this is pretty cool for any game