Airport Services file not working in 2020

I’ve hit a wall with converting my 7S3 scenery from 2024 to 2020. Yes, I know it’s a lot easier to develop for 2020 first, but I wasn’t even sure I wanted to do a 2020 version, so here we are.

The issue is that my Services.spb file that worked perfectly in 2024 to eliminate fuel trucks, tugs, etc. doesn’t seem to have any effect in 2020. It’s put into my scenery’s “\AirportServices\7S3\” folder when the project is compiled, which seems consistent with the SDK.

The file is as follows:

<?xml version="1.0" encoding="utf-8"?>
<SimBase.Document Type="ServiceFile" version="1,0">
<Service.ParkingSpaceServices>
	<ParkingSpace name="RAMP GA" MinParkingSpaces="0">
		<ParkingTypes>
			<ParkingEntry ParkingType="RAMP_GA"/>
			<ParkingEntry ParkingType="RAMP_GA_SMALL"/>
			<ParkingEntry ParkingType="RAMP_GA_MEDIUM"/>
			<ParkingEntry ParkingType="RAMP_GA_LARGE"/>
			<ParkingEntry ParkingType="RAMP_GA_EXTRA"/>
			<ParkingEntry ParkingType="RAMP_CARGO"/>
			<ParkingEntry ParkingType="DOCK_GA"/>
			<ParkingEntry ParkingType="FUEL"/>
		</ParkingTypes>
		<IdleWorkers>
		</IdleWorkers>
		<Services>
		</Services>
		<SleepingActivities>

		</SleepingActivities>
	</ParkingSpace>
</Service.ParkingSpaceServices>
<Service.AirportServices>
	<Services>
	</Services>
</Service.AirportServices>
</SimBase.Document>

I only have two types of parking at this small airport; RAMP_GA_SMALL and RAMP_GA_MEDIUM. The horde of fuel trucks, tugs, and assorted vehicles is killing the look of the project.

Any idea what is going wrong?

I hate to bump my own post, but this issue is blocking a product release. Any ideas?

Does it work if you put it in AirportServices\Shared\? That’s where I have mine and it definitely works - I haven’t tried using the ICAO specific folder.

Confusingly, no, it doesn’t work. I’ve still got tugs everywhere, fire engines, and catering trucks all roaming about a small GA airport. It looks ridiculous. Thanks for replying, though.

Catering and fire trucks are not services, they are living world
The only way to remove them locally is set all parkings in the airport as DOCK_GA

Tugs are services though, yes? I’ve got lots of them as well. And doesn’t setting the parking to DOCK_GA mess up the AI traffic?

Correct, the tug is not supposed to be there , I have a similar report on my discord about them
So this should be tagged a as bug imho @Boris
(Wondering if those pesky tugs are now floatin at water airports lol)

About the other stuff, very unfortunate that we don’t have any other tool to remove them (except destroyng whole countries with livingworldcfg.xml)

Of course dock_ga will kill any AI

I wouldn’t expect any code changes for 2020. :confused:

Is it possible you or another scenery in your community or other directory is using the same name and overwriting your usage of “RAMP GA”. Perhaps rename it something more unique. I name mine after the airport where the services are being used, like “RAMP_MEDIUM_74MA”. Also, maybe the space in the name is messing it up. Just guesses on my part.

I also noticed my files use encoding”Windows-1252”. I don’t know if that has any affect.

Here’s an example of one I created for a small grass field I created (Collings American Heritage museum runway). I do keep hoping that someday Asobo will support calling a fuel at uncontrolled airports, perhaps they’d create an FBO frequency someday (I did ask for it a long time ago, but, I think before the Idea category was created). It’s been a very long time since I created Airport Services and LivingWorld files, but I believe the important part is the Probability=”0.0”.

Sorry, I don’t have my LivingWorld definition handy at the moment. I think that may be important, too to removing the ambient traffic. Sadly, they have yet to support Airport specific LivingWorld definitions, so, any given LivingWorld definition that removes things like the Buses and other stuff, do it for all airports in the region it defines. But, I tend to only fly GA grass to airports the size of KACK, so killing busses and stuff doesn’t bother me. I soooooo wish they would update the LivingWorld to be airport specfic and show that they care about small GA airports, too.

