Nightstorm Posted November 20, 2020 Posted November 20, 2020 It'd be great to have controls for the Ejection seat arm and disarm that can be bound. 1
Nightstorm Posted November 21, 2020 Author Posted November 21, 2020 I figured out how to do this myself. You'll want to add the following lines to two files located here: Mods\aircraft\F-16C\Input\F-16C\joystick\default.lua Mods\aircraft\F-16C\Input\F-16C\keyboard\default.lua ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- -- Ejection Seat Lever { down = cpt_commands.EjectionSafetyLever, cockpit_device_id = devices.CPT_MECH, value_down = 0.0, name = _('Ejection Safety Lever, LOCKED'), category = {_('Systems')}}, { down = cpt_commands.EjectionSafetyLever, cockpit_device_id = devices.CPT_MECH, value_down = 1.0, name = _('Ejection Safety Lever, ARMED'), category = {_('Systems')}}, { down = cpt_commands.EjectionSafetyLever, up = cpt_commands.EjectionSafetyLever, cockpit_device_id = devices.CPT_MECH, value_down = 1.0, value_up = 0.0, name = _('Ejection Safety Lever, ARMED/LOCKED'), category = {_('Systems')}}, ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- They can really be pasted in anywhere but in my files, for the keyboard file I pasted these right before the line: -- EPU Control Panel For the joystick file I pasted them at the bottom of the systems section which can be found after the line: -- Systems ---------------------------------- You'll have three new bindable control options for your F-16 under the Systems category. Ejection Safety Lever, LOCKED (Seat Safe) Ejection Safety Lever, ARMED (Seat Armed, obviously) Ejection Safety Lever, ARMED/LOCKED (A toggle between the two for a single switch) 1
Recommended Posts