Documentation
Readme
View as plain text
Save this file and then once you have AutoHotkey, you can use this text to create a keyboard remap for Lefties.
I can't leave the ahk file unless I compress it, so this is the alternate, sorry.
Don't forget to put it in the right directory, and once in game toggle NumPad if no movement occurs.
Everything Below this double line is the text for the .ahk file.
==============================================
#SingleInstance Force
#MaxHotkeysPerInterval 99999
#IfWinActive ahk_class Fallout4
#Persistent
#UseHook
Pause::Suspend,Toggle
; program the keys this way - [key you wish to press] :: [the key it emulates] example - e::e
NumpadUp::w ; Forward (w)
NumpadClear::s ; Back (s)
NumpadLeft::a ; Strafe Left (a)
NumpadRight::d ; Strafe Right (d)
;Right::e ; Activate (e) this E key is hardwired as yet.
NumpadDiv::r ; Ready/Reload (r)
NumpadIns::Space ;jump
Left::LShift ; Sprint
v::q ; VATS (q)
NumpadAdd::LControl ; Sneak
RAlt::c ; Run (c)
q::x ; Auto-Move (x)
NumpadMult::LAlt ; Bash/Power Attack/Grenade
; Favorites(f)
; Quick Inventory(i)
; Quick Data (j)
; Pause (Escape)
; Quick Stats (k)
; Quick Map (m)
; Quick Radio (o)
;not recommended for change
; Attack (LButton)
; Aim/Block (RButton)
; Pip-Boy (Tab)
; Toggle POV/Workshop (MButton)
; Toggle Always Run (CapsLock)
; Quicksave (f6)
; Quickload (f7)
;Disabled keys. Use this to stop both e and w from making you move forward.
w::return
a::return
x::return
; modified iceray2000 for ********L E F T I E S ********* Embrace the NumPad!
; reset all keys to default in Settings.
; in-game toggle NumLock to activate keymaps, as this is to enable NumPad control use.
; work in progress. Any insights into further remapping for Lefties?