Critical effect what number as EffectFlags for sfall?

FalloutKillian

First time out of the vault
This is the critical effects from http://falloutmods.wikia.com/wiki/Critical_hit_tables

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

But when using sfall to edit the critical effect what number do they have?
Example:

e0_EffectFlags=0


If i make it e0_EffectFlags=2 then it seems to be knockdown. But when I tried using 3 instead of 2 I still got knockdown (and not crippled left leg).

Or should it be e0_EffectFlags=0x04000000 (crippled left leg)

How would I write to add more than effect? For example both knockdown and crippled leg.
 
How would I write to add more than effect? For example both knockdown and crippled leg.
0x02000000 + 0x04000000 = 0x06000000 > convert to DEC 100663296

It is necessary to rewrite the file format CriticalOverrides.ini inside the Sfall code so that it is not so shitty-complicated.
 
Last edited:
I tried using those commands in sfall config critical override. They dont work.

However through trial and error ive found this does:
1 knockout
2 knockdown
4 lef leg
8 right leg
16 left arm
32 right armt
64 blindness

So when I use e0_EffectFlags=32 it causes blindness
 
I tried using those commands in sfall config critical override. They dont work.

However through trial and error ive found this does:
1 knockout
2 knockdown
4 lef leg
8 right leg
16 left arm
32 right armt
64 blindness

So when I use e0_EffectFlags=32 it causes blindness
I mean of course 64 for blidnesd
 
Apparently the wiki incorrectly(in a different order) describes the values, there are still such values
Code:
#define DAM_KNOCKED_OUT        1
#define DAM_KNOCKED_DOWN       2
#define DAM_CRIP_LEG_LEFT      4
#define DAM_CRIP_LEG_RIGHT     8
#define DAM_CRIP_ARM_LEFT     16
#define DAM_CRIP_ARM_RIGHT    32
#define DAM_BLIND             64
#define DAM_DEAD             128
#define DAM_HIT              256
#define DAM_CRITICAL         512  // could be a critical hit or critical miss
#define DAM_ON_FIRE         1024
#define DAM_BYPASS          2048
#define DAM_EXPLODE         4096
#define DAM_DESTROY         8192
#define DAM_DROP           16384
#define DAM_LOSE_TURN      32768
#define DAM_HIT_SELF       65536
#define DAM_LOSE_AMMO     131072
#define DAM_DUD           262144
#define DAM_HURT_SELF     524288
#define DAM_RANDOM_HIT   1048576
#define DAM_CRIP_RANDOM  2097152
#define DAM_BACKWASH     4194304
 
Last edited:
Thank you for your repsonses.

Is the wiki atleast correct about the order of
e0 this is head im 99% sure
e1
e2
e3 this is torso i know
 
Code:
0 - Head
1 - Left_Arm
2 - Right_Arm
3 - Torso_Uncalled
4 - Right_Leg
5 - Left_Leg
6 - Eyes
7 - Groin
 
If it's not difficult for you, could you check the slightly modified format for EffectFlags, with the new sfall
Now you can write effects through a comma: e0_EffectFlags = 2, 4, 64
If the tests are successful/not successful write about it.
 

Attachments

If it's not difficult for you, could you check the slightly modified format for EffectFlags, with the new sfall
Now you can write effects through a comma: e0_EffectFlags = 2, 4, 64
If the tests are successful/not successful write about it.

Absolutely. Will check tomorrow
 
You can write 66 to get knockdown and blinded together etc.

By the way where can i find vanilla text messages for the criticals? e2_Message=0 so i can have it say different stuff? Can you please give me a list?

Also can you remove lines and it will just overwrite those parts? So rather than having all the lines could I just have

[c_38_0] ; HEAD 2
e0_DamageMultiplier=3 ;First level critical
e0_EffectFlags=0
e0_StatCheck=2
e0_StatMod=0
e1_DamageMultiplier=3 ;First level critical
e1_EffectFlags=0
e1_StatCheck=2
e1_StatMod=0

to overwrite some parts of the 2 first levels of criticals vs the head? Or all lines need to be in to work?
 
They are in combat.msg in text\english\game.
Thanks!

Cant seem to string a message together.

In my current mod i get You were critically hit for 78 damage

Then if i add 201 (knocked down male player) it becomes

You were critically hit for 78 damageknockeddown (in one word)

Id like it to say

You were critically hit for 78 damage and got knocked down.

You were critically hit for 78 damage and were blinded.

You were critically hit for 78 damage and got your left leg crippled (and all other limbs)
 
Found a solution to this!
Thanks!

Cant seem to string a message together.

In my current mod i get You were critically hit for 78 damage

Then if i add 201 (knocked down male player) it becomes

You were critically hit for 78 damageknockeddown (in one word)

Id like it to say

You were critically hit for 78 damage and got knocked down.

You were critically hit for 78 damage and were blinded.

You were critically hit for 78 damage and got your left leg crippled (and all other limbs)
 
Back
Top