<SimBase.Document Type="ServiceFile" version="1,0">

	 
	<Service.ParkingSpaceServices>
	
		<ParkingSpace  name ="RAMP_MEDIUM_74MA" MinParkingSpaces="2">
			<ParkingTypes>
				<ParkingEntry ParkingType="RAMP_GA_Large"/>
				<ParkingEntry ParkingType="RAMP_GA_MEDIUM"/>
				<ParkingEntry ParkingType="RAMP_CARGO"/>
				<ParkingEntry ParkingType="RAMP_GA"/>	
			</ParkingTypes>
			
			<IdleWorkers>	
			</IdleWorkers>
			
			<Services>
			</Services> 
			
			<SleepingActivities>
				<SleepingAirlinerServices Probability="0.0" Timer="600"/>
				<SleepingSmallPlaneRefueling Probability="0.0" Timer="600" />
			</SleepingActivities>
		</ParkingSpace>
		
		<ParkingSpace  name ="RAMP_SMALL_74MA" MinParkingSpaces="2">
			<ParkingTypes>
				<ParkingEntry ParkingType="RAMP_GA_SMALL"/>					
			</ParkingTypes>
			<IdleWorkers>				
			</IdleWorkers>
			
			<Services>
			</Services> 
			
			<SleepingActivities>
				<SleepingAirlinerServices Probability="0" Timer="600"/>
				<SleepingSmallPlaneRefueling Probability="0" Timer="600" />
			</SleepingActivities>		
		</ParkingSpace>
	
		<ParkingSpace  name ="MISC_74MA" MinParkingSpaces="2">
			<ParkingTypes>
				<ParkingEntry ParkingType="DOCK_GA"/>
				<ParkingEntry ParkingType="RAMP_GA_EXTRA"/>
				<ParkingEntry ParkingType="RAMP_MIL_COMBAT"/>
				<ParkingEntry ParkingType="RAMP_MIL_CARGO"/>
			</ParkingTypes>
			<IdleWorkers>				
			</IdleWorkers>
			<Services>
			</Services>  
			<SleepingActivities>
				<SleepingAirlinerServices Probability="0" Timer="600"/>
				<SleepingSmallPlaneRefueling Probability="0" Timer="600" />
			</SleepingActivities>
		</ParkingSpace>	
	</Service.ParkingSpaceServices>
	
	<Service.AirportServices>
		<Services>
			<Service name ="Fuel" Filename="Shared\Asobo_Fuel\Fuel" ParkingType="VEHICLE" Frequency="0"/> 
		</Services>
	</Service.AirportServices>
	
</SimBase.Document>

Thanks for the reply! I tried your good idea of custom naming the ParkingSpace node, but no luck. There are still large aircraft tugs parked in many of my GA_SMALL spots. Maybe that’s controlled by the LivingWorld definition - although you’d think that any tiny parking space wouldn’t have a huge airliner tug parked at it. Anyway, I’m going to go ahead and release this small airport for 2020 with the caveat that the users will need to turn off airport vehicles in order to have a decently realistic experience. For now, that’ll have to do.

Yeah, it’s tough. We super need the ability to localize the LivingWorld assignments to airports like we can for Airport Services. I’ll share my LivingWorld definition when I get back to my other computer. Unfortunately, as you know it affects a whole region. So people who like to fly the big iron and small GA and grass fields will have to turn it on and off. I have a ton of airports I developed but didn’t release because I couldn’t figure out a good way of explaining how to manage turning my LivingWorldCfg on and off for people. It really kills things when you’re have a bus driving around a small grass field. Plus, I’d love to add a pickup truck refueling rig like a lot of small fields have out in the sticks. Maybe someday they’ll hear us.

It sure would be nice if they gave us the ability to create at least our own LivingWorld regions that can exclude the main regions where they sit and apply the new definition. Maybe it could work with an Exclusion Rectangle? As I understand, they thought about it, but likely realized there were issues. Then again, maybe there’s undocumented features in there we can use. I did the best I could with the documentation they gave us to modify the environment for small GA fields and grass fields.

