Hi Again.
Keep Cool. There is no minimum age to start with flying....... as a good friend said.... A 2 Year old baby can fly a Airbus A380 if it find the Autopilot Master Switch
***
So the negative shown Value on the Display is a little issue in the Data Format. I try to simple explane this
A Integer Offset like this can have 2 states.... SIGNED and UNSIGNED.
( You can google this or look in Wikipedia for detailed information )
Unsigned means it starts at Zero 0 and ends on highest Number ( This 2 Byte Offset for example goes from 0 to 65535 )
Signed means it´s range is split in 2 halves 50% Negative and 50% Positiv ( This 2 Byte Offset the is shown from -32768 to +32767 )
Basicly the raw data is the same.... it´s only important how we read it.....
Mobiflight read it like Signed.... But PMDG support it unsigned. This occures that all numbers bigger then 32767 are shown negative reversed.....
32768= MINUS 32768
32769= MINUS 32767
32770= MINUS 32766
and so on.
Note... This is not real a Bug. Sebastian not want to make a additional choice field for the user and define ALL Offsets in same way.... 98% Of Offsets workes fine. But sometimes a Offset is unsigned and then we need the follow workflow.
******
TO SOLVE THIS
Here you need a simple Compare Logic to check this..... Always a Value is Negative you must Add 65536 to it .... then its correct positive again.
Please use Compare Tab.... Klick Checkmark on and set...
In the IF field use "less then Zero" < 0
In the THEN field use $+65536
in the ELSE field you can input $
Now everytime this Value is less then Zero ( Negative) Mobiflight Add 65536 to the Value.... If Value is already positiv it do nothing and only show the original value.
*******
If you get another problems simply ask, or use search engine..... This is talked a lot of time already.