Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; All credits go for script go to ghoxen for the original script
- ; Additionally ghoxens guard break and jump attack included
- ; Reddit thread -> http://www.reddit.com/r/DarkSouls2/comments/23zq0s/mousekeyboard_fix/
- ;Save this file as .ahk
- ;This script requires Auto hot key. Get it here -> http://www.autohotkey.com/
- ;Thanks to AutoHotKey for a wonderful niche program!
- ;;;;;;;;; Setup notes ;;;;;;;;;
- ;Please erase all mouse click actions but middle button(target select)
- ; Fix Jump
- ; REQUIRES ROLL/JUMP SET TO 0
- Shift::0
- ;Suggestions:
- ;E makes a good replacement for interact
- ;Q makes a good replacement for use item
- ;;;;;;;;; END SETUP NOTES ;;;;;;;;;
- #SingleInstance Force
- #MaxHotkeysPerInterval 99999
- #IfWinActive ahk_class DarkSouls2
- ; Fix Jump
- ; *** REQUIRES ROLL/JUMP SET TO 0
- Shift::0
- ;Default clicks
- ;(right attack left click, left attack right click)
- ~LButton::H
- ~RButton::U
- ;Power Variants (right and left respectively)
- Space & ~LButton::
- {
- Send {G down}
- Sleep 20
- Send {G up}
- return
- }
- Space & ~RButton::
- {
- Send {Y down}
- Sleep 20
- Send {Y up}
- return
- }
- ;Guard Break
- F::
- {
- Send {W down}
- Sleep 20
- Send {U down}
- Sleep 20
- Send {W up}
- Send {H up}
- return
- }
- ;Jump Attack
- R::
- {
- Send {W down}
- Sleep 20
- Send {G down}
- Sleep 20
- Send {W up}
- Send {G up}
- return
- }
Add Comment
Please, Sign In to add comment