Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;#NoEnv ;no idea
- ;#UseHook ;no idea
- #SingleInstance Force ;no idea
- #IfWinActive ahk_class DarkSouls2 ;This means the script only runs in the Dark Souls 2 window.
- #IfWinActive ahk_class FDPclass ;This means the script only runs in the Dark Souls 3 window.
- SendMode Input ;no idea
- SetWorkingDir %A_ScriptDir% ;no idea
- ;disable accidental kicks
- LButton::
- Send {w up}{a up}{s up}{d up} ;stops your movement
- Send {O down}
- Sleep 31
- Send {O Up}
- Sleep 100
- if (GetKeyState("W", "P")){
- Send {W down}
- }
- if (GetKeyState("A", "P")){
- Send {A down}
- }
- if (GetKeyState("D", "P")){
- Send {D down}
- }
- if (GetKeyState("S", "P")){
- Send {S down}
- }
- return
Advertisement
Add Comment
Please, Sign In to add comment