Guest User

Untitled

a guest
Apr 29th, 2014
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. #SingleInstance Force
  2. #MaxHotkeysPerInterval 99999`
  3. #IfWinActive ahk_class DarkSouls2
  4.  
  5. ;Targeting
  6. MButton::O
  7. WheelUp::
  8. {
  9. Send {J down}
  10. Sleep 20
  11. Send {J up}
  12. return
  13. }
  14. WheelDown::
  15. {
  16. Send {L down}
  17. Sleep 20
  18. Send {L up}
  19. return
  20. }
  21.  
  22. ; Hold to block with a shield in left hand
  23. LShift::Send {u down}
  24. LShift Up::Send {u up}
  25.  
  26. ; Strong attack (left hand) / Parry
  27. LControl:: send {y down}
  28. LControl up:: send {y up}
  29. ;XButton1:: send {y down}
  30. ;XButton1 up:: send {y up}
  31.  
  32. ; Attack (left hand)
  33. ;LShift:: send {u down}
  34. ;LShift up::send {u up}
  35. ;XButton2::send {u down}
  36. ;XButton2 up::send {u up}
  37.  
  38. ; Boss key
  39. LAlt & Tab::AltTab
  40.  
  41. ; Wield right weapon two-handed (hold for left weapon)
  42. Tab::n
  43.  
  44. ; Attack (right hand)
  45. $LButton::
  46. send {h down}
  47. send {LButton down}
  48. return
  49. $LButton up::
  50. send {h up}
  51. send {LButton up}
  52. return
  53.  
  54. ; Strong attack (right hand)
  55. $RButton::
  56. send {g down}
  57. send {RButton down}
  58. return
  59. $RButton up::
  60. send {g up}
  61. send {RButton up}
  62. return
  63.  
  64. ; Guard break
  65. c::
  66. ^LButton::
  67. send {w down}
  68. send {h down}
  69. send {w up}
  70. send {h up}
  71. return
  72.  
  73. ; Jump attack
  74. r::
  75. ^RButton::
  76. send {w down}
  77. send {g down}
  78. send {w up}
  79. send {g up}
  80. return
Advertisement
Add Comment
Please, Sign In to add comment