• 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.

How to set PAYLOAD STATION WEIGHT:x values

Messages
2
Country
unitedstates
I have been struggling to set payload weights, or even get the number of payload stations, using c#. Setting fuel works fine so I at least understand the basic concept, but when I try and set payload station weight it doesnt have any effect, and when I try and get the count it get an error of UNRECOGNIZED_ID.

After setting up the DataDefinition I use the following code:

DoubleProp payload1 = new()
{
value = 15.25f
};
SimConnect.SetDataOnSimObject(DataDefinition.PayloadStation_1, SimConnect.SIMCONNECT_OBJECT_ID_USER, SIMCONNECT_DATA_SET_FLAG.DEFAULT,
payload1);

I also just tried setting throttle lever position 1 which seems to be the same concept and that worked fine as well, which makes me think maybe its just not working for cargo weights.

Anyone have any ideas on this? It's driving me nuts. Thanks in advance.
 
Messages
2
Country
unitedstates
I thought I would post an answer to my own question in case anyone else stumbles across this. The answer is that it does work, it just doesnt show up in the weight configuration UI in game. If you do something crazy like put 6000 pounds in the 5 cargo slot on a 172 you will see it wheelie. If you just add 100 pounds to a cargo slot you may not notice it at all. If you do a get on the total weight you will see your new weights reflected, just not in game.
 

DragonflightDesign

Resource contributor
Messages
947
Country
northernireland
Further addendum: if you query the updated weights in SimConnect you will see them. I've also found that the dotNet wrapper for the SimConnect COM call is unstable and will intermittantly return an untrappable exception on the Win32 messaging system, resulting in a CTD.
 
Top