mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
* Added doorManagement * Rename FNC_check_owner --> FNC_check_owner_friends * Fixed typo * Fixed bug in FNC_check_owner_friends which allowed every user to manage every plot and door. * Removed unused DZE_doorManagementHarderPenalty from configVariables.sqf * Now checking if _playerUID is in _friendlies for both cases. * DZE_plotforLife should be DZE_permanentPlot * Fixed case where DZE_permanentPlot is false. * Forgot to add STR_EPOCH_CANCEL * Changed translations to suggested string by ebaydayz. * Renamed EyeScanner to DoorAccess. * Reworked access rights for door management. * DZE_doorManagementMustBeClose = true; //Players must be within 10m of door to be added as a door friend. * Fixed copy-paste error. * Replace count with if * Remove redundant test. * Also replaced count in door management admins check. * Change plotManagement and doorManagement to be consistent to DayZ_UseSteamID (get UID from FNC_GetPlayerUID). * Use _playerUID and _characterID more consistent. * Added german translation to STR_EPOCH_PLOTMANAGEMENT_ADDFRIEND_ALREADYONTHELIST.
102 lines
3.5 KiB
Plaintext
102 lines
3.5 KiB
Plaintext
/*
|
|
DayZ Unlock Door
|
|
Usage: [_obj] call player_unlockDoor;
|
|
Made for DayZ Epoch please ask permission to use/edit/distrubute email vbawol@veteranbastards.com.
|
|
Modified for Zupa's DoorManagement.
|
|
*/
|
|
private ["_display","_obj","_objectCharacterID"];
|
|
|
|
if (!isNil "DZE_DYN_UnlockDoorInprogress") exitWith {localize "str_epoch_player_21" call dayz_rollingMessages;};
|
|
|
|
DZE_DYN_UnlockDoorInprogress = true;
|
|
|
|
// find display and check the door opening method
|
|
_doorMethod = '';
|
|
_displayCombo = findDisplay 41144;
|
|
_displayEye = findDisplay 61144;
|
|
if(!isNull _displayEye) then {_display = _displayEye; _doorMethod = "Eye";};
|
|
if(!isNull _displayCombo) then {_display = _displayCombo; _doorMethod = "Combo";};
|
|
|
|
if (!isNull dayz_selectedDoor) then {
|
|
if (!isNil 'KeyCodeTryTimer') then {
|
|
if (diag_tickTime > KeyCodeTryTimer) then {
|
|
KeyCodeTry = nil;
|
|
KeyCodeTryTimer = nil;
|
|
};
|
|
};
|
|
|
|
_obj = dayz_selectedDoor; // our target
|
|
_notNearestPlayer = _obj call dze_isnearest_player;
|
|
|
|
if (_notNearestPlayer) then {
|
|
// close display since another player is closer
|
|
_display closeDisplay 3000;
|
|
localize "STR_EPOCH_ACTIONS_16" call dayz_rollingMessages;
|
|
} else {
|
|
// get object combination
|
|
_objectCharacterID = _obj getVariable ["CharacterID","0"];
|
|
|
|
if(DZE_doorManagement) then {
|
|
// Check player access
|
|
_isowner = [player, _obj] call FNC_check_access;
|
|
if( ((_isowner select 0) && DZE_doorManagementAllowAccess_owner) // door owner
|
|
|| ((_isowner select 1) && DZE_doorManagementAllowAccess_ownerFriendlies) // door owner's friendly tagged
|
|
|| ((_isowner select 2) && DZE_doorManagementAllowAccess_plotOwner) // plot owner
|
|
|| ((_isowner select 3) && DZE_doorManagementAllowAccess_plotFriends) // plot friends
|
|
|| ((_isowner select 4) && DZE_doorManagementAllowAccess_plotAdmins) // plot management admins
|
|
|| ((_isowner select 5) && DZE_doorManagementAllowAccess_doorFriends) // door friends
|
|
|| ((_isowner select 6) && DZE_doorManagementAllowAccess_doorAdmins) // door management admins
|
|
) then {
|
|
DZE_Lock_Door = dayz_selectedDoor getVariable['CharacterID','0'];
|
|
};
|
|
};
|
|
|
|
|
|
|
|
// Check combination
|
|
if (DZE_Lock_Door == _objectCharacterID) then {
|
|
[player,"combo_unlock",0,false] call dayz_zombieSpeak;
|
|
|
|
// close display
|
|
_display closeDisplay 3000;
|
|
|
|
// unlock if locked
|
|
if (_obj animationPhase "Open_hinge" == 0) then {
|
|
_obj animate ["Open_hinge", 1];
|
|
};
|
|
if (_obj animationPhase "Open_latch" == 0) then {
|
|
_obj animate ["Open_latch", 1];
|
|
};
|
|
|
|
if(_doorMethod == "Eye") then {
|
|
localize "STR_EPOCH_DOORACCESS_SUCCESS" call dayz_rollingMessages;
|
|
};
|
|
|
|
KeyCodeTry = nil;
|
|
} else {
|
|
["Working",0,[100,15,10,0]] call dayz_NutritionSystem;
|
|
DZE_Lock_Door = "";
|
|
[player,"combo_locked",0,false] call dayz_zombieSpeak;
|
|
[player,20,true,(getPosATL player)] spawn player_alertZombies;
|
|
|
|
if (isNil 'KeyCodeTry') then {KeyCodeTry = 0;};
|
|
KeyCodeTry = KeyCodeTry + 1;
|
|
|
|
if (!isNil 'KeyCodeTryTimer') then {KeyCodeTryTimer = diag_tickTime+10;};
|
|
if (KeyCodeTry >= ((round(random 4)) + 4)) then {
|
|
if (isNil 'KeyCodeTryTimer') then {KeyCodeTryTimer = diag_tickTime+10;};
|
|
localize "str_epoch_player_19" call dayz_rollingMessages;
|
|
_display closeDisplay 3000;
|
|
};
|
|
|
|
if(_doorMethod == "Eye") then {
|
|
localize "STR_EPOCH_DOORACCESS_FAILURE" call dayz_rollingMessages;
|
|
_display closeDisplay 3000;
|
|
};
|
|
};
|
|
};
|
|
} else {
|
|
// close display since no target
|
|
_display closeDisplay 3000;
|
|
};
|
|
DZE_DYN_UnlockDoorInprogress = nil; |