Guest User

Darksouls 2 Remap

a guest
Apr 26th, 2014
342
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.31 KB | None | 0 0
  1. ; All credits go for script go to ghoxen for the original script
  2. ; Additionally ghoxens guard break and jump attack included
  3. ; Reddit thread -> http://www.reddit.com/r/DarkSouls2/comments/23zq0s/mousekeyboard_fix/
  4.  
  5. ;Save this file as .ahk
  6. ;This script requires Auto hot key. Get it here -> http://www.autohotkey.com/
  7. ;Thanks to AutoHotKey for a wonderful niche program!
  8.  
  9. ;;;;;;;;; Setup notes ;;;;;;;;;
  10. ;Please erase all mouse click actions but middle button(target select)
  11.  
  12. ; Fix Jump
  13. ; REQUIRES ROLL/JUMP SET TO 0
  14. Shift::0
  15.  
  16. ;Suggestions:
  17. ;E makes a good replacement for interact
  18. ;Q makes a good replacement for use item
  19.  
  20. ;;;;;;;;; END SETUP NOTES ;;;;;;;;;
  21.  
  22. #SingleInstance Force
  23. #MaxHotkeysPerInterval 99999
  24. #IfWinActive ahk_class DarkSouls2
  25.  
  26. ; Fix Jump
  27. ; *** REQUIRES ROLL/JUMP SET TO 0
  28. Shift::0
  29.  
  30. ;Default clicks
  31. ;(right attack left click, left attack right click)
  32. ~LButton::H
  33. ~RButton::U
  34.  
  35. ;Power Variants (right and left respectively)
  36. Space & ~LButton::
  37. {
  38. Send {G down}
  39. Sleep 20
  40. Send {G up}
  41. return
  42. }
  43. Space & ~RButton::
  44. {
  45. Send {Y down}
  46. Sleep 20
  47. Send {Y up}
  48. return
  49. }
  50.  
  51. ;Guard Break
  52. F::
  53. {
  54. Send {W down}
  55. Sleep 20
  56. Send {U down}
  57. Sleep 20
  58. Send {W up}
  59. Send {H up}
  60. return
  61. }
  62.  
  63. ;Jump Attack
  64. R::
  65. {
  66. Send {W down}
  67. Sleep 20
  68. Send {G down}
  69. Sleep 20
  70. Send {W up}
  71. Send {G up}
  72. return
  73. }
Add Comment
Please, Sign In to add comment