• There seems to be an uptick in Political comments in recent months. Those of us who are long time members of the site know that Political and Religious content has been banned for years. Nothing has changed. Please leave all political and religious comments out of the forums.

    If you recently joined the forums you were not presented with this restriction in the terms of service. This was due to a conversion error when we went from vBulletin to Xenforo. We have updated our terms of service to reflect these corrections.

    Please note any post refering to a politician will be considered political even if it is intended to be humor. Our experience is these topics have a way of dividing the forums and causing deep resentment among members. It is a poison to the community. We appreciate compliance with the rules.

    The Staff of SOH

  • Server side Maintenance is done. We still have an update to the forum software to run but that one will have to wait for a better time.

Vortices

UKVoodoo

Charter Member
Hi All

Not sure if anyone can help me here as its to do with gauges, ive edited alot of my aircraft to use a gauge that controls vortices in tandom with G loads but they all seem to be tied up to the strobes in the [LIGHTS] section

Im wondering is there anyway to change the gauge so that it ties up navigation lights instead of strobes?, my teams aircraft use the strobes and landing lights as different colour smokes so we can use red, white and blue without changing aircraft

Thanks
Matt
 
Matt, you have to open your XML gauge file with e.g. a text editor and change the following event id's / variables:

STROBES_TOGGLE => TOGGLE_NAV_LIGHTS

LIGHT STROBE => LIGHT NAV


Once that is done, update the light circuit number in the aircraft.cfg [lights]:

light.xx = 2, ......... => light.xx = 3, .........

(3 is the circuit number of NAV lights)

cheers, Henk.
 
Thanks Henk

When I opened my vortices.xml file in notepad it showed

<Gauge Name="EF2KVortices">
<Element>
<Select>
<Value>
(A:G FORCE,Gforce) abs 10 4 / > (A:AILERON RIGHT DEFLECTION,degrees) abs 11 > || if{ (>K:STROBES_ON) } els{ (>K:STROBES_OFF) }
</Value>
</Select>
</Element>
</Gauge>

Do I need to be changing the STROBES_ON and OFF section at all bit confuzzled :kilroy:


Matt
 
Matt, NAV light does not have separate ON/OFF event id's like STROBES so simply replacing them will not do it in this case. However, many roads lead to Rome, this is one you could try:

<Gauge Name="EF2KVortices v2">
<Element>
<Select>
<Value>
(A:G FORCE, gforce) abs 4 > (P:TIME OF DAY,enum) 1 == &&
if{ (A:LIGHT NAV,bool) ! if{ (>K:TOGGLE_NAV_LIGHTS) } }
els{ (A:LIGHT NAV,bool) if{ (>K:TOGGLE_NAV_LIGHTS) } }
</Value>
</Select>
</Element>
</Gauge>

BTW: The TIME OFF DAY check makes sure the effect only works during daylight hours. Vortices look like bright flames in the dark and that is not what most of us want.

cheers, Henk.
 
Back
Top