This isn’t my main LivingWorld config that I settled on, but here’s an example of one for grass field and small GA airports with light facilities. It does allow some ambient traffic at Heavy Gates, so it’s not all bad. I had a chance to get my main one tonight, but I forgot, lol. I’ll post it, too, later. That one I compiled into it’s own package labeled z_scenery-flyingscool-livingworld-medapt so it overwrites any scenery that may have tried to screw up my install with their poorly written one and I forget to clean it out. I hate it when authors erase everything and set it up wrong and it erases GroundServices in my whole world. That one is set up to support up to airports like KBED and KACK (no walkway gates) and grass fields too so it doesn’t have vehicles that won’t be on those airports. I’m no expert, but it’s the best I could figure out after lots of testing.

<SimBase.Document>
<LivingWorld.LivingWorldSettings>
	<GeneralSettings>
		<AmbientVehiclesQuantityByParking>
			<ParkingEntry ParkingType="RAMP_GA_SMALL" Rate="0.001"/>
			<ParkingEntry ParkingType="RAMP_GA_MEDIUM" Rate="0.001"/>
			<ParkingEntry ParkingType="RAMP_GA_LARGE" Rate="0.0"/>
			<ParkingEntry ParkingType="RAMP_CARGO" Rate="0.0"/>
			<ParkingEntry ParkingType="GATE_SMALL" Rate="0.0"/>
			<ParkingEntry ParkingType="GATE_MEDIUM" Rate="0.0"/>
			<ParkingEntry ParkingType="GATE_HEAVY" Rate="1.0"/>
		</AmbientVehiclesQuantityByParking>	
		<ParkedAircraftsQuantityByParking>
			<ParkingEntryWeighted ParkingType="RAMP_GA_SMALL" Rate="0.9" GoodToBadMatchRate="0.9"/>
			<ParkingEntryWeighted ParkingType="RAMP_GA_MEDIUM" Rate="0.9" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="GATE_SMALL" Rate="0.9" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="RAMP_CARGO" Rate="0.9" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="GATE_MEDIUM" Rate="0.9" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="GATE_HEAVY" Rate="0.9" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="RAMP_GA_LARGE" Rate="0.9" GoodToBadMatchRate="0.5"/>
		</ParkedAircraftsQuantityByParking>
		<FrequencyOfServicesOnEmptyParkings Rate="0.01"/>
		<RatioOfAmbientVehiclesThatAreImmobile Rate="0.15"/>
	</GeneralSettings>

	<LivingWorldRegion RegionID="B" RightSideDrive="TRUE">
		<!-- North America North -->
		<Airport>
			<PushbackTugs>
				<ContainerEntry ContainerTitle="ASO_Pushback_Blue" EntryWeight="1"/>
			</PushbackTugs>
			<SmallPushbacks>
				<ContainerEntry ContainerTitle="ASO_Aircraft_Caddy" EntryWeight="1"/>
			</SmallPushbacks>
			<FuelTrucks>
				<ContainerEntry ContainerTitle="ASO_FuelTruck01_Black" EntryWeight="1"/>
			</FuelTrucks>
			<AmbientTraffic>
				<ContainerEntry ContainerTitle="ASO_Operation_Truck_White" EntryWeight="2"/>
				<ContainerEntry ContainerTitle="ASO_Operation_Truck_Yellow" EntryWeight="1"/>
				<ContainerEntry ContainerTitle="ASO_TruckUtility01" EntryWeight="20"/>
				<ContainerEntry ContainerTitle="ASO_CarUtility01" EntryWeight="18"/>
			</AmbientTraffic>
		</Airport>
	</LivingWorldRegion>
</LivingWorld.LivingWorldSettings>
</SimBase.Document>

Ooh, ooh, I did have them. I have 3, but you can only use one at a time, the last one alphabettically taking precedence if you try to use more than one at a time. This one is for Small Airports… SmallApt_LWcfg.xml

