Back in 2013 BT~wasted introduced a mod to generate 13 different random failures to the engines, fuel tanks, oil systems and gear, which acts on AI planes as well as the player. It seemed to go no farther than 4.10.
This past day I've been incorporating this into my B.A.T. 4.0 game. It's easy enough, requiring only to add some code to Aircraft.class:
- in the (currently empty) method rareAction(), and
- adding two new methods.
I've been tweaking things, of course.

For starters, the invoked methods setEngineStops (kills the motor) and setReadyness (damages the 'crank case') were performed only on engine #0, in spite of a random engine between #0 and #3 being selected for other actions. I've elected to do these two actions on any of the actual engines selected, in the way all other actions are.
--------------------
Secondly, no matter the plane's actual engine count a random engine number between 0 and 3 is selected. For planes having fewer than 4 engines this means that the chance of damage/failure is lessened by the ratio (actual engine count / 4). (Except for the two aforementioned actions, which are always operated on engine #0). For example. A single-engined plane has only engine #0. If the randomly selected engine number were 1, 2 or 3, the action will not be performed, and in this case the chance of the action is 1/4 the chance of damage to a 4-engined plane. In other words, a 4-engine plane could potentially have as many as all four engines damaged by the time a single-engined plane has had its engine damaged.
And for planes having more than 4 engines, those numbered beyond #3 will never be harmed. An 8-engined bird will have only the 4 motors on the port side damaged.
Therefore I've taken the
actual engine count into consideration, however many they be.
--------------------
Thirdly, damage was done only to fuel tank #0, even though a plane can have up to 4 tanks (numbered 0 through 3). I've elected to randomly select from the 4 possibilities. Of course, this means that when fewer tanks are present there will be a concomitant reduction in the chance of damage, which I think is OK. Most planes have more than a single fuel tank, at least for WW2 and beyond.
--------------------
The code was structured to read the user-set value for the failure rate from the [Mods] section added to a
mission file (
not conf.ini). I like this approach because it permits flexibility. Instead of a 'universal' failure rate applying at all times, one can decide on the failure rate based on the theater, the date, or any other criterion. For example, a static campaign for the Axis could have the failure rate worsening in the later stages. It does of course require to add the [Mods] section and failure rate value to every mission as desired, which can be a lot of work!
To make things easier and universal, I could have conf.ini queried for the failure rate value as well. Indeed, it would be possible to add also a second conf.ini entry that selects between a 'universal' value or a mission-specific value. Then a query of
both conf.ini
AND the .mis file would be done, and whichever the player wants to use will be given primacy. This would allow to enjoy the suffering failures for minimal effort.

In other words, conf.ini could have FailureRate=7 and the .mis file could have FailureRate 15. If conf.ini had an additional entry something like FailRateSource=0 it would use the ('universal') conf.ini entry if present, and if FailRateSource=1 the .mis file entry would be used if present.
--------------------
The mod was set to be in effect
only when one enables the Reliability difficulty option. As far as I can discern, this difficulty setting applies to motors only. And so this random failure mod under discussion handles additional systems not affected by the Reliability difficulty setting. I'm wondering if it would be worthwhile to allow to have this random failure mod operate whether one toggles the Reliability difficulty option or not. The main reason I'm thinking this is because of the 'double jeopardy' of damage to engines when both of these schemes are working simultaneously. In other words, the Reliability difficulty setting could be set to
OFF so that motor damage is confined to just this random damage mod.
--------------------
I tried some runs with the failure rate set at 100 (the maximum permitted). On winter and desert maps the rate of failure is twice that for all other maps (cold and dust taking their toll), and so I did this on a Pacific map. At roughly 5-6 minute intervals a failure occurred, although this was with the two causes of motor damage working together. This suggests that a failure rate set to 10 should have some damage event occur about every 50-60 minutes (25-30 minutes on a winter or desert map), although likely on a shorter interval for motors due to the two damage schemes operating together.
Thoughts?