Call of Duty: Infinite Warfare

Call of Duty: Infinite Warfare

Not enough ratings
Arrow Key Fix
By ʰ ʸ ᵖ ᵉ.
Dowload AutoHotKey to fix the arrow key problem
   
Award
Favorite
Favorited
Unfavorite
Download AutoHotKey
Go to https://autohotkey.com and click download (right hand side of the page) and install
Create New Script
After installing you need to make a new AHK script by right clicking the desktop then New>AutoHotKey Script. You can name it whatever you like.

Now right click the AHK file and select Edit Script (this can be done with notepad) you can delete everything that is already in it just copy and paste the following:

up::w
down::s
left::a
right::d
NumpadEnter::
ExitApp
Return

NOTE: You must change your movement keys in COD:IW options to WSAD, AHK will then 'trick' the game into thinking your pressing WSAD when your actually pressing the arrow keys

The last part of the script:

NumpadEnter::
ExitApp
Return

This is the key you press to stop running the script, when you close the game and want your arrow keys back to normal, its currently set to Number Pad Enter if you want to change it to something else replace NumpadEnter with your preferd key.

If you want to use page up or insert etc but dont know what to put then the full list of keys are here
https://autohotkey.com/docs/KeyList.htm
5 Comments
M4rhun Jun 24, 2018 @ 12:35pm 
is this still working? Sadly im left handed and thinking about buying the game.
JojoTheSlayer Nov 20, 2017 @ 1:57pm 
; You need to use the "Max" command to prevent the "too many keys" popup.
; Which is a normal issue for wasd swap because you cant use the $ command without issues.

#MaxHotkeysPerInterval 100000000000000000000000000000000000000
SetKeyDelay 20

; Movement.
~up::w
~down::s
~left::a
~right::d

; ESC Menu.
$Numpaddot::Esc
v8venturi Oct 17, 2017 @ 10:24am 
BRILLIANT
baron0fhell Feb 28, 2017 @ 12:50pm 
Recently picked up CoD, as I am an arrow key user, this is a godsend of a fix. Thank you so much!
Nikitich Nov 13, 2016 @ 10:26am 
Thank you a lot for you work. It's help me.