Advertisement
lobosjr

How to use WSplit with Dark Souls

Feb 22nd, 2014
4,492
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.94 KB | None | 0 0
  1. How to use WSplit with Dark Souls
  2.  
  3. 1. Download the program 'AutoHotKey' (https://github.com/AutoHotkey/AutoHotkey/releases/download/v1.0.48.05/AutoHotkey104805_Install.exe)
  4. 2. Create a new text file
  5. 3. Copy/Paste the following code:
  6.  
  7. #Persistent
  8. #UseHook On
  9. Numpad0::
  10. {
  11. ControlSend, ahk_parent, {Space}, WSplit
  12. return
  13. }
  14.  
  15. NumpadSub::
  16. {
  17. ControlSend, ahk_parent, {p}, WSplit
  18. return
  19. }
  20.  
  21. Numpad9::
  22. {
  23. ControlSend, ahk_parent, {r}, WSplit
  24. return
  25. }
  26.  
  27. p::
  28. {
  29. ControlSend, ahk_parent, {p}, WSplit
  30. return
  31. }
  32.  
  33. Numpad4::
  34. {
  35. ControlSend, ahk_parent, {Left}, WSplit
  36. return
  37. }
  38.  
  39. Numpad6::
  40. {
  41. ControlSend, ahk_parent, {Right}, WSplit
  42. return
  43. }
  44.  
  45.  
  46. 4. Save the file as a .ahk file (example: timer.ahk)
  47. 5. Run the script via AutoHotKey
  48.  
  49. Success! Now you can hit splits while playing Dark Souls! The code provided sets 'Numpad 0' to Start/Stop, 'Numpad 9' to Reset, 'P' to Pause, and 'Numpad Arrow Left/Right' to Undo/Set splits accordingly.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement