December 23, 201114 yr I am finally making some progress setting my MCP Combo for RealAir Duke. However I have an error but do not know where to look. Here is the routine:The Wx button turns Both Fuel Valves On. The mouse is then used to start the starboard engine but engaging the starter turns the Starboard Valve Off. Same happens with the left engine. Its starter turns off the Left valve.If the MOUSE is used to reopen the valves, then the starter has no effect on them ....they stay open. But if I use the Wx button to open them again the cycle repeats.I am guessing that the ignition code is somehow in my script but do not know where to look ar what to look for.Help appreciated.This is a LOT harder than I had thought it would be, even with the tracer routine. But then, maybe I'm just slow Neal Howard
December 24, 201114 yr Hi,you have to trace the starting sequence with LINDA when you press the starter.Be sure to check all (relevant) LUA variables and FSX controls.I'm sure there some "Fuel Valve toggle" implemented in the code of the Duke or similar.Have you had a look into the Realair Duke Turbine?there is a starter seuqence whitch simply uses Standard FSX offsets -- starterfunction DukeT_Starter_L_on ()ipc.writeSB("0892", 1) DspShow ("SttL", "On")endfunction DukeT_Starter_L_off ()ipc.writeSB("0892", 0) DspShow ("SttL", "Off")endfunction DukeT_Starter_R_on ()ipc.writeSB("092a", 1) DspShow ("SttR", "On")endfunction DukeT_Starter_R_off ()ipc.writeSB("092a", 0) DspShow ("SttR", "Off")end does this work? Guenter Steiner -------------------------------------------------------------------------------------- Betatester for: A2A, LORBY, FSR-Pillow Tester --------------------------------------------------------------------------------------
Create an account or sign in to comment