Heyho. I'm searching the old Xbox 360 input map from before the pre race update. The new input map is kinda messed up, most commands can only be used with a keyboard, as example i can't reset the car with my controller anymore. If someone could please update the old original xbox input map for me and everyone else who is searching it, that would be really awesome! Thanks
I have a copy. Adapt it to your needs. Code: // Product Name: Controller (Xbox 360 Wireless Receiver for Windows) // GUID: {02A1045E-0000-0000-0000-504944564944} // axes: 5^Y^X^U^R^Z // 15% deadzone for the camera things $gp_deadzone = "-0.15 0.15"; // camera %mm.bind(%device, thumbrx, "D", $gp_deadzone, gamepadYaw); %mm.bind(%device, thumbry, "D", $gp_deadzone, gamepadPitch); // movement : deadzones and such are in lua for these %mm.bind(%device, thumblx, "D", $gp_deadzone, steer); %mm.bind(%device, triggerl, "D", $gp_deadzone, brake); %mm.bind(%device, triggerr, "D", $gp_deadzone, accelerate); %mm.bind(%device, btn_l, clutch ); %mm.bind(%device, btn_a, shiftUp); %mm.bind(%device, btn_x, shiftDown); %mm.bindCmd(%device, dpadd, "beamNGResetPhysics();", ""); %mm.bindCmd(%device, dpadr, "beamNGTogglePhysics();", ""); %mm.bind(%device, btn_r, parkingbrake_toggle); %mm.bindCmd(%device, lpov, "beamNGSwitchVehicle();", ""); %mm.bindCmd(%device, btn_y, "gamepadZoom(-0.1);", "gamepadZoom(0);"); %mm.bindCmd(%device, btn_b, "gamepadZoom(0.1);", "gamepadZoom(0);"); %mm.bindCmd(%device, btn_rt, "beamNGResetCamera();", ""); %mm.bindCmd(%device, btn_back, "beamNGCameraToggle();", ""); //%mm.bind(%device, btn_back, beamNGControl); //%mm.bind(%device, btn_x, toggleFirstPerson); It's the same for WIRED and WIRELESS, but you need to change the GUID to match the one you use. Not really sure if that still works, haven't tried. Let us know
Didn't want to make a new thread over such a simple question. How do you invert part of the command? "%mm.bind(%device, thumbry, "D", $gp_deadzone, gamepadPitch);" That part works, but I want it inverted (So the camera works more like GTA, which I'm used to). Thanks for your help! EDIT: Nevermind, It's "DI". I somehow remembered.