I find WASD to be much more comfortable and practical to use instead of the arrow keys for movement, and honestly never use wasd for the camera, so I switched them. Have at it, goes in scripts/client/inputmaps/ Remember to backup your original incase you wish to revert.
I doubt that you made it.. i saw this on russian site, russians made it i think. nice change, but i prefer the arrow keys for some reasons.
... Hey man, I dunno if you looked into the file itself, but it is such a simple change anyone can do it. Here is the original, untouched code from the file. Code: moveMap.bind( keyboard, a, moveleft ); moveMap.bind( keyboard, d, moveright ); moveMap.bind( keyboard, w, moveforward ); moveMap.bind( keyboard, s, movebackward ); moveMap.bind( keyboard, left, steer_left ); moveMap.bind( keyboard, right, steer_right ); moveMap.bind( keyboard, up, accelerate ); moveMap.bind( keyboard, down, brake ); And here is the switched version: Code: moveMap.bind( keyboard, left, moveleft ); moveMap.bind( keyboard, right, moveright ); moveMap.bind( keyboard, up, moveforward ); moveMap.bind( keyboard, down, movebackward ); moveMap.bind( keyboard, a, steer_left ); moveMap.bind( keyboard, d, steer_right ); moveMap.bind( keyboard, w, accelerate ); moveMap.bind( keyboard, s, brake ); The ol' switcheroo.