Citadel: Forged With Fire

Citadel: Forged With Fire

View Stats:
Laggytoes Aug 10, 2017 @ 9:16am
Autohotkey Script to make it playable for left-handed mouse/keyboard users
I made this and figured I would share it with the community. You also need to download autohotkey to use it:

https://autohotkey.com/

The following features are in this script:

  • Pressing IJKL will function as WASD keys
  • Pressing I not only let you move foward but will automatically press LSHIFT so you can autorun (DON'T REBIND LSHIFT)
  • Pressing "u" will function like pressing "e"
  • Pause/Break button will pause the script (you'll need to do this so when you type in chat or else typing "L" will type "D" for instance)
  • All other keys, which can be rebound, will need to be rebound to taste (This is important to do since IJKL all have in game keybinds).

Follow the autohotkey directions for installing and creating a script and then paste the following script below. It should be pretty straight forward. Also, and this should be obvious, don't bind a key the script is already using in game to something else. This includes the letters WASDE, LSHIFT, and the Pause button.


Pause::
Suspend
Pause,,1
return


k::s
j::a
l::d
u::e

#Persistent
i::
Send {LShift down}{w down}
While GetKeyState("i","P")
Sleep 10
Send {w up}{LShift up}
Return


Last edited by Laggytoes; Aug 10, 2017 @ 9:22am
Date Posted: Aug 10, 2017 @ 9:16am
Posts: 0