Arma 3
Death and Hit reactions
lesbillephil 18 Oct, 2024 @ 11:46pm
using your mod
hello,
i use this script to minimize bullet impacts.
{
if ( side _x == WEST ) then {
_x removeAllEventHandlers "HandleDamage";
_x addEventHandler ["HandleDamage",{
_damage = (_this select 2)*0.18; // <-- the *2 multiples the damage by 2
_damage
}];
};
}forEach allUnits;
i would like to use your animations which are great but they have an impact on the script and make the shots more effective. could you prevent this?
< >
Showing 1-3 of 3 comments
WebKnight  [developer] 25 Oct, 2024 @ 8:02am 
Originally posted by lesbillephil:
hello,
i use this script to minimize bullet impacts.
{
if ( side _x == WEST ) then {
_x removeAllEventHandlers "HandleDamage";
_x addEventHandler ["HandleDamage",{
_damage = (_this select 2)*0.18; // <-- the *2 multiples the damage by 2
_damage
}];
};
}forEach allUnits;
i would like to use your animations which are great but they have an impact on the script and make the shots more effective. could you prevent this?
They cannot impact any code cause those are just animations, nothing else
WebKnight  [developer] 23 Jan @ 7:22am 
Originally posted by lesbillephil:
hello,
i use this script to minimize bullet impacts.
{
if ( side _x == WEST ) then {
_x removeAllEventHandlers "HandleDamage";
_x addEventHandler ["HandleDamage",{
_damage = (_this select 2)*0.18; // <-- the *2 multiples the damage by 2
_damage
}];
};
}forEach allUnits;
i would like to use your animations which are great but they have an impact on the script and make the shots more effective. could you prevent this?


You can disable both hit and death reactions with a variable
this setVariable ["WBK_DAH_DisableAnim_Death",1]; - for death animations
this setVariable ["WBK_DAH_DisableAnim_Hit",1]; - for hit reactions
I am starting to see the AI get shot they are in animation, but they are shooting the gun still with accuracy even though the gun is in animation. I have died a a few times in a row due to this any thoughts?
< >
Showing 1-3 of 3 comments
Per page: 1530 50