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.
My good friends helped me learn a few things about AutoHotKey specifically color aimbot, and i've managed to get it working very well.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.
how did you manage to maximize the window? for me its grayed out and does not work :/