Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #SingleInstance Force
- #MaxHotkeysPerInterval 99999`
- #IfWinActive ahk_class DarkSouls2
- ;Targeting
- MButton::O
- WheelUp::
- {
- Send {J down}
- Sleep 20
- Send {J up}
- return
- }
- WheelDown::
- {
- Send {L down}
- Sleep 20
- Send {L up}
- return
- }
- ; Hold to block with a shield in left hand
- LShift::Send {u down}
- LShift Up::Send {u up}
- ; Strong attack (left hand) / Parry
- LControl:: send {y down}
- LControl up:: send {y up}
- ;XButton1:: send {y down}
- ;XButton1 up:: send {y up}
- ; Attack (left hand)
- ;LShift:: send {u down}
- ;LShift up::send {u up}
- ;XButton2::send {u down}
- ;XButton2 up::send {u up}
- ; Boss key
- LAlt & Tab::AltTab
- ; Wield right weapon two-handed (hold for left weapon)
- Tab::n
- ; Attack (right hand)
- $LButton::
- send {h down}
- send {LButton down}
- return
- $LButton up::
- send {h up}
- send {LButton up}
- return
- ; Strong attack (right hand)
- $RButton::
- send {g down}
- send {RButton down}
- return
- $RButton up::
- send {g up}
- send {RButton up}
- return
- ; Guard break
- c::
- ^LButton::
- send {w down}
- send {h down}
- send {w up}
- send {h up}
- return
- ; Jump attack
- r::
- ^RButton::
- send {w down}
- send {g down}
- send {w up}
- send {g up}
- return
Advertisement
Add Comment
Please, Sign In to add comment