Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- How to use WSplit with Dark Souls
- 1. Download the program 'AutoHotKey' (https://github.com/AutoHotkey/AutoHotkey/releases/download/v1.0.48.05/AutoHotkey104805_Install.exe)
- 2. Create a new text file
- 3. Copy/Paste the following code:
- #Persistent
- #UseHook On
- Numpad0::
- {
- ControlSend, ahk_parent, {Space}, WSplit
- return
- }
- NumpadSub::
- {
- ControlSend, ahk_parent, {p}, WSplit
- return
- }
- Numpad9::
- {
- ControlSend, ahk_parent, {r}, WSplit
- return
- }
- p::
- {
- ControlSend, ahk_parent, {p}, WSplit
- return
- }
- Numpad4::
- {
- ControlSend, ahk_parent, {Left}, WSplit
- return
- }
- Numpad6::
- {
- ControlSend, ahk_parent, {Right}, WSplit
- return
- }
- 4. Save the file as a .ahk file (example: timer.ahk)
- 5. Run the script via AutoHotKey
- 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