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?