├── .gitattributes ├── .gitignore ├── Animations ├── Animation_AggressiveMode.gif ├── Animation_AggressiveMode.pptx ├── Animation_LegacyMode.gif ├── Animation_LegacyMode.pptx ├── Animation_LegacyMode_Optimized.gif ├── Animation_TramMode_LightRail.gif ├── Animation_TramMode_LightRail.pptx ├── Animation_TramMode_TrueTram.gif ├── Animation_TramMode_TrueTram.pptx ├── Animation_Vanilla.gif ├── Animation_Vanilla.pptx ├── Animation_Vanilla_Optimmizd.gif ├── BasicTest.gif ├── BasicTest.pptx ├── README.md ├── SelfBalancing.gif ├── SelfBalancing.pptx ├── SelfBalancingMiddle.png ├── SelfBalancingMiddle.pptx └── basicgiftest.gif ├── ExpressBusServices ├── ExpressBusServices.sln └── ExpressBusServices │ ├── BusStopSkippingLookupTable.cs │ ├── DataTypes │ ├── DepartureIntention.cs │ ├── TransportLineVehicleProgress.cs │ ├── VehicleLineProgress.cs │ └── VehiclePaxDeltaInfo.cs │ ├── DepartureChecker.cs │ ├── EBSModConfig.cs │ ├── ExpressBusServices.cs │ ├── ExpressBusServices.csproj │ ├── ModDetector.cs │ ├── ModSettingController.cs │ ├── PatchController.cs │ ├── Patch_BusAiCorrector.cs │ ├── Patch_BusLoadsPassengers.cs │ ├── Patch_BusStartPathFind.cs │ ├── Patch_BusUnloadPassengers.cs │ ├── Patch_PublicTransportExtraSkip.cs │ ├── Patch_TramAiCorrector.cs │ ├── Patch_TramLoadsPassengers.cs │ ├── Patch_TransportLine_AddVehicle.cs │ ├── Patch_TransportManager_ReleaseLine.cs │ ├── Patch_TrolleyBusAiCorrector.cs │ ├── Patch_TrolleyBusLoadsPassengers.cs │ ├── Patch_TrolleyBusStartPathFind.cs │ ├── Patch_TrolleyBusUnloadPassengers.cs │ ├── Patch_VehicleAI_SimulationStep.cs │ ├── PerformanceBoost │ ├── CachedVehicleProperties.cs │ └── VehicleUnspawnListenerPatch.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── Redeployment │ └── TeleportRedeployInstructions.cs │ ├── ReversePatch_TLMPlugin_StopIsTerminus.cs │ ├── ReversePatch_VehicleAI_CanLeave.cs │ ├── ServiceBalancerUtil.cs │ ├── TLM │ └── Patch_Self_DetermineCanDepartWithTLM.cs │ ├── TransportLineUtil.cs │ ├── Util │ ├── TransportVehicleUtil.cs │ └── VehicleDepartureUtil.cs │ ├── VehicleUtil.cs │ └── packages.config ├── Images ├── AltPreviewImage.svg ├── AuxImage_Bus.png ├── AuxImage_Bus.svg ├── AuxImage_TrolleyBus.svg ├── AuxImage_Trolleybus.png ├── CSL_BusTerminus.jpg ├── CrossHarbour.jpg ├── ImprovedUnbunching.png ├── ImprovedUnbunching.svg ├── KMB_6X.jpg ├── MinibusModePromo.png ├── MinibusModePromo.svg ├── ModSettingsSample.png ├── NWFB_Ft.4021_NotInService.png ├── PreviewImage.png ├── PreviewImage.svg ├── SelfBalancingPromo.png ├── SelfBalancingPromo.svg ├── SelfBalancingTeleport.png ├── SelfBalancingTeleport.svg ├── TramMode_LightRail.png ├── TramMode_LightRail.svg ├── TramMode_TrueTram.png ├── TramMode_TrueTram.svg ├── csl_bus.png ├── csl_bus_depot.png ├── foto-1-01-MRT2019_2926-deze.jpg ├── hk_minibus.jpg ├── image sources.txt ├── lrt.jpg ├── tram.jpg └── wifi.png ├── ImagesLocal ├── SecondaryImage.png ├── SisterMod.png └── SisterMod_TLM.png ├── LICENSE ├── README.md ├── SteamText.txt └── pending.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/.gitignore -------------------------------------------------------------------------------- /Animations/Animation_AggressiveMode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_AggressiveMode.gif -------------------------------------------------------------------------------- /Animations/Animation_AggressiveMode.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_AggressiveMode.pptx -------------------------------------------------------------------------------- /Animations/Animation_LegacyMode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_LegacyMode.gif -------------------------------------------------------------------------------- /Animations/Animation_LegacyMode.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_LegacyMode.pptx -------------------------------------------------------------------------------- /Animations/Animation_LegacyMode_Optimized.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_LegacyMode_Optimized.gif -------------------------------------------------------------------------------- /Animations/Animation_TramMode_LightRail.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_TramMode_LightRail.gif -------------------------------------------------------------------------------- /Animations/Animation_TramMode_LightRail.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_TramMode_LightRail.pptx -------------------------------------------------------------------------------- /Animations/Animation_TramMode_TrueTram.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_TramMode_TrueTram.gif -------------------------------------------------------------------------------- /Animations/Animation_TramMode_TrueTram.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_TramMode_TrueTram.pptx -------------------------------------------------------------------------------- /Animations/Animation_Vanilla.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_Vanilla.gif -------------------------------------------------------------------------------- /Animations/Animation_Vanilla.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_Vanilla.pptx -------------------------------------------------------------------------------- /Animations/Animation_Vanilla_Optimmizd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/Animation_Vanilla_Optimmizd.gif -------------------------------------------------------------------------------- /Animations/BasicTest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/BasicTest.gif -------------------------------------------------------------------------------- /Animations/BasicTest.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/BasicTest.pptx -------------------------------------------------------------------------------- /Animations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/README.md -------------------------------------------------------------------------------- /Animations/SelfBalancing.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/SelfBalancing.gif -------------------------------------------------------------------------------- /Animations/SelfBalancing.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/SelfBalancing.pptx -------------------------------------------------------------------------------- /Animations/SelfBalancingMiddle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/SelfBalancingMiddle.png -------------------------------------------------------------------------------- /Animations/SelfBalancingMiddle.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/SelfBalancingMiddle.pptx -------------------------------------------------------------------------------- /Animations/basicgiftest.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Animations/basicgiftest.gif -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices.sln -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/BusStopSkippingLookupTable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/BusStopSkippingLookupTable.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/DataTypes/DepartureIntention.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/DataTypes/DepartureIntention.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/DataTypes/TransportLineVehicleProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/DataTypes/TransportLineVehicleProgress.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/DataTypes/VehicleLineProgress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/DataTypes/VehicleLineProgress.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/DataTypes/VehiclePaxDeltaInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/DataTypes/VehiclePaxDeltaInfo.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/DepartureChecker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/DepartureChecker.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/EBSModConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/EBSModConfig.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ExpressBusServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ExpressBusServices.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ExpressBusServices.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ExpressBusServices.csproj -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ModDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ModDetector.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ModSettingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ModSettingController.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/PatchController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/PatchController.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_BusAiCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_BusAiCorrector.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_BusLoadsPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_BusLoadsPassengers.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_BusStartPathFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_BusStartPathFind.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_BusUnloadPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_BusUnloadPassengers.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_PublicTransportExtraSkip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_PublicTransportExtraSkip.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TramAiCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TramAiCorrector.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TramLoadsPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TramLoadsPassengers.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TransportLine_AddVehicle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TransportLine_AddVehicle.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TransportManager_ReleaseLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TransportManager_ReleaseLine.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TrolleyBusAiCorrector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TrolleyBusAiCorrector.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TrolleyBusLoadsPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TrolleyBusLoadsPassengers.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TrolleyBusStartPathFind.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TrolleyBusStartPathFind.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_TrolleyBusUnloadPassengers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_TrolleyBusUnloadPassengers.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Patch_VehicleAI_SimulationStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Patch_VehicleAI_SimulationStep.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/PerformanceBoost/CachedVehicleProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/PerformanceBoost/CachedVehicleProperties.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/PerformanceBoost/VehicleUnspawnListenerPatch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/PerformanceBoost/VehicleUnspawnListenerPatch.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Redeployment/TeleportRedeployInstructions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Redeployment/TeleportRedeployInstructions.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ReversePatch_TLMPlugin_StopIsTerminus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ReversePatch_TLMPlugin_StopIsTerminus.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ReversePatch_VehicleAI_CanLeave.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ReversePatch_VehicleAI_CanLeave.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/ServiceBalancerUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/ServiceBalancerUtil.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/TLM/Patch_Self_DetermineCanDepartWithTLM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/TLM/Patch_Self_DetermineCanDepartWithTLM.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/TransportLineUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/TransportLineUtil.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Util/TransportVehicleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Util/TransportVehicleUtil.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/Util/VehicleDepartureUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/Util/VehicleDepartureUtil.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/VehicleUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/VehicleUtil.cs -------------------------------------------------------------------------------- /ExpressBusServices/ExpressBusServices/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ExpressBusServices/ExpressBusServices/packages.config -------------------------------------------------------------------------------- /Images/AltPreviewImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/AltPreviewImage.svg -------------------------------------------------------------------------------- /Images/AuxImage_Bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/AuxImage_Bus.png -------------------------------------------------------------------------------- /Images/AuxImage_Bus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/AuxImage_Bus.svg -------------------------------------------------------------------------------- /Images/AuxImage_TrolleyBus.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/AuxImage_TrolleyBus.svg -------------------------------------------------------------------------------- /Images/AuxImage_Trolleybus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/AuxImage_Trolleybus.png -------------------------------------------------------------------------------- /Images/CSL_BusTerminus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/CSL_BusTerminus.jpg -------------------------------------------------------------------------------- /Images/CrossHarbour.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/CrossHarbour.jpg -------------------------------------------------------------------------------- /Images/ImprovedUnbunching.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/ImprovedUnbunching.png -------------------------------------------------------------------------------- /Images/ImprovedUnbunching.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/ImprovedUnbunching.svg -------------------------------------------------------------------------------- /Images/KMB_6X.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/KMB_6X.jpg -------------------------------------------------------------------------------- /Images/MinibusModePromo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/MinibusModePromo.png -------------------------------------------------------------------------------- /Images/MinibusModePromo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/MinibusModePromo.svg -------------------------------------------------------------------------------- /Images/ModSettingsSample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/ModSettingsSample.png -------------------------------------------------------------------------------- /Images/NWFB_Ft.4021_NotInService.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/NWFB_Ft.4021_NotInService.png -------------------------------------------------------------------------------- /Images/PreviewImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/PreviewImage.png -------------------------------------------------------------------------------- /Images/PreviewImage.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/PreviewImage.svg -------------------------------------------------------------------------------- /Images/SelfBalancingPromo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/SelfBalancingPromo.png -------------------------------------------------------------------------------- /Images/SelfBalancingPromo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/SelfBalancingPromo.svg -------------------------------------------------------------------------------- /Images/SelfBalancingTeleport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/SelfBalancingTeleport.png -------------------------------------------------------------------------------- /Images/SelfBalancingTeleport.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/SelfBalancingTeleport.svg -------------------------------------------------------------------------------- /Images/TramMode_LightRail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/TramMode_LightRail.png -------------------------------------------------------------------------------- /Images/TramMode_LightRail.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/TramMode_LightRail.svg -------------------------------------------------------------------------------- /Images/TramMode_TrueTram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/TramMode_TrueTram.png -------------------------------------------------------------------------------- /Images/TramMode_TrueTram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/TramMode_TrueTram.svg -------------------------------------------------------------------------------- /Images/csl_bus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/csl_bus.png -------------------------------------------------------------------------------- /Images/csl_bus_depot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/csl_bus_depot.png -------------------------------------------------------------------------------- /Images/foto-1-01-MRT2019_2926-deze.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/foto-1-01-MRT2019_2926-deze.jpg -------------------------------------------------------------------------------- /Images/hk_minibus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/hk_minibus.jpg -------------------------------------------------------------------------------- /Images/image sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/image sources.txt -------------------------------------------------------------------------------- /Images/lrt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/lrt.jpg -------------------------------------------------------------------------------- /Images/tram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/tram.jpg -------------------------------------------------------------------------------- /Images/wifi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/Images/wifi.png -------------------------------------------------------------------------------- /ImagesLocal/SecondaryImage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ImagesLocal/SecondaryImage.png -------------------------------------------------------------------------------- /ImagesLocal/SisterMod.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ImagesLocal/SisterMod.png -------------------------------------------------------------------------------- /ImagesLocal/SisterMod_TLM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/ImagesLocal/SisterMod_TLM.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/README.md -------------------------------------------------------------------------------- /SteamText.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/SteamText.txt -------------------------------------------------------------------------------- /pending.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vectorial1024/ExpressBusServices/HEAD/pending.txt --------------------------------------------------------------------------------