Hey LeCuvier. Thanks very much for the guides. I'm doing the best I can to edit the my F18C's 'default.lua' as you instruct, but the new command doesn't show in game. Here's what I have:
-- Master Arm Panel
{ down = SMS_commands.AA_MasterModeSw, up = SMS_commands.AA_MasterModeSw, cockpit_device_id = devices.SMS, value_down = 1.0, value_up = 0.0, name = _('Master Mode Button - A/A'), category = {_('Instrument Panel'), _('Master Arm Panel')}},
{ down = SMS_commands.AG_MasterModeSw, up = SMS_commands.AG_MasterModeSw, cockpit_device_id = devices.SMS, value_down = 1.0, value_up = 0.0, name = _('Master Mode Button - A/G'), category = {_('Instrument Panel'), _('Master Arm Panel')}},
{ down = SMS_commands.MasterArmSw_EXT, cockpit_device_id = devices.SMS, value_down = 1.0, name = _('Master Arm Switch - ARM/SAFE'), category = {_('Instrument Panel'), _('Master Arm Panel')}},
{ down = SMS_commands.MasterArmSw, cockpit_device_id = devices.SMS, value_down = 1.0, name = _('Master Arm Switch - ARM'), category = {_('Instrument Panel'), _('Master Arm Panel')}},
{ down = SMS_commands.MasterArmSw, cockpit_device_id = devices.SMS, value_down = 0.0, name = _('Master Arm Switch - SAFE'), category = {_('Instrument Panel'), _('Master Arm Panel')}},
{ down = SMS_commands.MasterArmSw, up = SMS_commands.MasterArmSw, cockpit_device_id = devices.SMS, value_down = 1.0, value_up = 0.0 name = _('Steve Arm'), category = {_('Instrument Panel'), _('Master Arm Panel')}},
What I'm trying to do is add an on/off for the master arm switch. Any ideas what I'm doing wrong?
Thanks!