<SimBase.Document>
	<LivingWorld.LivingWorldSettings>
		<GeneralSettings>
			<AmbientVehiclesQuantityByParking>
				<ParkingEntry ParkingType="RAMP_GA_SMALL" Rate="0.01"/>
				<ParkingEntry ParkingType="RAMP_GA_MEDIUM" Rate="0.15"/>
				<ParkingEntry ParkingType="RAMP_GA_LARGE" Rate="0.15"/>
				<ParkingEntry ParkingType="RAMP_CARGO" Rate="0.1"/>
				<ParkingEntry ParkingType="GATE_SMALL" Rate="0.1"/>
				<ParkingEntry ParkingType="GATE_MEDIUM" Rate="0.1"/>
				<ParkingEntry ParkingType="GATE_HEAVY" Rate="0.1"/>
			</AmbientVehiclesQuantityByParking>	
			<ParkedAircraftsQuantityByParking>
				<ParkingEntryWeighted ParkingType="RAMP_GA_SMALL" Rate="0.9" GoodToBadMatchRate="0.7"/>
				<ParkingEntryWeighted ParkingType="RAMP_GA_MEDIUM" Rate="0.9" GoodToBadMatchRate="0.8"/>
				<ParkingEntryWeighted ParkingType="RAMP_GA_LARGE" Rate="0.9" GoodToBadMatchRate="0.8"/>
				<ParkingEntryWeighted ParkingType="RAMP_CARGO" Rate="0.9" GoodToBadMatchRate="0.85"/>
				<ParkingEntryWeighted ParkingType="GATE_SMALL" Rate="0.9" GoodToBadMatchRate="0.8"/>
				<ParkingEntryWeighted ParkingType="GATE_MEDIUM" Rate="0.9" GoodToBadMatchRate="0.95"/>
				<ParkingEntryWeighted ParkingType="GATE_HEAVY" Rate="0.9" GoodToBadMatchRate="0.95"/>
			</ParkedAircraftsQuantityByParking>
			<FrequencyOfServicesOnEmptyParkings Rate="0.02"/>
			<RatioOfAmbientVehiclesThatAreImmobile Rate="0.05"/>
		</GeneralSettings>

		<LivingWorldRegion RegionID="B" RightSideDrive="TRUE">
			<!-- North America North -->
			<Airport>
				<PushbackTugs>
					<ContainerEntry ContainerTitle="ASO_Tug01_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Tug02_White" EntryWeight="1"/>
				</PushbackTugs>
				<SmallPushbacks>
					<ContainerEntry ContainerTitle="ASO_Aircraft_Caddy" EntryWeight="1"/>
				</SmallPushbacks>
				<FuelTrucks>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_Black" EntryWeight="4"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_Black" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_White" EntryWeight="4"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_White" EntryWeight="1"/>
				</FuelTrucks>
				<AmbientTraffic>
					<ContainerEntry ContainerTitle="ASO_Operation_Truck_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Operation_Truck_Yellow" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_CarFacillity01_Black" EntryWeight="8"/>
					<ContainerEntry ContainerTitle="ASO_CarFacillity01_White" EntryWeight="8"/>
					<ContainerEntry ContainerTitle="ASO_TruckFacility01_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_TruckFacility01_Black" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_TruckFacility01_Yellow" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_TruckUtility01" EntryWeight="12"/>
					<ContainerEntry ContainerTitle="ASO_CarUtility01" EntryWeight="12"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_Black" EntryWeight="8"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_Black" EntryWeight="7"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_White" EntryWeight="8"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_White" EntryWeight="7"/>
				</AmbientTraffic>
				<GroundPowerUnits>
					<ContainerEntry ContainerTitle="ASO_Ground_Power_Unit" EntryWeight="1"/>
				</GroundPowerUnits>
				</Airport>
		</LivingWorldRegion>
	</LivingWorld.LivingWorldSettings>
</SimBase.Document>

This one is for “Medium Airports”, like KBED and KACK which have tarmac gates… MedApt_LWcfg.xml

