thunderclap
Youngster
- Joined
- Mar 12, 2013
- Messages
- 507
- Points
- 93
I use a program called AutoHotKey because it's the only thing I've found that lets you assign a Mouse Click to the keyboard.
___
1. Download AutoHotKey and install.
2. Open Notepad and copy/paste the following:
This turns your Left Alt and Right Shift buttons into Left Mouse Buttons, and your Right Ctrl becomes another fishing shortcut button. This way you can hunt one-handed with either hand (the 2 is reachable enough with WASD) without having to use the mouse at all.
3. Save the file on your Desktop (or somewhere accessible) using "Save As." Change the type to "All Files" and rename the file something.ahk
4. Load the file you just made when you want to play PWO. It should open with AutoHotKey, minimized to the taskbar near the clock. You won't see anything happen when you load it.
Note 1: To turn off remapping, use the AutoHotkey icon in the taskbar near the clock to Exit or pause temporarily.
Note 2: If your keyboard has a Numpad you might prefer NumpadIns instead of RShift. This makes your Insert button on the Numpad a mouse button. Change first line to:
Note 3: For alternative slightly more ergonomic placement of the left mouse button (Left Shift instead of Left Alt) for use with WASD (pinky finger instead of thumb). Remove the "LAlt::LButton" line and add the following:
This will take some getting used to which is why I didn't include it in the main script. Will inevitably result in failed capitalization and unwanted clicks at times. Your Left Alt becomes your new Shift key.
Note 4: If you wish to further customize it or use different buttons, refer to this list: https://www.autohotkey.com/docs/KeyList.htm
Note 5: To add comments or disable a line temporarily, use semicolon. AHK will ignore everything to the right of a semicolon. For example:
Note 6: After making any changes to your .ahk file, you have to click Reload Script, or restart AutoHotKey for the changes to take effect.
Known Issues: On my computer, sometimes after a couple hours, everything gets capitalized, so for example my "," becomes "<", and "/" becomes "?" etc. I assume it's because Windows doesn't like its shift buttons getting hijacked. That's why sometimes you'll see me write "?LIST" in chat. To overcome this, exit AutoHotkey (see above screenshot) and reload. Sometimes you have to exit for about 5 minutes before things return to normal. Overall this isn't a big deal but it's annoying: if anyone knows how to prevent this please comment. Strangely the capitalization glitch usually only affects PWO.
Also if anyone knows a way to limit the scope of AHK to just PWO, that would be amazing.
___
1. Download AutoHotKey and install.
2. Open Notepad and copy/paste the following:
Code:
LAlt::LButton
RShift::LButton
RCtrl::2
3. Save the file on your Desktop (or somewhere accessible) using "Save As." Change the type to "All Files" and rename the file something.ahk
4. Load the file you just made when you want to play PWO. It should open with AutoHotKey, minimized to the taskbar near the clock. You won't see anything happen when you load it.
Note 1: To turn off remapping, use the AutoHotkey icon in the taskbar near the clock to Exit or pause temporarily.
Note 2: If your keyboard has a Numpad you might prefer NumpadIns instead of RShift. This makes your Insert button on the Numpad a mouse button. Change first line to:
Code:
NumpadIns::LButton
Note 3: For alternative slightly more ergonomic placement of the left mouse button (Left Shift instead of Left Alt) for use with WASD (pinky finger instead of thumb). Remove the "LAlt::LButton" line and add the following:
Code:
LShift::LButton
LAlt::LShift
Note 4: If you wish to further customize it or use different buttons, refer to this list: https://www.autohotkey.com/docs/KeyList.htm
Note 5: To add comments or disable a line temporarily, use semicolon. AHK will ignore everything to the right of a semicolon. For example:
Code:
;The below could be used as a prank to annoy your coworkers/family.
O::U ;To force extra-Canadian spelling.
Note 6: After making any changes to your .ahk file, you have to click Reload Script, or restart AutoHotKey for the changes to take effect.
Known Issues: On my computer, sometimes after a couple hours, everything gets capitalized, so for example my "," becomes "<", and "/" becomes "?" etc. I assume it's because Windows doesn't like its shift buttons getting hijacked. That's why sometimes you'll see me write "?LIST" in chat. To overcome this, exit AutoHotkey (see above screenshot) and reload. Sometimes you have to exit for about 5 minutes before things return to normal. Overall this isn't a big deal but it's annoying: if anyone knows how to prevent this please comment. Strangely the capitalization glitch usually only affects PWO.
Also if anyone knows a way to limit the scope of AHK to just PWO, that would be amazing.
Last edited: