Why use a script?
A script allows a user to automate any action performed in a game such as mouse movements, mouse clicks or press keys.
Examples of some popular scripts are auto fire, no-recoil and key combos for fighting games.
Examples of some popular scripts are auto fire, no-recoil and key combos for fighting games.
Scripts
No-Recoil
#NoEnv
SendMode Input
_auto := true
~LButton::autofire()
+LButton::_auto := ! _auto
F1::ExitApp
autofire()
{
global _auto
if _auto
{
Loop
{
if GetKeyState("LButton", "P")
{
Sleep 10
mouseXY(0, 2)
}
else
break
} ;; loop
} ;; if
} ;; autofire()
mouseXY(x,y)
{
DllCall("mouse_event",uint,1,int,x,int,y,uint,0,int,0)
}
Download
Rapid Fire
/::Suspend
LButton::
Loop
{
SetMouseDelay 30
Click
If (GetKeyState("LButton","P")=0)
Break
}
Download
Ambient Sound Remover - Call Of Duty AW
This script removes all ambient sound from Call of Duty AW. Please follow the instructions cafefully.
Instructions:
So if you want to finally remove those annoying sounds in COD AW download the script here:
Instructions:
- Extract the Call of Duty Advanced Warfare On-Off Toggle.rar to your Advanced Warfare root folder. (For me that is F:\Games\Steam Games\SteamApps\common\Call of Duty Advanced Warfare)
- Run MUSICOFF.BAT if you want to disable the annoying noises.
- Or if you would like to enable the ambient noise again run MUSICON.BAT
So if you want to finally remove those annoying sounds in COD AW download the script here:
Download