<SimBase.Document>
	<LivingWorld.LivingWorldSettings>
		<GeneralSettings>
			<AmbientVehiclesQuantityByParking>
				<ParkingEntry ParkingType="RAMP_GA_SMALL" Rate="0.01"/>
				<ParkingEntry ParkingType="RAMP_GA_MEDIUM" Rate="0.25"/>
				<ParkingEntry ParkingType="RAMP_GA_LARGE" Rate="0.25"/>
				<ParkingEntry ParkingType="RAMP_CARGO" Rate="0.3"/>
				<ParkingEntry ParkingType="GATE_SMALL" Rate="0.3"/>
				<ParkingEntry ParkingType="GATE_MEDIUM" Rate="0.3"/>
				<ParkingEntry ParkingType="GATE_HEAVY" Rate="0.3"/>
				<ParkingEntry ParkingType="RAMP_MIL_CARGO" Rate="0.3"/>
				<ParkingEntry ParkingType="RAMP_MIL_COMBAT" Rate="0.3"/>
				<ParkingEntry ParkingType="RAMP_GA_EXTRA" Rate="0.3"/>
				<ParkingEntry ParkingType="GATE_EXTRA" Rate="0.3"/>
			</AmbientVehiclesQuantityByParking>	
			<ParkedAircraftsQuantityByParking>
				<ParkingEntryWeighted ParkingType="RAMP_GA_SMALL" Rate="0.5" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="RAMP_GA_MEDIUM" Rate="0.95" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="RAMP_GA_LARGE" Rate="0.95" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="RAMP_CARGO" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="GATE_SMALL" Rate="0.9" GoodToBadMatchRate="0.5"/>
				<ParkingEntryWeighted ParkingType="GATE_MEDIUM" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="GATE_HEAVY" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="DOCK_GA" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="RAMP_GA_EXTRA" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="GATE_EXTRA" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="RAMP_MIL_COMBAT" Rate="0.9" GoodToBadMatchRate="0.2"/>
				<ParkingEntryWeighted ParkingType="RAMP_MIL_CARGO" Rate="0.9" GoodToBadMatchRate="0.2"/>
			</ParkedAircraftsQuantityByParking>
			<FrequencyOfServicesOnEmptyParkings Rate="0.02"/>
			<RatioOfAmbientVehiclesThatAreImmobile Rate="0.1"/>
		</GeneralSettings>

		<LivingWorldRegion RegionID="B" RightSideDrive="TRUE">
			<!-- North America North -->
				<Airport>
				<PushbackTugs>
					<ContainerEntry ContainerTitle="ASO_Tug01_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Tug02_White" EntryWeight="1"/>
				</PushbackTugs>
				<SmallPushbacks>
					<ContainerEntry ContainerTitle="ASO_Aircraft_Caddy" EntryWeight="1"/>
				</SmallPushbacks>
				<FuelTrucks>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_Black" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_Black" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_White" EntryWeight="1"/>
				</FuelTrucks>
				<AmbientTraffic>
					<ContainerEntry ContainerTitle="ASO_Tug01_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Tug02_White" EntryWeight="4"/>
					<ContainerEntry ContainerTitle="ASO_Operation_Truck_White" EntryWeight="6"/>
					<ContainerEntry ContainerTitle="ASO_Operation_Truck_Yellow" EntryWeight="6"/>
					<ContainerEntry ContainerTitle="ASO_CarFacillity01_Black" EntryWeight="8"/>
					<ContainerEntry ContainerTitle="ASO_CarFacillity01_White" EntryWeight="8"/>
					<ContainerEntry ContainerTitle="ASO_TruckFacility01_White" EntryWeight="3"/>
					<ContainerEntry ContainerTitle="ASO_TruckFacility01_Black" EntryWeight="3/">
					<ContainerEntry ContainerTitle="ASO_TruckFacility01_Yellow" EntryWeight="3"/>
					<ContainerEntry ContainerTitle="ASO_TruckUtility01" EntryWeight="4"/>
					<ContainerEntry ContainerTitle="ASO_CarUtility01" EntryWeight="4"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_Black" EntryWeight="7"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_Black" EntryWeight="7"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck01_White" EntryWeight="7"/>
					<ContainerEntry ContainerTitle="ASO_FuelTruck02_White" EntryWeight="7"/>
				</AmbientTraffic>
				<BaggageLoaders>
					<ContainerEntry ContainerTitle="Aso_Baggage_Loader_01" EntryWeight="1"/>
				</BaggageLoaders>
				<BaggageCarts>
					<ContainerEntry ContainerTitle="ASO_Tug01_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Tug02_White" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Tug01_Yellow" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Tug02_Blue" EntryWeight="1"/>
				</BaggageCarts>
				<BaggageDollies>
					<ContainerEntry ContainerTitle="ASO_Baggage_Cart01" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Baggage_Cart02" EntryWeight="1"/>
				</BaggageDollies>
				<CateringTrucks>
					<ContainerEntry ContainerTitle="ASO_Catering_Truck_01" EntryWeight="1"/>
				</CateringTrucks>
				<BoardingRamps>
					<ContainerEntry ContainerTitle="ASO_Boarding_Stairs" EntryWeight="1"/>
					<ContainerEntry ContainerTitle="ASO_Boarding_Stairs_Red" EntryWeight="0"/>
					<ContainerEntry ContainerTitle="ASO_Boarding_Stairs_Yellow" EntryWeight="0"/>
				</BoardingRamps>
				<GroundPowerUnits>
					<ContainerEntry ContainerTitle="ASO_Ground_Power_Unit" EntryWeight="1"/>
				</GroundPowerUnits>
			</Airport>
		</LivingWorldRegion>
	</LivingWorld.LivingWorldSettings>
