mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
Removed unused variables and redundant checks. _Force was always true so any condition with an OR _force in it was the same as (true) i.e. redundant.
94 lines
3.7 KiB
Plaintext
94 lines
3.7 KiB
Plaintext
/*
|
|
WARNING: The player object is deleted by Arma shortly after onPlayerDisconnected fires
|
|
because DayZ uses disabledAI=true:
|
|
https://community.bistudio.com/wiki/Description.ext#disabledAI
|
|
|
|
References to the player object after that point will return objNull, so this function
|
|
and server_playerSync must be fast or the player will not save.
|
|
*/
|
|
private ["_playerObj","_playerUID","_playerPos","_playerName"];
|
|
|
|
_playerUID = _this select 0;
|
|
_playerName = _this select 1;
|
|
_playerObj = nil;
|
|
|
|
//Lets search all playerable units looking for the objects that matches our playerUID
|
|
{
|
|
if ((getPlayerUID _x) == _playerUID) exitWith { _playerObj = _x; _playerPos = getPosATL _playerObj;};
|
|
} count playableUnits;
|
|
|
|
//If for some reason the playerOBj does not exist lets exit the disconnect system.
|
|
if (isNil "_playerObj") exitWith {
|
|
diag_log format["%1: nil player object, _this:%2", __FILE__, _this];
|
|
};
|
|
|
|
//diag_log format["get: %1 (%2), sent: %3 (%4)",typeName (getPlayerUID _playerObj), getPlayerUID _playerObj, typeName _playerUID, _playerUID];
|
|
|
|
//If the the playerObj exists lets run all sync systems
|
|
|
|
_characterID = _playerObj getVariable["characterID", "?"];
|
|
_inCombat = _playerObj getVariable ["inCombat",0];
|
|
_Sepsis = _playerObj getVariable["USEC_Sepsis",false];
|
|
|
|
//Login processing do not sync
|
|
if (_playerUID in dayz_ghostPlayers) exitwith {
|
|
diag_log format["ERROR: Cannot Sync Character [%1,%2] Still processing login",_playerName,_playerUID];
|
|
|
|
//Lets remove the object.
|
|
if (!isNull _playerObj) then {
|
|
deleteGroup (group _playerObj);
|
|
};
|
|
};
|
|
|
|
//Make sure we know the ID of the object before we try and sync any info to the DB
|
|
if (_characterID != "?") exitwith {
|
|
//If the player has sepsis before logging off lets give them infected status.
|
|
if (_Sepsis) then {
|
|
_playerObj setVariable["USEC_infected",true,true];
|
|
};
|
|
|
|
//if player object is alive lets sync the player and remove the body and if ghosting is active add the player id to the array
|
|
if (alive _playerObj) then {
|
|
// High priority. Sync must finish fast before player object isNull
|
|
[_playerObj,nil,true,true] call server_playerSync;
|
|
|
|
//Punish combat log
|
|
if (_inCombat > 0) then {
|
|
_playerObj setVariable ["NORRN_unconscious",true,true]; // Set status to unconscious
|
|
_playerObj setVariable ["unconsciousTime",150,true]; // Set knock out timer to 2 minutes 30 seconds
|
|
//_playerObj setVariable ["USEC_injured",true]; // Set status to bleeding
|
|
//_playerObj setVariable ["USEC_BloodQty",3000]; // Set blood to 3000
|
|
|
|
// Low priority. Player object not needed
|
|
diag_log format["PLAYER COMBAT LOGGED: %1(%3) at location %2",_playerName,_playerPos,_playerUID];
|
|
[nil, nil, rTitleText, format["PLAYER COMBAT LOGGED: %1",_playerName], "PLAIN"] call RE; // Message whole server
|
|
};
|
|
// Low priority. Player object not needed
|
|
if (dayz_enableGhosting) then {
|
|
//diag_log format["GhostPlayers: %1, ActivePlayers: %2",dayz_ghostPlayers,dayz_activePlayers];
|
|
if (!(_playerUID in dayz_ghostPlayers)) then {
|
|
dayz_ghostPlayers set [count dayz_ghostPlayers, _playerUID];
|
|
dayz_activePlayers set [count dayz_activePlayers, [_playerUID,diag_ticktime]];
|
|
|
|
//diag_log format["playerID %1 added to ghost list",_playerUID];
|
|
};
|
|
};
|
|
};
|
|
|
|
/*
|
|
Low priority code below this point where
|
|
_playerObj is no longer needed and may be Null.
|
|
*/
|
|
[_playerUID,_characterID,2,_playerName] call dayz_recordLogin;
|
|
|
|
//Lets scan the area near the player logout position and save all objects.
|
|
{ [_x,"gear"] call server_updateObject } foreach (nearestObjects [_playerPos, DayZ_GearedObjects, 10]);
|
|
};
|
|
|
|
if (isNull _playerObj) then { diag_log("Player Object does not esist"); };
|
|
|
|
|
|
//Lets remove the object.
|
|
if (!isNull _playerObj) then {
|
|
deleteGroup (group _playerObj);
|
|
}; |