Jump to content

Recommended Posts

Posted

2 lua files

 

DCS World\Mods\aircraft\MiG-21BIS\Input\MiG-21\keyboard\default.lua

DCS World\Mods\aircraft\MiG-21BIS\Input\MiG-21\joystick\default.lua

 

 

original error

 

-- Engine

{combos={{key=']',reformers={'RShift'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=1.0,name='Anti surge doors - Auto',category='Engine'},

{combos={{key=']',reformers={'RShift','RCtrl'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=0.0,name='Anti surge doors - Manual',category='Engine'},

 

 

change to

 

{combos={{key=']',reformers={'RShift'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=1.0,name='Anti surge doors - Manual',category='Engine'},

{combos={{key=']',reformers={'RShift','RCtrl'}}},down=device_commands.SurgeDoors,cockpit_device_id=devices.ENGINE,value_down=0.0,name='Anti surge doors - Auto',category='Engine'},

 

 

 

original error

 

-- ARU

 

{combos={{key='U',reformers={'RCtrl'}}},down=device_commands.ARUhighSpeed,up=device_commands.ARUhighSpeed,cockpit_device_id=devices.ARU,value_down=1,value_up=0,name='ARU manual - Low Speed',category='Flight Controls'},

{combos={{key='U',reformers={'LCtrl'}}},down=device_commands.ARUhighSpeed,up=device_commands.ARUhighSpeed,cockpit_device_id=devices.ARU,value_down=-1,value_up=0,name='ARU manual - High Speed',category='Flight Controls'},

 

 

change to

 

{combos={{key='U',reformers={'RCtrl'}}},down=device_commands.ARUhighSpeed,up=device_commands.ARUhighSpeed,cockpit_device_id=devices.ARU,value_down=1,value_up=0,name='ARU manual - High Speed',category='Flight Controls'},

{combos={{key='U',reformers={'LCtrl'}}},down=device_commands.ARUlowSpeed,up=device_commands.ARUlowSpeed,cockpit_device_id=devices.ARU,value_down=-1,value_up=0,name='ARU manual - Low Speed',category='Flight Controls'},

Posted

The first fix labels the two actions (Anti-surge doors manual and auto) properly, as right now they're both labeled as Auto.

The second fix actually makes the two keybindings do two different things - wihtout the fixthe ARU Manual Low speed (LCtrl) did the same thing as the ARU Manual High speed (RCtrl) - it set it to High instead of low.

[sIGPIC][/sIGPIC]

 

Real men fly ground attack :pilotfly: where EVERYTHING wants a piece of you :D
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...