arma2-epoch-server/@DayZ_Epoch_Server/addons/dayz_server/DZMS/Scripts/DZMSAutoClaim.sqf

110 lines
5.3 KiB
Plaintext
Raw Permalink Normal View History

2022-04-21 16:15:41 +03:00
if (!_claimed) then {
// Find the closest player and send an alert
if (isNull _closestPlayer) then {
_closestPlayer = _coords call DZMSisClosest; // Find the closest player
[_closestPlayer,_name,"Start"] call DZMSAutoClaimAlert; // Send alert
_claimTime = diag_tickTime; // Set the time variable for countdown
};
// After the delay time, check player's location and either claim or not claim
if ((diag_tickTime - _claimTime) > DZMSAutoClaimDelayTime) then {
if ((_closestPlayer distance _coords) > DZMSAutoClaimAlertDistance || {!alive _closestPlayer}) then {
[_closestPlayer,_name,"Stop"] call DZMSAutoClaimAlert; // Send alert to player who is closest
_closestPlayer = objNull; // Set to default
_acArray = []; // Set to default
} else {
_claimed = true;
[_closestPlayer,_name,"Claimed"] call DZMSAutoClaimAlert; // Send alert to all players
diag_log text format ["DZMS Auto Claim: mission %1 has been claimed by %2",_name,(name _closestPlayer)];
_acArray = [getplayerUID _closestPlayer, name _closestPlayer]; // Add player UID and name to array
_markers set [3, [[(_coords select 0) + 100, (_coords select 1) + 100],_autoMarkDot,"ColorBlack","mil_objective","","",[],["STR_CL_CLAIM_MARKER",(name _closestPlayer)],0]];
DZE_ServerMarkerArray set [_markerIndex, _markers];
PVDZ_ServerMarkerSend = ["createSingle",(_markers select 3)];
publicVariable "PVDZ_ServerMarkerSend";
};
};
};
if (_claimed) then {
// Used in the marker when a player has left the mission area
_leftTime = round (DZMSAutoClaimTimeout - (diag_tickTime - _claimTime));
// This marker should run continuously until the mission is unclaimed or the player returns.
if (_left) then {
_autoText = ["STR_CL_TIMEOUT_MARKER",(_acArray select 1),_leftTime];
(_markers select 3) set [7, _autoText];
DZE_ServerMarkerArray set [_markerIndex, _markers];
PVDZ_ServerMarkerSend = ["textSingle",[_autoMarkDot,_autoText]];
publicVariable "PVDZ_ServerMarkerSend";
};
// If the player dies at the mission, change marker to countdown and set player variable to null
if ((!alive _closestPlayer) && !_left) then {
_closestPlayer = objNull; // Set the variable to null to prevent null player errors
_claimTime = diag_tickTime; // Set the time for countdown
_left = true; // Changes the marker to countdown
};
// Check to see if the dead player has returned to the mission
if (isNull _closestPlayer) then {
_closestPlayer = [_coords,_acArray] call DZMSCheckReturningPlayer;
};
// Notify the player that he/she is outside the mission area
if (!(isNull _closestPlayer) && !_left && {(_closestPlayer distance _coords) > DZMSAutoClaimAlertDistance}) then {
[_closestPlayer,_name,"Return"] call DZMSAutoClaimAlert;
_claimTime = diag_tickTime; // Set the time for the countdown
_left = true; // Set the mission marker to countdown
};
// If the player returns to the mission before the clock runs out then change the marker
if (!(isNull _closestPlayer) && _left && {(_closestPlayer distance _coords) < DZMSAutoClaimAlertDistance}) then {
[_closestPlayer,_name,"Reclaim"] call DZMSAutoClaimAlert;
_left = false; // Change the mission marker back to claim
_autoText = ["STR_CL_CLAIM_MARKER",(name _closestPlayer)];
(_markers select 3) set [7, _autoText];
DZE_ServerMarkerArray set [_markerIndex, _markers];
PVDZ_ServerMarkerSend = ["textSingle",[_autoMarkDot,_autoText]];
publicVariable "PVDZ_ServerMarkerSend";
};
// Warn other players in mission area
{
if (!(_x in (units group _closestPlayer)) && {(_x distance _coords) < DZMSAutoClaimAlertDistance} && {!(_x in _warnArray)}) then {
RemoteMessage = ["rollingMessages", ["STR_CL_CLAIM_WARNING",_acArray select 1]];
(owner _x) publicVariableClient "RemoteMessage";
_warnArray set [count _warnArray, _x]; // add player to temp array so it does not spam the message.
};
} count playableUnits;
// If the player lets the clock run out, then set the mission to unclaimed and set the variables to default
// Player left the server
if ((isNull _closestPlayer) && {(diag_tickTime - _claimTime) > DZMSAutoClaimTimeout}) then {
[_acArray ,_name,"Unclaim"] call DZMSAutoClaimAlert; // Send alert to all players
_claimed = false;
_left = false;
_acArray = [];
_warnArray = [];
PVDZ_ServerMarkerSend = ["removeSingle",_autoMarkDot];
publicVariable "PVDZ_ServerMarkerSend";
_markers set [3, 1];
DZE_ServerMarkerArray set [_markerIndex, _markers];
} else {
// Player is alive but did not return to the mission
if (((diag_tickTime - _claimTime) > DZMSAutoClaimTimeout) && {(_closestPlayer distance _coords) > DZMSAutoClaimAlertDistance}) then {
[_closestPlayer,_name,"Unclaim"] call DZMSAutoClaimAlert; // Send alert to all players
_closestPlayer = objNull;
_claimed = false;
_left = false;
_acArray = [];
_warnArray = [];
PVDZ_ServerMarkerSend = ["removeSingle",_autoMarkDot];
publicVariable "PVDZ_ServerMarkerSend";
_markers set [3, 1];
DZE_ServerMarkerArray set [_markerIndex, _markers];
};
};
};