Wolfenstein: The New Order

Wolfenstein: The New Order

droopypoopy Nov 26, 2016 @ 7:16pm
anyway to rebind leans to q + e?
I've tried with autohotkey binding (just for lean left with the q key):

::q
SendPlay, !a
return

but I've found that:

"Some games do not allow their keybinds to be 'hijacked'.

Explanation: Many games, especially DirectX driven, use driver level keyboard interaction and cannot be changed via AHK. You need to choose keybindings that the game is NOT using, some people have had success by changing the in-game keybinds so that those keys are 'free' for AHK to use."

Now this defeats the entire purpose since your "a" key is intrinsically linked to the game key map.

Does anyone have a working solution to rebinding lean left to "Q", lean right to "E" and lean down to "X" (just like wolf:ET)?

Edit: I've seen the post about this exact issue 2 years ago, but I figured someone's found a solution to it already right?...
Last edited by droopypoopy; Nov 26, 2016 @ 7:20pm
< >
Showing 1-3 of 3 comments
BAITness Nov 26, 2016 @ 8:38pm 
This may not be helpful, but if your keyboard has software to let you modify keybindings for certain games, then make Q and E bound to lean (left alt by default) and A or D for lean left/lean right. I wish I had thought of this earlier, but I am already used to these keybindings now. I think I have used lean only twice so far during the campain, anyways.

It is also worth noting that when your crosshairs have a small arrow next to them, using aim-down-sights will automatically lean you in that direction. This means that the only leaning you should have to manually do is down.
Grunt Feb 15, 2020 @ 8:08pm 
I know this thread is a bit old, but I looked for a similar script to workaround those terrible consolero-controls without any success. So i grinded through other topics and patched
the following script together. It is not perfect. When you press Q+W for example you lean forward, instead of left, but in general it worked quite good:


Assuming leanmode is bound to "alt" and "q","e are unbound:

-------------------------------------------------------------------------------------------

#IfWinActive, ahk_exe WolfOldBlood_x64.exe

q::
send {alt down}{a down}
keywait q
send {alt up}{a up}
return

e::
send {alt down}{d down}
keywait e
send {alt up}{d up}
return

#IfWinActive
--------------------------------------------------------------------------------------------

Since this is only active when OldBlood is running, you need to change the WolfOldBlood_x64.exe-entry for others games.


Salute!
droopypoopy Feb 15, 2020 @ 9:59pm 
thanks :D
< >
Showing 1-3 of 3 comments
Per page: 1530 50

Date Posted: Nov 26, 2016 @ 7:16pm
Posts: 3