I am working on some gauges for the freeware Alpha Sim A-4s, F-4s, F-8s and others. I am using the F-4N as my test mule.
I basing my work on xlm gauges that came with various other freeware Alpha Sim jets....mainly from the F-105 package. I have a gauge modified to place a blue burner effect when the engine RPMs hit roughly 30%, another to place a second blue burner effect when the engine RPMs hit roughly 60%, and a third to place an after burner effect at roughly 90%.
The problem: The second blue burner effect and the after burner effect will not shut off when RPMs drop below the RPM percentage set in the gauges. And it kind of looks odd having an after burner effect in action when your jet is in cruise settings at 70% RPMs.
How can I get the effects to shut off when the RPMs drop below those listed in the XLM coding?
I am going to copy and paste the contents of the two gauges here for those who actually know what they are doing to look at.
This is the gauge coding that places the secondary blue burn effect:
<Gauge Name="Burner_SMOKE">
<Comment>
</Comment>
<Update Frequency="7"/>
<Element>
<Select>
<Value> (A:ENG1 COMBUSTION,number) 0 >
(A:ENG1 N1 RPM,percent) 40 > && if{ (A:SMOKE ENABLE,bool) ! if{ (>K:SMOKE_ON) } } els{ (A:SMOKE ENABLE,bool) if{ (>K:SMOKE_OFF) } }
</Value>
</Select>
</Element>
</Gauge>
This is the gauge coding that places the after burner effect:
<Gauge Name="AB_LOGO">
<Element>
<Select>
<Value>
(A:LIGHT LOGO,number) 0 == ; (A:ENG1 N1 RPM,percent) 75 > && if{ (>K:TOGGLE_LOGO_LIGHTS) }
</Value>
</Select>
</Element>
</Gauge>
OBIO
I basing my work on xlm gauges that came with various other freeware Alpha Sim jets....mainly from the F-105 package. I have a gauge modified to place a blue burner effect when the engine RPMs hit roughly 30%, another to place a second blue burner effect when the engine RPMs hit roughly 60%, and a third to place an after burner effect at roughly 90%.
The problem: The second blue burner effect and the after burner effect will not shut off when RPMs drop below the RPM percentage set in the gauges. And it kind of looks odd having an after burner effect in action when your jet is in cruise settings at 70% RPMs.
How can I get the effects to shut off when the RPMs drop below those listed in the XLM coding?
I am going to copy and paste the contents of the two gauges here for those who actually know what they are doing to look at.
This is the gauge coding that places the secondary blue burn effect:
<Gauge Name="Burner_SMOKE">
<Comment>
</Comment>
<Update Frequency="7"/>
<Element>
<Select>
<Value> (A:ENG1 COMBUSTION,number) 0 >
(A:ENG1 N1 RPM,percent) 40 > && if{ (A:SMOKE ENABLE,bool) ! if{ (>K:SMOKE_ON) } } els{ (A:SMOKE ENABLE,bool) if{ (>K:SMOKE_OFF) } }
</Value>
</Select>
</Element>
</Gauge>
This is the gauge coding that places the after burner effect:
<Gauge Name="AB_LOGO">
<Element>
<Select>
<Value>
(A:LIGHT LOGO,number) 0 == ; (A:ENG1 N1 RPM,percent) 75 > && if{ (>K:TOGGLE_LOGO_LIGHTS) }
</Value>
</Select>
</Element>
</Gauge>
OBIO