Forza Motorsport 5 bumpers in menus with Microsoft Wireless Speed Wheel on Xbox One

To compliment my main script, you can select this script on your key when you are in menus to use the triggers as bumper buttons. I load my main script into "5" (for FM5) and this into "1". When using "0" (no script) the bumper buttons cannot be accessed. My script remaps the XB1 bumpers to the Speed Wheel's triggers.
Version1
Authorsteve.rand
Publish DateSat, 5 Jul 2014 - 17:53
Last UpdateSat, 5 Jul 2014 - 17:53
Downloads71
RATE


0

0

Release Notes: I might look into steering as the secondary thumbstick for circling around your car in menu mode.
Code: Select all
//
// xbox360_speedwheel_on_xb1_forza_5_menu_bumpers.gpc
//
// Made by Steve Rand
//
//----------------------------------------
 
//unmap XB360_RT;
//remap XB360_RT -> XB360_RB;
//unmap XB360_LT;
//remap XB360_LT -> XB360_LB;
 
main {
 
    if(get_val(XB360_LT) > 1) set_val(XB1_LB, 100)  //Trigger only needs a tiny touch to activate,
    if(get_val(XB360_RT) > 1) set_val(XB1_RB, 100)  //rather than the whole trigger travel to 100%
 
//All the other main keys appear to work already, but there is no second thumbstick for walkarounds etc.
 
 
 
 
 
}