Update fnc_plyrHit.sqf

This commit is contained in:
vbawol
2014-02-02 10:42:39 -06:00
parent 6b32700e63
commit 7312c91941

View File

@@ -16,6 +16,11 @@ else
_weapon = _weapon select 0;
};
if (_weapon == "" and (vehicle _attacker) != _attacker) then {
_vehicle = typeOf (vehicle _attacker);
_weapon = getText (configFile >> "CfgVehicles" >> _vehicle >> "displayName");
};
_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];
@@ -24,4 +29,4 @@ _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];
_victim setVariable["AttackedFromDistance", _distance, true];