- Oct 12, 2017
- 152
- 1,691
Is there literally any way to just force activate handsfree mode in the fuckin mods? This is seriously annoying as hell.
I made an AHK cheat script for Beat Banger that automatically plays the game for you, simply install Autohotkey, make a new .ahk file and copy paste this code and run it.Anybody know the list of currently working cheats since alot of the old ones dont work anymore?
Code:
Loop {
sleep, %Accuracy%
PixelSearch, Px, Py, 949, 905, 990, 953, 0x198CC7, 30, Fast RGB
if (errorlevel = 0) && WinActive("ahk_exe beatbanger.exe")
{
Send,Z
Sleep, 75
Continue
}
PixelSearch, Px, Py, 949, 905, 990, 953, 0xED780D, 40, Fast RGB
if (errorlevel = 0) && WinActive("ahk_exe beatbanger.exe")
{
Send,X
Sleep, 75
Continue
}
PixelSearch, Px, Py, 949, 905, 990, 953, 0xC72B17, 30, Fast RGB
if (errorlevel = 0) && WinActive("ahk_exe beatbanger.exe")
{
Send,C
Sleep, 75
Continue
}
PixelSearch, Px, Py, 949, 905, 990, 953, 0xAB2B63, 30, Fast RGB
if (errorlevel = 0) && WinActive("ahk_exe beatbanger.exe")
{
Send,V
Sleep, 75
Continue
}
Continue
}
Here's a preview, it works with mods too:
Make sure your game is on windowed mode and is maximized to the screen, otherwise it will not work well, an if you have any issues, try changing "Sleep, 75" to a different number in order to change the key press delay, or change the "30" next to Fast RGB for color variance, keep it around 30-40~ or else it won't work properly.