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

Sus Scrofa SS-4P converted for MS Flight

Messages
8
Country
germany
2017-2-14_20-49-14-475.jpg
 
Hello Flight Friends,i converted SS-4P with Toolkit 1.1.30 from FSX to MS Flight! So far so good,after some work manualy it`working fine. It have strong Performance,that means faster like P 51 and climb up to over 60.000 ft! It have the Sound of Maule with a higher rpm and it sounds very nice(outside and inside with Cockpit View) Propeller,Flaps,Gear,Lights(always on) and all Steering controls working perfect. There are to Pilots in Cockpit,they are moving Heads to the side wich you are steering.You can open Doors too,only left or left and right together(Buttons on Keyboard O or I+O) OK,now what`s not working:Panel is dark,no Instruments to see,Steering Wheel and Pedals are moving but no contact points on it for steering about Cockpit mode! Second Problem: If you fly in Multiplayer with two SS-4P,you can see a 3 Pilot(our MS Flight Pilot) who is standing on the Roof of the other Plane,not on your own Plane! Maybe a Pic with Cockpit View too
2017-2-13_21-58-16-940.jpg
Maybe someone can help me,how to make Cockpit and Panel funtionaly and how i can remove the 3. Pilot or maybe the two others in Cockpit! Thanks very much,best regards,Steff
 
Hi BergSpreu69,
Nice pictures! I'm glad someone else is creating aircraft for Flight!

