5 years ago
Holospray Bind Macro Bannable
I recently made a really bare bones script to instantly use the bottom most quip you have. I made it so pressing mouse5 will use it, while holding mouse4 will repeatedly use it. I've used it mostly to throw out a holospray (since reaching my middle finger to F1 is really annoying), and the spam to spam Crypto's voiceline "They. They did this to both of us(.)" to make him say They over and over (trust me its really funny). One thing in my venture of learning LUA is that it didn't occur to me if this was bannable or not. I'd rather not get banned for this because I have "MoveMouseRelative" in the script so EAC detects it as a no recoil cheat.
function OnEvent(event, arg) if event == "MOUSE_BUTTON_PRESSED" and arg == 5 then PressKey("F1") Sleep(15) ReleaseKey("F1") Sleep(15) MoveMouseRelative(0,50) Sleep(15) PressMouseButton(1) Sleep(15) ReleaseMouseButton(1) end if event == "MOUSE_BUTTON_PRESSED" and arg == 4 then repeat PressKey("F1") Sleep(15) ReleaseKey("F1") Sleep(15) MoveMouseRelative(0,50) Sleep(15) PressMouseButton(1) Sleep(15) ReleaseMouseButton(1) until event == "MOUSE_BUTTON_PRESSED" and arg == 4 end end