Advertisement
Guest User

Untitled

a guest
May 25th, 2016
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. ; OPTIONS
  2. ;====================================================================================================
  3. ;#NoEnv ;no idea
  4. ;#UseHook ;no idea
  5. #SingleInstance Force ;no idea
  6. #IfWinActive ahk_class DarkSouls2 ;This means the script only runs in the Dark Souls 2 window.
  7. #IfWinActive ahk_class FDPclass ;This means the script only runs in the Dark Souls 3 window.
  8. SendMode Input ;no idea
  9. SetWorkingDir %A_ScriptDir% ;no idea
  10.  
  11.  
  12. ;jumping
  13. t:: ;this is the button to trigger jumping
  14. Send {w up}{a up}{s up}{d up} ;stops your movement
  15. sleep 31 ;must be high so DaS3 registers
  16. Send {W down} ;rest press W and E in slight delay and releases all keys, beware you
  17. Sleep 15 ;will be motionless at the end of the action. So issue some direction command right away
  18. Send {E down} ;this must be your R2 button. Edit it here to your key, or set E as R2 in game. Its just my key layout
  19. Sleep 50
  20. Send {W up}
  21. Send {E up}
  22. return
  23.  
  24. ;kick
  25. C:: ;its X this time for kick
  26. Send {w up}{a up}{s up}{d up} ;same
  27. sleep 31
  28. Send {W down}
  29. Sleep 15
  30. Send {Z down} ;This must be your R1 keyboard button
  31. Sleep 50
  32. Send {W up}
  33. Send {Z up}
  34. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement