Any ideas? What determines if planes crash? My profit is now dropping fast as a result of this.

Moderator: OpenTTD Developers
I'm pretty sure the Dart plane is a jet-plane (or just a faster plane), and therefore unsuitble for small airports (512mph).Noldorin wrote:I'm using the early "DART" plane which takes 65 passengers or something like that. Since it's such an early model I suppose it should be able to use the small airports, but I'm not sure.
If what bobingabout post is true, the low reliability could be the reason. I'll take a look at the airplane source and see how landing is handled.Noldorin wrote:The reliability of this model isn't very high, but they did not crash for several years, until now, when they have started to drop from the sky constantly.
Code: Select all
prob = 0x10000 / 1500;
if (st->airport_type == AT_SMALL && (AircraftVehInfo(v->engine_type)->subtype & 2) && !_cheats.no_jetcrash.value) {
prob = 0x10000 / 20;
}
if ((uint16)Random() > prob)
return;
Users browsing this forum: No registered users and 1 guest