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

MSFS24 SDK- How to prevent vehicles from spawning at taxiway parking

Severin

Resource contributor
Messages
256
Country
ca-ontario
Would like to prevent vehicles from lingering around the parking spot. How xan I accomplish that?
wip.png
 
Hello,

You can modify the airport services file. Alternatively, I believe you can use GA_DOCK as the parking type.
 
DOCK_GA is for seaports to accommodate seaplanes... Making a suitable services file for your airport is a better solution.
Here is my take on a services.xml file that removes all vehicles and personell from the parkings (this one is used in several of my small airports/strips available on fsaddons.fi).

Code:
<?xml version="1.0" encoding="Windows-1252"?>
<SimBase.Document Type="ServiceFile" version="1,0">
    <Service.ParkingSpaceServices>
        <ParkingSpace  name ="RAMP SMALL" MinParkingSpaces="1">
            <ParkingTypes>
                <ParkingEntry ParkingType="RAMP_GA_SMALL"/>                          
                <ParkingEntry ParkingType="RAMP_GA_MEDIUM"/>
                <ParkingEntry ParkingType="RAMP_GA_LARGE"/>      
                <ParkingEntry ParkingType="RAMP_GA"/>  
            </ParkingTypes>
            <IdleWorkers />              
            <Services />          
            <SleepingActivities />
        </ParkingSpace>   
    </Service.ParkingSpaceServices>   
    <Service.AirportServices>
        <Services />
    </Service.AirportServices>   
</SimBase.Document>
 
DOCK_GA is for seaports to accommodate seaplanes... Making a suitable services file for your airport is a better solution.
Here is my take on a services.xml file that removes all vehicles and personell from the parkings (this one is used in several of my small airports/strips available on fsaddons.fi).

Code:
<?xml version="1.0" encoding="Windows-1252"?>
<SimBase.Document Type="ServiceFile" version="1,0">
    <Service.ParkingSpaceServices>
        <ParkingSpace  name ="RAMP SMALL" MinParkingSpaces="1">
            <ParkingTypes>
                <ParkingEntry ParkingType="RAMP_GA_SMALL"/>                         
                <ParkingEntry ParkingType="RAMP_GA_MEDIUM"/>
                <ParkingEntry ParkingType="RAMP_GA_LARGE"/>     
                <ParkingEntry ParkingType="RAMP_GA"/> 
            </ParkingTypes>
            <IdleWorkers />             
            <Services />         
            <SleepingActivities />
        </ParkingSpace>  
    </Service.ParkingSpaceServices>  
    <Service.AirportServices>
        <Services />
    </Service.AirportServices>  
</SimBase.Document>
Thank you, that got to the desired point faster
 
Back
Top