Jump to content

Certain special keys don't work when remapped


Recommended Posts

This is the only real solution to fixing remapping issues when a game company decides they will tell you how to use your hands to play their game.

 

Install AutoHotKey

Create a new Config File

Map 1:1 your preferred inputs.

 

Here's what I use, to use the right-side of the keyboard for gameplay:

 

Up::w
Down::s
Left::a
Right::d
Enter::r
Home::i
End::e
\::LShift
RShift::LControl
RControl::Space
PgUp::TAB
PgDn::t
Ins::f
BackSpace::Esc
Numpad0::v
Numpad1::q
NumpadDot::j
Numpad5::f
Numpad6::x
Numpad9::z
Numpad3::c

 

Edited by TheDON3k
Link to comment
Share on other sites

yo dude i'm a lefty and i use 'P'= W 'L'= A 'semicolon'= S  'apostrophe'= D so its exactly like WSAD but mirror'd on the right . (works great cuz you can use Ctrl an Shift real easy)


and you can use AutoHotKey to over-ride 'K' 'J' 'comma' and 'Rightbracket' to whatever you'd like! like i have rightbracket ' [ ' set to 'Q' to active TTD that slow-time ****.

but yeah if your left handed Autohotkey is a god send for most games that dont allow you to rebind **** you need, you can even do other kool **** too like make a toggle aim function so you dont have to hold down the damn right mouse button to aim.

you'll need autohotkey installed before you can run it,

but here is my ahk script :

Right mouse button becomes toggle-able so you dont have to hold it down to aim, just click now (like every other game can...)

K becomes R   ; to make K reload key

R becomes K    ; and R becomes K so you can still access 'character menu'

[ becomes Q     ; Right-bracket becomes Q so it actually works, for some reason you can bind it in game but it doesnt work, so this fixes that


oh and make sure to pause it if you alt-tab , cuz the right click hold thing can be screwy out-side game on the desktop

you can pause it by pressing the Right 'Ctrl' + Right 'Alt'

once you're done playing just pause the script and Exit AutoHotKey to make **** back to normal.

MsgBox, 4,, Toggle Key/Hold Script Run ? (press Yes or No)
IfMsgBox Yes
{
MsgBox Script running.
Soundbeep
}
else
{
MsgBox Closing.
Soundbeep
 ExitApp
}
SetTitleMatchMode, 2
#SingleInstance Force
#MaxThreadsPerHotkey 2
#IfWinActive, The Outer Worlds


If (GetKeyState(RButton)){
    *RButton Up::
    If (Toggle := !Toggle){
        Send {Click Down Right}
    }
    Else{
        Send {RButton up}
    }
    Return
}
Return
#IfWinActive
RCtrl & RAlt::Suspend
k::r
r::k
[::q

 

oh and if you want you can Frankenstein this code to work for what ever game that allows AutoHotKey to run in the background, just gotta change ' #ifWinActive, The Outer Worlds ' to whatever the games windows name is; easy to see by hovering mouse over the games icon in the taskbar, and they're case sensitive too.

 

i copy pasted this from another reply i gave figure it apply here too

Link to comment
Share on other sites

  • 1 month later...

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...