critter_injure(dude_obj, 2) - What does this do?
As far as I can tell from my testing, this code does absolutely nothing -- but it's used for several Brahma scripts, the Lieutenant script, and many times in the desert random encounter scripts.
Any ideas? I'm confused.
These are the valid ones. Interestingly, I think it's impossible (in Fallout 1 at least) to be Blinded in both eyes.....
As far as I can tell from my testing, this code does absolutely nothing -- but it's used for several Brahma scripts, the Lieutenant script, and many times in the desert random encounter scripts.
Any ideas? I'm confused.
These are the valid ones. Interestingly, I think it's impossible (in Fallout 1 at least) to be Blinded in both eyes.....
Code:
Crippled LEFT LEG critter_injure(dude_obj, 4);
Crippled RIGHT LEG critter_injure(dude_obj, 8);
Crippled LEFT ARM critter_injure(dude_obj, 16);
Crippled RIGHT ARM critter_injure(dude_obj, 32);
Blindness (-5 Perception) critter_injure(dude_obj, 64);
***Add them together to cause multiple at once, for example:
Cripple BOTH Legs critter_injure(dude_obj, 12);