Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #NoEnv
- #IfWinActive ahk_exe Absolver-Win64-Shipping.exe
- #SingleInstance Force
- #UseHook On
- SendMouse_RelativeMove(x, y) {
- DllCall("mouse_event", "UInt", 0x01, "UInt", x, "UInt", y)
- }
- ;-------------DOWN DODGE--------------
- #If GetKeyState("b", "P")
- *~s::
- SendMouse_RelativeMove(0, 100)
- Sleep 20
- return
- #If GetKeyState("s", "P")
- *~b::
- SendMouse_RelativeMove(0, 100)
- Sleep 20
- return
- ;-------------UP DODGE--------------
- #If GetKeyState("b", "P")
- *~w::
- SendMouse_RelativeMove(0, -100)
- Sleep 20
- return
- #If GetKeyState("w", "P")
- *~b::
- SendMouse_RelativeMove(0, -100)
- Sleep 20
- return
- ;-------------LEFT DODGE--------------
- #If GetKeyState("b", "P")
- *~a::
- SendMouse_RelativeMove(-100, 0)
- Sleep 20
- return
- #If GetKeyState("a", "P")
- *~b::
- SendMouse_RelativeMove(-100, 0)
- Sleep 20
- return
- ;-------------RIGHT DODGE--------------
- #If GetKeyState("b", "P")
- *~d::
- SendMouse_RelativeMove(100, 0)
- Sleep 20
- return
- #If GetKeyState("d", "P")
- *~b::
- SendMouse_RelativeMove(100, 0)
- Sleep 20
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement