mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
54 lines
1.8 KiB
Plaintext
54 lines
1.8 KiB
Plaintext
/*
|
|
[_object,_source,_method] spawn disco_playerDeath;
|
|
*/
|
|
private["_object","_source","_method","_key","_playerID","_characterID","_playerName","_isDead"];
|
|
_object = _this select 0;
|
|
_source = _this select 1;
|
|
_method = _this select 2;
|
|
_playerID = _object getVariable["playerID","0"]; //playerUID
|
|
_characterID = _object getVariable["characterID","0"]; //characterID
|
|
_playerName = _object getVariable["bodyName","unknown"];
|
|
_isDead = _object getVariable["USEC_isDead",false];
|
|
_humanity = 0;
|
|
_wait = 0;
|
|
|
|
_object removeAllEventHandlers "HandleDamage";
|
|
|
|
if (!_isDead) then {
|
|
_id = [_characterID,0,_object,_playerID,_playerName,_source,_method] spawn server_playerDied;
|
|
_object setDamage 1;
|
|
_object setVariable["USEC_isDead",true,true];
|
|
dayzFlies = _object;
|
|
publicVariable "dayzFlies";
|
|
_id = [_object,50,true,getPosATL _object] spawn player_alertZombies;
|
|
|
|
private["_canHitFree","_isBandit","_myKills","_humanity","_killsH","_wait","_killsB"];
|
|
if (!isNull _source) then {
|
|
if (_source != _object) then {
|
|
_canHitFree = _object getVariable ["freeTarget",false];
|
|
_isBandit = (typeOf _object) == "Bandit1_DZ";
|
|
_myKills = ((_object getVariable ["humanKills",0]) / 30) * 1000;
|
|
if (!_canHitFree and !_isBandit) then {
|
|
//Process Morality Hit
|
|
_humanity = -(2000 - _myKills);
|
|
_killsH = _source getVariable ["humanKills",0];
|
|
_source setVariable ["humanKills",(_killsH + 1),true];
|
|
_wait = 300;
|
|
} else {
|
|
//Process Morality Hit
|
|
//_humanity = _myKills * 100;
|
|
_killsB = _source getVariable ["banditKills",0];
|
|
_source setVariable ["banditKills",(_killsB + 1),true];
|
|
_wait = 0;
|
|
};
|
|
if (_humanity < 0) then {
|
|
_wait = 0;
|
|
};
|
|
if (!_canHitFree and !_isBandit) then {
|
|
dayzHumanity = [_source,_humanity,_wait];
|
|
publicVariable "dayzHumanity";
|
|
};
|
|
};
|
|
};
|
|
_object setVariable ["deathType",_method,true];
|
|
}; |