</SimBase.Document>

And this one is for grass airports…. GrsApt_LWcfg.xml Note that by not including the Freeway traffic and idelworker etc. sections, the default versions of those continue to be used. Essentially I’m limiting the vehicles that are available in each, and adjusting the frequency they show up.

<SimBase.Document>
<LivingWorld.LivingWorldSettings>
	<GeneralSettings>
		<AmbientVehiclesQuantityByParking>
			<ParkingEntry ParkingType="RAMP_GA_SMALL" Rate="0.001"/>
			<ParkingEntry ParkingType="RAMP_GA_MEDIUM" Rate="0.001"/>
			<ParkingEntry ParkingType="RAMP_GA_LARGE" Rate="0.0"/>
			<ParkingEntry ParkingType="RAMP_CARGO" Rate="0.0"/>
			<ParkingEntry ParkingType="GATE_SMALL" Rate="0.0"/>
			<ParkingEntry ParkingType="GATE_MEDIUM" Rate="0.0"/>
			<ParkingEntry ParkingType="GATE_HEAVY" Rate="1.0"/>
		</AmbientVehiclesQuantityByParking>	
		<ParkedAircraftsQuantityByParking>
			<ParkingEntryWeighted ParkingType="RAMP_GA_SMALL" Rate="0.5" GoodToBadMatchRate="0.9"/>
			<ParkingEntryWeighted ParkingType="RAMP_GA_MEDIUM" Rate="0.5" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="GATE_SMALL" Rate="0.5" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="RAMP_CARGO" Rate="0.5" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="GATE_MEDIUM" Rate="0.5" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="GATE_HEAVY" Rate="0.5" GoodToBadMatchRate="0.5"/>
			<ParkingEntryWeighted ParkingType="RAMP_GA_LARGE" Rate="0.5" GoodToBadMatchRate="0.5"/>
		</ParkedAircraftsQuantityByParking>
		<FrequencyOfServicesOnEmptyParkings Rate="0.01"/>
		<RatioOfAmbientVehiclesThatAreImmobile Rate="0.15"/>
	</GeneralSettings>

	<LivingWorldRegion RegionID="B" RightSideDrive="TRUE">
		<!-- North America North -->
		<Airport>
			<PushbackTugs>
				<ContainerEntry ContainerTitle="ASO_Pushback_Blue" EntryWeight="1"/>
			</PushbackTugs>
			<SmallPushbacks>
				<ContainerEntry ContainerTitle="ASO_Aircraft_Caddy" EntryWeight="1"/>
			</SmallPushbacks>
			<FuelTrucks>
				<ContainerEntry ContainerTitle="ASO_FuelTruck01_Black" EntryWeight="1"/>
			</FuelTrucks>
			<AmbientTraffic>
				<ContainerEntry ContainerTitle="ASO_Operation_Truck_White" EntryWeight="2"/>
				<ContainerEntry ContainerTitle="ASO_Operation_Truck_Yellow" EntryWeight="1"/>
				<ContainerEntry ContainerTitle="ASO_TruckUtility01" EntryWeight="20"/>
				<ContainerEntry ContainerTitle="ASO_CarUtility01" EntryWeight="18"/>
			</AmbientTraffic>
		</Airport>
	</LivingWorldRegion>
</LivingWorld.LivingWorldSettings>
</SimBase.Document>