Guest User

Untitled

a guest
Jun 25th, 2016
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. ;#NoEnv ;no idea
  2. ;#UseHook ;no idea
  3. #SingleInstance Force ;no idea
  4. #IfWinActive ahk_class DarkSouls2 ;This means the script only runs in the Dark Souls 2 window.
  5. #IfWinActive ahk_class FDPclass ;This means the script only runs in the Dark Souls 3 window.
  6. SendMode Input ;no idea
  7. SetWorkingDir %A_ScriptDir% ;no idea
  8.  
  9.  
  10. ;disable accidental kicks
  11. LButton::
  12. Send {w up}{a up}{s up}{d up} ;stops your movement
  13. Send {O down}
  14. Sleep 31
  15. Send {O Up}
  16. Sleep 100
  17. if (GetKeyState("W", "P")){
  18. Send {W down}
  19. }
  20. if (GetKeyState("A", "P")){
  21. Send {A down}
  22. }
  23. if (GetKeyState("D", "P")){
  24. Send {D down}
  25. }
  26. if (GetKeyState("S", "P")){
  27. Send {S down}
  28. }
  29. return
Advertisement
Add Comment
Please, Sign In to add comment