mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 20:13:13 +03:00
27 lines
876 B
Plaintext
27 lines
876 B
Plaintext
private ["_victim", "_attacker","_weapon","_distance","_damage"];
|
|
_victim = _this select 0;
|
|
_attacker = _this select 1;
|
|
_damage = _this select 2;
|
|
|
|
if (!isPlayer _victim || !isPlayer _attacker) exitWith {};
|
|
if ((name _victim) == (name _attacker)) exitWith {};
|
|
|
|
_weapon = weaponState _attacker;
|
|
if (_weapon select 0 == "Throw") then
|
|
{
|
|
_weapon = _weapon select 3;
|
|
}
|
|
else
|
|
{
|
|
_weapon = _weapon select 0;
|
|
};
|
|
|
|
_distance = _victim distance _attacker;
|
|
|
|
diag_log format["PHIT: %1 was hit by %2 with %3 from %4m with %5 dmg", _victim, _attacker, _weapon, _distance, _damage];
|
|
|
|
_victim setVariable["AttackedBy", _attacker, true];
|
|
_victim setVariable["AttackedByName", (name _attacker), true];
|
|
//_victim setVariable["AttackedByWeapon", (currentWeapon _attacker), true];
|
|
_victim setVariable["AttackedByWeapon", _weapon, true];
|
|
_victim setVariable["AttackedFromDistance", _distance, true]; |