I'm interested in the way the critical failures work in Fallout 2, and since it hasn't been documented anywhere so far, this could be a chance to crack the nut.
As it is already known, there are Critical Hit Tables in Fallout2.exe and those can be found here (pretty nice documented):
http://falloutmods.wikia.com/wiki/Critical_hit_tables
When you visit that page, take a look at this table (I'll name it 1st Table):
Now, I have discovered a part of the exe which might contain similar data for the critical failures. It starts at 0x1074594 (or somewhere around this address) and contains the same flag bit fields that can be found in the "1st Table" (and which, btw, control what effects the critical failures causes). Some of those are:
The problem is, I've got problems understanding the critical table. The values are somewhat inconsistent and there could be (???) even some still unknown effects (flag bit fields), which can be found in the COMBAT.MSG file:
I.e. the line #315 is shown when the unlucky person makes a critical miss (critical failure) and loses his/her next turn. However, this unlucky event is not defined in the first table, so we can only assume which value it takes in the flag bit fields. Also, it's impossible to find the numbers of the lines used for critical failures (300 to 322).
I need help from someone more experienced when it comes to rummaging the executable. Anyone?
As it is already known, there are Critical Hit Tables in Fallout2.exe and those can be found here (pretty nice documented):
http://falloutmods.wikia.com/wiki/Critical_hit_tables
When you visit that page, take a look at this table (I'll name it 1st Table):
Code:
0x01000000 - knockout
0x02000000 - knockdown
0x04000000 - crippled left leg
0x08000000 - crippled right leg
0x10000000 - crippled left arm
0x20000000 - crippled right arm
0x40000000 - blinded
0x80000000 - death
0x00040000 - on fire - triggers the 'flamedance' animation, but not if the hit is fatal (probably a bug)
0x00080000 - bypass armor
0x00400000 - dropped weapon (doesn't work)
0x00800000 - lose next turn
0x00002000 - random
Code:
0x01000000 - knockout
0x00800000 - lose next turn
0x00400000 - dropped weapon
etc...
Code:
{300}{}{knocked out}
{301}{}{knocked down}
{302}{}{crippled his left leg}
{303}{}{crippled his right leg}
{304}{}{crippled his left arm}
{305}{}{crippled his right arm}
{306}{}{blinded}
{307}{}{was killed}
{308}{}{hit}
{309}{}{critical}
{310}{}{on fire}
{311}{}{had his armor bypassed}
{312}{}{his weapon exploded}
{313}{}{his weapon destroyed}
{314}{}{his weapon dropped}
{315}{}{lost his next turn}
{316}{}{hit himself}
{317}{}{lost the rest of his ammo}
{318}{}{fired a dud shot}
{319}{}{hurt himself}
{320}{}{hit randomly}
{321}{}{crippled a random limb}
{322}{}{peppered with fragments}
I need help from someone more experienced when it comes to rummaging the executable. Anyone?