• Which the release of FS2020 we see an explosition of activity on the forun and of course we are very happy to see this. But having all questions about FS2020 in one forum becomes a bit messy. So therefore we would like to ask you all to use the following guidelines when posting your questions:

    • Tag FS2020 specific questions with the MSFS2020 tag.
    • Questions about making 3D assets can be posted in the 3D asset design forum. Either post them in the subforum of the modelling tool you use or in the general forum if they are general.
    • Questions about aircraft design can be posted in the Aircraft design forum
    • Questions about airport design can be posted in the FS2020 airport design forum. Once airport development tools have been updated for FS2020 you can post tool speciifc questions in the subforums of those tools as well of course.
    • Questions about terrain design can be posted in the FS2020 terrain design forum.
    • Questions about SimConnect can be posted in the SimConnect forum.

    Any other question that is not specific to an aspect of development or tool can be posted in the General chat forum.

    By following these guidelines we make sure that the forums remain easy to read for everybody and also that the right people can find your post to answer it.

FSXA Boost/Supercharger needle behaviour.

Messages
53
I'm wondering if someone can help. 2D gauge code to immitate high and low blower/supercharger settings that works perfectly with a single engine, when combined to work on four engines via a single lever, causes the needles in all four boost gauges to vibrate and swing back and forth. The MP does increase as required. All engine settings in the aircraft.cfg remain the same as the single engine version.

When turning off the high blower, occasionally the MP and associated needles will increase yet again instead of going back down to the lower setting. Is there perhaps a more efficient way to combine the four?

Thanks!


<Gauge Name="superchargers">
<Element>
<Select>
<Value>(L:Superchargers, bool) 0 &gt;
if{ (A:RECIP ENG NITROUS TANK VALVE:1,number)(A:RECIP ENG NITROUS TANK VALVE:2,number)(A:RECIP ENG NITROUS TANK VALVE:3,number)(A:RECIP ENG NITROUS TANK VALVE:4,number) 1 &lt; if{ 1 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) 2 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) 3 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) 4 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) } }
els{ (A:RECIP ENG NITROUS TANK VALVE:1,number)(A:RECIP ENG NITROUS TANK VALVE:2,number)(A:RECIP ENG NITROUS TANK VALVE:3,number)(A:RECIP ENG NITROUS TANK VALVE:4,number) 0 &gt; if{ 1 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) 2 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) 3 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) 4 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) } }
</Value>
</Select>
</Element>
</Gauge>
 
Messages
440
Country
us-wisconsin
Maybe something like this ??? -
XML:
<Value>
(L:Superchargers, bool) s1 (A:RECIP ENG NITROUS TANK VALVE:1, bool) != if{ 1 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) }
l1 (A:RECIP ENG NITROUS TANK VALVE:2, bool) != if{ 2 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) }
l1 (A:RECIP ENG NITROUS TANK VALVE:3, bool) != if{ 3 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) }
l1 (A:RECIP ENG NITROUS TANK VALVE:4, bool) != if{ 4 (&gt;K:NITROUS_TANK_VALVE_TOGGLE) }
</Value>
 
Top