SGT Coyle Posted August 19, 2018 Posted August 19, 2018 (edited) Using the TARGET Script Editor, has anyone separated the triggers (TG1 and TG2)? I'm glad to say Yes! Click here to see solution OP moved to spioler Spoiler I have this line in my AV8B script. It makes the first trigger detent (TG1) do nothing unless pinky lever is held(my shift state button). Then it works to recenter VR and Visor whit a TEMPO command. TG2 Works as normal. //Trigger********** MapKeyIO(&Joystick,TG1, TEMPO( Recenter_VR_Headset, Helmet_Visor_NVG_Toggle, 500),0); MapKey(&Joystick,TG2, Trigger_Fire_Gun_Launch_Sidewinder_Sidearm); I'm look for a way to use TG2 without triggering TG1 without disabling the TG1 non-shifted state. Any thoughts? Edited November 13, 2021 by SGT Coyle Night Ops in the Harrier IYAOYAS
Thermal Posted August 20, 2018 Posted August 20, 2018 Why not MapKeyIO TG2? In shifted state - nothing. In un-shifted --> normal-operation? (If I am reading it right).
Frederf Posted August 21, 2018 Posted August 21, 2018 Yeah, if you're using IO shifting then: MapKeyIO(&Joystick,TG1, TEMPO( Recenter_VR_Headset, Helmet_Visor_NVG_Toggle, 500),0); MapKeyIO(&Joystick,TG2, 0, Trigger_Fire_Gun_Launch_Sidewinder_Sidearm); Then when in shift state outer (S4 not held) TG1 will do '0' and TG2 will do Trigger_Fire. In shift state inner (S4 held) TG1 will do TEMPO and TG2 will do '0'.
Recommended Posts