In answer to your questions:
  • How can I remove the two other pilots in the cockpit:
    I'm assuming you are referring to pilots that are in the original FSX model. It maybe possible to remove the pilots using ModelConverterX (http://www.fsdeveloper.com/forum/showthread.php?t=14215), depending on how the original model was built:
    • If the two pilots have independent meshes (i.e., the meshes are not part of any other meshes, such as the aircraft fuselage), you can delete them using the hierarchy viewer/editor within ModelConverterX (look for it's icon in the toolbar).
    • If the pilot meshes are also part of other meshes, the only way to remove them (assuming that you are not the author of the FSX model, and so do not have access to the original model files from which the FSX model was created) is, using ModelConverterX, to export the FSX model to a format that can be imported into a modelling application such as 3dmax or Gmax, removing the meshes, then rebuilding the model as an FSX model. This would be a lot of work & beyond the scope of this thread to discuss how to do.
  • How I can remove the 3rd (MS Flight) Pilot:
    In the livery file for each of your aircraft's liveries, you will see a line like this (the GUIDs will be different):
    <SimDataReference DataValue="{A0B6D92F-F36C-41f3-A30F-5C9F87844444}" DataName="CrewStations" />

    it could also look like this:
    <SimDataReference DataName="CrewStations" DataValue="{A0B6D92F-F36C-41f3-A30F-5C9F87844444}" />

    Delete this line from each of the liveries, and delete the two corresponding files in the sim folder:
    • CrewStations.SimData and
    • CrewStations.SimData.meta
This will prevent the Flight pilot from being rendered.​
  • Cockpit and Panel functionality:
    This is a bit trickier to explain, as there are two types of gauges in FSX: XML gauges, usually found in older FSX models, and "built-in" gauges, that are part of the model itself. The fact that you have 'dark' panels (as shown in the interior picture) suggests that your FSX model has XML gauges. The following describes how to make them visible in Flight. Note that this is a very brief overview. Converting XML gauges to work in Flight takes a lot of work to do well.

    First, you need to examine the interior aircraft model in ModelConverterX to determine the number of (Virtual cockpit (VC) panels in the model. The number should be the same as the number of VC Cockpit entries in the FSX panel.cfg file.

    Each panel has a "dummy" texture associated with it that begins with the "$" character. For example, your model may have two panels named $VC-SS-4P-01 and $VC-SS-4P-02. I've just made up these two names - the actual names will be different.

    In each Flight .livery file, you need to add an additional line in the <Visuals> section for each panel. For example, for a model with two VC panels, it would look like this:
    <Visuals>
    <ExteriorMaterialVariationID>{2E41CF6D-44D8-4950-8304-FFD744EAAAAA}</ExteriorMaterialVariationID>
    <InteriorMaterialVariationID>{EE335A04-44AF-4B21-B38A-AC8D4FCBFFBB}</InteriorMaterialVariationID>
    <PanelID>{85D0AAF4-884F-435F-BB46-384CD75G33GG}</PanelID>
    <PanelID>{EB776706-F3F8-4D73-B4C4-2CAC570V88VV}</PanelID>
    </Visuals>

    The GUIDs for the Exterior & Interior material variation are created by Flight toolkit when you convert the model. Don't change these. You will need to create a new GUID for each panel entry that you add (Please do NOT use the GUIDS above - I just made these up. If you do not have a GUID generator, you can download one for free from the Microsoft download center).

    Next, you need to modify the ConversionOptions.xml file and add an entry for each panel. For example, using the names and GUIDs above, it you would add
    <ConversionOptions.TextureReplacement>
    <FSXTextureName>$VC-SS-4P-01</FSXTextureName>
    <AssetID>{85D0AAF4-884F-435F-BB46-384CD75G33GG}</AssetID>
    </ConversionOptions.TextureReplacement>

    <ConversionOptions.TextureReplacement>
    <FSXTextureName>$VC-SS-4P-02</FSXTextureName>
    <AssetID>{EB776706-F3F8-4D73-B4C4-2CAC570V88VV}</AssetID>
    </ConversionOptions.TextureReplacement>

    This tells the converter to give the two panel textures specific GUIDS - ones that you have defined in the two <PanelID> entries in the livery file(s)

    For each panel, you need to create a meta file for the file that describes which gauge files to associate with the panel. Note that the Asset.Metadata is the GUID that you specified in the .livery file.
    E.g:
    <?xml version="1.0" encoding="utf-8"?>
    <SimBase.Document version="2,0">
    <Asset.Metadata id="{85D0AAF4-884F-435F-BB46-384CD75G33GG}">
    <Type>{36EF08DD-F76D-4DD7-AE36-999BE101B48F}</Type>
    </Asset.Metadata>
    </SimBase.Document>

    Do not change the GUID for <Type>. The Type GUID is defined by Flight.
    This meta file (let's call it SS-4P_VC_Panel_01.xml.meta) refers to the panel xml file (which would be called SS-4P_VC_Panel_01.xml) that actually lists the gauges in the panel.
    E.g., a panel with two gauges might look something like this:

    <?xml version="1.0" encoding="utf-8"?>
    <SimBase.Document version="2,0">
    <SimPanel.VirtualCockpit GaugeLayoutSize="512,512" AlphaBlend="0" Visible="True">

    <GaugeReference GaugeId="{3A712E43-254A-493e-83FE-B66666BD8518}">
    <Position>371,356</Position>
    <Size>141,141</Size>
    </GaugeReference>

    <GaugeReference GaugeId="{3C316296-5F2A-48ed-AA5D-199999B33958}">
    <Position>326,0</Position>
    <Size>186,177</Size>
    </GaugeReference>

    </SimPanel.VirtualCockpit>
    </SimBase.Document>

    The GaugeLayoutSize, <Position> and <Size> information comes from the VC sections of the FSX panel.cfg file. Again, you will need to create new GUIDs for your gauges - I just made up the ones above.

    Each of the GaugeId GUIDS in turn refers to an xml file that actually describes how to render a specific gauge (airspeed, altimeter, etc.). It is beyond the scope of this thread to describe how to build each of these gauge files. I'd suggest looking at some of the gauge files in Flight's core.pak file to see how it is done.
Hope this helps,
regards,
FS-Tester.
 
Hello Friends,much Thanks for your Replys! Sorry eelis,but the Addon is still not available. If you see i have to do some manualy work on it,thanks.

Thanks to you FS-Tester for your huge Answer,now beginns the real work for me! I will do it step by step and beginn with the Pilots,i let you know what`s happen with my work!

I`ve installed all your Addons (Aircraft) and they working fine,also i uploaded your Preview Videos to my youtube Channel to make they public,i hope that is ok for you!? I changed Music on BB58 Video,cause your original was not legal in Germany(Copyright/GEMA)

Ok,much thanks again,have a good Time,best regards,Steff
 
Hi BergSpreu69,
I'm pleased that you like my aircraft & that they work as expected. FYI, I've just uploaded a beta version of a converted FSX Extra 300S (see my Extra for Microsoft Flight Preview Movie thread for the download location). I have no problem with you uploading my videos - they are made available for anyone to watch or use as they like. I delete them from the server after a while in order to free up space, so neither are now available (I've removed the links too).

Good luck with your continuing conversion adventure:)
regards, FS Tester.

 
Hello FS Tester,great Job! Extra 300S looks very nice in Hangar and all is working in Flight. A new Highlight is the smoke,tested it in Multiplayer with other Flyers too and it`s working fine. I searched with Google little bit about Red Bull Challenge and found a nice Paint Name is " Breitling " Watches they build. Now i have a Repaint in work and have a Preview Pic
2017-2-27_13-42-0-611.jpg
 
Hi AlejFis. If you are referring to the Extra300S, you can download the beata v1 version now. See my "Extra for Microsoft Flight Preview Movie" thread on this forum for the download location (http://www.fsdeveloper.com/forum/threads/extra-for-microsoft-flight-preview-movie.439161/).
Regards,
FS Tester

That I already downloaded it, I was referring to the Sus Scrofa SS-4P, anyway, thanks for the attention

2017-2-20_4-43-41-532.jpg



I would also like to comment that with the ultralight the same problem as discussed above occurs. Thank you
 
AlejFis, how did you manage that, I'm not having this extra 'passenger' on mine?

-eelis-
 
Those extra passengers are only seen in multiplayer, BergSpreu69 comments something similar in the first message of this thread. I have not done anything to make that happen.
 
Hey Guys:
I've been working in some alpha conversions of fsx planes. They aren't a finish work. But at least they fly, they have sounds (thanks to the valuable info from FS-Tester), have landing lights and two of them came with some working gauges. In the link below you also will find dozens of liveries. Some of my own, others are modifications of somebody else. Explore and try whatever you want. Enjoy
Oscar.

link:https://1drv.ms/f/s!AmXbXm2QYzhEe5fiZk4EYT-Qczk
 
Last edited:
Hi AlejFis. Thanks for posting the Aircreation pic. Just FYI, I do not have internet access at home (I access the internet using a public access point in town), so cannot test any of my aircraft in multiplayer scenarios.

This is most odd. My Aircreation model does not include code for displaying a default Flight pilot, so I'm surprised to see one. The fact that the pilot only appears in multiplayer, and only for other players (i.e. not one's own aircraft) is interesting. Flight may "assume" that, in multiplayer mode, there will always be a Flight pilot as part of the model. The fact that the pilot is shown in the position of the default "standing" mesh (i.e., it is not using a granny transform to make the pilot "sit") suggests that the multiplayer code might be written to always display a multiplayer user's avatar as the pilot, and not finding any pilot code, reverts to the default mesh for that users avatar.

Does anyone see a similar problem with my Beech Baron or Extra when flying with others in multiplayer? Both have Flight pilots included in the simdata code for the model.

w.r.t. comment by BergSpreu69 of his Sus Scrofa SS-4P having a similar problem: Now that I've seen the picture of the Aircreation, This would back up my hypothesis above, if he had not included the two CrewStations .simdata files in his model. In that case, if I'm right, he would not see any Flight pilot in his aircraft, but would see a "standing" Flight pilot in other multiplayer aircraft.

If I'm right, since we cannot change the multiplayer code for Flight, one solution would be to always include a Flight pilot in a converted FSX model. This itself is a problem if one cannot remove the FSX pilot (if it exists) prior to conversion. In this case an option might be to position the Flight pilot in the co-pilot seat of the aircraft (or, in the case of the Aircreation, in the rear seat). I have not tested this, though.

regards,
FS Tester.
 
Howdy FS Tester, your converted BB 58 and Extra 300 are working fine and in Multiplayer mode with other Players is only the Flight Pilot to see! He is on his Pilot seat and no other " Stuntman " on Plane Roof to see! All good,regards,Steff
 
Thanks for checking that out, Steff. I've just uploaded a test Aircreation .FlightAddon that contains a Flight pilot that I hope will fix the "stuntman" problem that you and AlejFis reported. See my Aircreation 582SL Trike Ultralight for MS Flight post for more details and the download link.

best regards,
FS Tester
 
2017-3-20_2-3-43-303.jpg


Hello, as you can see in this image the problem has been solved. You no longer see unwanted passengers. Several paintings are missing that have been lost in the test. I think this solution will be valid for other planes where the problem appears. Thank you very much for your work.
 
Thanks for testing this, AlejFis. Yup, I removed some of the liveries (paintings) from the test addon to reduce the file size. I'll be adding them back when I release the final version. FYI, I've also fixed a FSX texture bug that I discovered in the original FSX files this week, as well as added "mouse-clickability" to the radio & "mouse-clickability" and a barometric pressure adjustment knob to the altitude gauge. I'll try to download another test version with all the textures and fixes next week.
regards,
FS Tester
 
Back
Top