mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
13 lines
443 B
Plaintext
13 lines
443 B
Plaintext
|
// by commy2
|
||
|
|
||
|
private ["_unit", "_killer"];
|
||
|
|
||
|
_unit = _this select 0;
|
||
|
_killer = _this select 1;
|
||
|
|
||
|
if (_unit != _killer && side group _unit in [side group AGM_player, civilian] && {side group _killer == side group AGM_player}) then {
|
||
|
systemChat format ["%1 was killed by %2", [_unit] call AGM_Core_fnc_getName, [_killer] call AGM_Core_fnc_getName];
|
||
|
|
||
|
[_unit, "killedByFriendly", [_unit, _killer]] call AGM_Core_fnc_callCustomEventHandlers;
|
||
|
};
|