Majinbot Posted June 6, 2018 Posted June 6, 2018 The 2 way switch for the Hook is still missing from "special for joystick" category. Every update I have to add this to the default.lua file, I hope they integrate it soon: {down = gear_commands.HookHandle, up = gear_commands.HookHandle, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 0.0, value_up = 1.0, name = _('Arresting Hook Handle - Up/Down'), category = {_('Special For Joystick'), _('Right Vertical Panel')}}, PC: i7-13700K - Gigabyte RTX 5080 GAMING OC - 64GB DDR5 6400 - VPC MongoosT-50CM3 - VKB GF pro - MFG Crosswind - Msi MPG321UR-QD + LG OLED 32GS95UE - TrackIR5 - Quest 3
Halequin Posted June 7, 2018 Posted June 7, 2018 This is what I have and it works fine, I just have to reset the switches once loaded in. { down = gear_commands.HookHandle, up = gear_commands.HookHandle, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('Arresting Hook Handle - Up'), category = {_('Special for Panels'), _('Right Vertical Panel')}},
hawk2495 Posted June 7, 2018 Posted June 7, 2018 I would love to see this added to all multi-position commands on all modules. That would be so much easier for building pits and or just switch panels. Why is the rum always gone!?!?!?!
Majinbot Posted June 7, 2018 Author Posted June 7, 2018 This is what I have and it works fine, I just have to reset the switches once loaded in. { down = gear_commands.HookHandle, up = gear_commands.HookHandle, cockpit_device_id = devices.GEAR_INTERFACE, value_down = 1.0, value_up = 0.0, name = _('Arresting Hook Handle - Up'), category = {_('Special for Panels'), _('Right Vertical Panel')}}, it's identical to mine, we only have the values reversed. Another useful 2 way switch for those who have the warthog hotas is that of the baro/rdr, to be assigned to the RDR ALTM warthog switch: { down = HUD_commands.HUD_AltitudeSw_ITER, up = HUD_commands.HUD_AltitudeSw_ITER, cockpit_device_id = devices.HUD, value_down = 0.0, value_up = 1.0, name = _('Altitude Switch - BARO/RADAR'), category = {_('Special For Joystick'), _('HUD Control Panel')}}, PC: i7-13700K - Gigabyte RTX 5080 GAMING OC - 64GB DDR5 6400 - VPC MongoosT-50CM3 - VKB GF pro - MFG Crosswind - Msi MPG321UR-QD + LG OLED 32GS95UE - TrackIR5 - Quest 3
Recommended Posts