mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-22 03:16:27 +03:00
Update remove/deconstruct, add helpers
Removing and Deconstructing Objects - Now adds colored helpers to modular objects. - Green: Refund one kit. - Blue: Refund entire recipe of parts (multiple items). - Red: No refund will be given. Either because the object is too damaged, or the refund feature is disabled. - If the object has a door open while selected, no helper will display/float in the open door space. - The gear panel will only open if a refund is available. - If a lit fire barrel is removed, the flame will now be extinguished. - If a plot pole is removed, plot boundary helpers will now be deleted. - Refunds for non-modular objects are handled by their respective config settings. - Removed non-lockable storage objects will now refund their contents. - The corresponding storage kit will be refunded. - If there is room outdoors, backpacks will be arranged in a neat circle close to the refund point. - If the spawn point is too close to a building, backpacks will spawn at the player's location. - Helpers will now appear on wrecked/ruined modular objects. - Helper color arrays were changed to helper transparency values only, to make it easier (and safer) for server owners. Upgrading, Downgrading, Maintaining and Packing Objects - Now includes colored helper spheres for improved player experience. - Reapply damage to upgraded/downgraded object if necessary. Changes made by @Victor-the-Cleaner
This commit is contained in:
@@ -1,197 +1,267 @@
|
||||
/*
|
||||
DayZ Base Building Upgrades
|
||||
Made for DayZ Epoch please ask permission to use/edit/distrubute email vbawol@veteranbastards.com.
|
||||
*/
|
||||
if (dayz_actionInProgress) exitWith {localize "str_epoch_player_52" call dayz_rollingMessages;};
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
//
|
||||
// DayZ Base Building Upgrades
|
||||
// Made for DayZ Epoch please ask permission to use/edit/distribute email vbawol@veteranbastards.com.
|
||||
//
|
||||
// Updated by: Victor the Cleaner
|
||||
// Date: August 2021
|
||||
//
|
||||
// - Now includes helper spheres for improved player experience.
|
||||
// - Reapply damage to upgraded object if necessary.
|
||||
//
|
||||
///////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
if (dayz_actionInProgress) exitWith {localize "str_epoch_player_52" call dayz_rollingMessages;}; // Upgrade is already in progress.
|
||||
dayz_actionInProgress = true;
|
||||
|
||||
private ["_location","_dir","_classname","_hasAccess","_missing","_text","_proceed","_num_removed","_object","_missingQty","_itemIn","_countIn","_qty","_removed","_removed_total","_tobe_removed_total","_objectID","_objectUID","_temp_removed_array","_textMissing","_newclassname","_requirements","_obj","_upgrade","_lockable","_combination_1","_combination_2","_combination_3","_combination","_objectCharacterID","_ownerID","_qtyBP","_bpMags","_countNew","_bp2Remove","_count","_friendsArr","_vector","_temp_BP_removed_array","_finished","_neededTools"];
|
||||
|
||||
player removeAction s_player_upgrade_build;
|
||||
s_player_upgrade_build = 1;
|
||||
|
||||
_obj = _this select 3;
|
||||
_objectID = _obj getVariable ["ObjectID","0"];
|
||||
_objectUID = _obj getVariable ["ObjectUID","0"];
|
||||
_classname = typeOf _obj;
|
||||
local _obj = _this select 3;
|
||||
local _objectID = _obj getVariable ["ObjectID","0"];
|
||||
local _objectUID = _obj getVariable ["ObjectUID","0"];
|
||||
local _classname = typeOf _obj;
|
||||
|
||||
if ((_objectID == "0" && {_objectUID == "0"}) || _classname in DZE_DisableUpgrade) exitWith {dayz_actionInProgress = false; s_player_upgrade_build = -1; localize "str_epoch_player_50" call dayz_rollingMessages;};
|
||||
if ((_objectID == "0" && _objectUID == "0") || {_classname in DZE_DisableUpgrade}) exitWith {
|
||||
dayz_actionInProgress = false;
|
||||
s_player_upgrade_build = -1;
|
||||
localize "str_epoch_player_50" call dayz_rollingMessages; // Not setup yet.
|
||||
};
|
||||
|
||||
_hasAccess = [player, _obj] call FNC_check_access;
|
||||
if (_classname in DZE_LockedStorage && !(_hasAccess select 0)) exitWith {dayz_actionInProgress = false;localize "STR_CL_EC_NOT_OWNER" call dayz_rollingMessages;};
|
||||
local _hasAccess = [player, _obj] call FNC_check_access;
|
||||
|
||||
_text = getText (configFile >> "CfgVehicles" >> _classname >> "displayName");
|
||||
_upgrade = getArray (configFile >> "CfgVehicles" >> _classname >> "upgradeBuilding");
|
||||
if (!(_hasAccess select 0) && {_classname in DZE_LockedStorage}) exitWith {
|
||||
dayz_actionInProgress = false;
|
||||
localize "STR_CL_EC_NOT_OWNER" call dayz_rollingMessages; // You are not the owner.
|
||||
};
|
||||
|
||||
local _text = getText (configFile >> "CfgVehicles" >> _classname >> "displayName");
|
||||
local _upgrade = getArray (configFile >> "CfgVehicles" >> _classname >> "upgradeBuilding");
|
||||
|
||||
if ((count _upgrade) > 0) then {
|
||||
_neededTools = _upgrade select 1;
|
||||
if (["",_neededTools,"none"] call dze_requiredItemsCheck) then {
|
||||
_newclassname = _upgrade select 0;
|
||||
_lockable = 0;
|
||||
if(isNumber (configFile >> "CfgVehicles" >> _newclassname >> "lockable")) then {
|
||||
_lockable = getNumber(configFile >> "CfgVehicles" >> _newclassname >> "lockable");
|
||||
};
|
||||
_requirements = _upgrade select 2;
|
||||
_missingQty = 0;
|
||||
_missing = "";
|
||||
_bpMags = [];
|
||||
_bp2Remove = [];
|
||||
_qtyBP = 0;
|
||||
_proceed = true;
|
||||
|
||||
local _neededTools = _upgrade select 1;
|
||||
|
||||
if (["", _neededTools, "none"] call dze_requiredItemsCheck) then {
|
||||
|
||||
local _newclassname = _upgrade select 0;
|
||||
local _lockable = getNumber(configFile >> "CfgVehicles" >> _newclassname >> "lockable");
|
||||
local _requirements = _upgrade select 2;
|
||||
local _missingQty = 0;
|
||||
local _missing = "";
|
||||
local _bpMags = [];
|
||||
local _bp2Remove = [];
|
||||
local _qtyBP = 0;
|
||||
local _proceed = true;
|
||||
{
|
||||
_itemIn = _x select 0;
|
||||
_countIn = _x select 1;
|
||||
_qty = { (_x == _itemIn) || {configName(inheritsFrom(configFile >> "cfgMagazines" >> _x)) == _itemIn} } count magazines player;
|
||||
local _itemIn = _x select 0;
|
||||
local _countIn = _x select 1;
|
||||
local _qty = {(_x == _itemIn) || {configName(inheritsFrom(configFile >> "cfgMagazines" >> _x)) == _itemIn}} count magazines player;
|
||||
|
||||
if (!isNull (UnitBackpack Player) && {_qty < _countIn}) then {
|
||||
_bpMags = (getMagazineCargo (unitbackpack player));
|
||||
if (!isNull (UnitBackpack Player) && (_qty < _countIn)) then {
|
||||
_bpMags = getMagazineCargo (unitBackpack player);
|
||||
{
|
||||
if ((_x == _itemIn) || {configName(inheritsFrom(configFile >> "cfgMagazines" >> _x)) == _itemIn}) exitWith {
|
||||
_qtyBP = ((_bpMags select 1) select _forEachIndex);
|
||||
_bp2Remove set [(count _bp2Remove), _x];
|
||||
if ((_x == _itemIn) || (configName(inheritsFrom(configFile >> "cfgMagazines" >> _x)) == _itemIn)) exitWith {
|
||||
_qtyBP = (_bpMags select 1) select _forEachIndex;
|
||||
_bp2Remove set [count _bp2Remove, _x];
|
||||
};
|
||||
} forEach (_bpMags select 0);
|
||||
};
|
||||
|
||||
if ((_qty < _countIn) && {_qtyBP < (_countIn - _qty)}) exitWith { _missing = _itemIn; _missingQty = (_countIn - (_qty + _qtyBP)); _proceed = false; };
|
||||
if (_qty < _countIn && (_qtyBP < (_countIn - _qty))) exitWith {
|
||||
_missing = _itemIn;
|
||||
_missingQty = _countIn - (_qty + _qtyBP);
|
||||
_proceed = false;
|
||||
};
|
||||
} forEach _requirements;
|
||||
|
||||
if (_proceed) then {
|
||||
[player,(getPosATL player),25,"repair"] spawn fnc_alertZombies;
|
||||
|
||||
_finished = ["Medic",1] call fn_loopAction;
|
||||
[_obj] call fn_displayHelpers; // create helpers
|
||||
|
||||
[player, (getPosATL player), 25, "repair"] spawn fnc_alertZombies; // make noise
|
||||
|
||||
local _finished = ["Medic",1] call fn_loopAction; // animation
|
||||
|
||||
[] call fn_displayHelpers; // delete helpers
|
||||
|
||||
if (!_finished) exitWith {};
|
||||
|
||||
["Working",0,[3,2,4,0]] call dayz_NutritionSystem;
|
||||
|
||||
_temp_removed_array = [];
|
||||
_temp_BP_removed_array = [];
|
||||
_removed_total = 0;
|
||||
_tobe_removed_total = 0;
|
||||
local _temp_removed_array = [];
|
||||
local _temp_BP_removed_array = [];
|
||||
local _removed_total = 0;
|
||||
local _tobe_removed_total = 0;
|
||||
|
||||
{
|
||||
_removed = 0;
|
||||
_itemIn = _x select 0;
|
||||
_countIn = _x select 1;
|
||||
local _removed = 0;
|
||||
local _itemIn = _x select 0;
|
||||
local _countIn = _x select 1;
|
||||
_tobe_removed_total = _tobe_removed_total + _countIn;
|
||||
|
||||
{
|
||||
if( (_removed < _countIn) && {(_x == _itemIn) || {configName(inheritsFrom(configFile >> "cfgMagazines" >> _x)) == _itemIn}}) then {
|
||||
_num_removed = ([player,_x] call BIS_fnc_invRemove);
|
||||
_removed = _removed + _num_removed;
|
||||
_removed_total = _removed_total + _num_removed;
|
||||
|
||||
local _num_removed = ([player, _x] call BIS_fnc_invRemove);
|
||||
_removed = _removed + _num_removed;
|
||||
_removed_total = _removed_total + _num_removed;
|
||||
|
||||
if(_num_removed >= 1) then {
|
||||
_temp_removed_array set [count _temp_removed_array,_x];
|
||||
_temp_removed_array set [count _temp_removed_array, _x];
|
||||
};
|
||||
};
|
||||
} forEach magazines player;
|
||||
|
||||
if (!isNull (UnitBackpack Player) && {_removed < _countIn}) then {
|
||||
_bpMags = (getMagazineCargo (unitbackpack player));
|
||||
clearMagazineCargoGlobal (unitbackpack player);
|
||||
if (!isNull (UnitBackpack Player) && (_removed < _countIn)) then {
|
||||
|
||||
_bpMags = getMagazineCargo (unitBackpack player);
|
||||
clearMagazineCargoGlobal (unitBackpack player);
|
||||
{
|
||||
_count = ((_bpMags select 1) select _forEachIndex);
|
||||
_countNew = _count;
|
||||
local _count = (_bpMags select 1) select _forEachIndex;
|
||||
local _countNew = _count;
|
||||
|
||||
if (_x in _bp2Remove && {(_x == _itemIn) || {configName(inheritsFrom(configFile >> "cfgMagazines" >> _x)) == _itemIn}}) then {
|
||||
_countNew = (_count - (_countIn - _removed));
|
||||
_bp2Remove = _bp2Remove - [_x];
|
||||
_countNew = _count - (_countIn - _removed);
|
||||
_bp2Remove = _bp2Remove - [_x];
|
||||
};
|
||||
if (_countNew > 0) then {
|
||||
(unitbackpack player) addMagazineCargoGlobal [_x, _countNew];
|
||||
(unitBackpack player) addMagazineCargoGlobal [_x, _countNew];
|
||||
};
|
||||
_num_removed = (_count - _countNew);
|
||||
_temp_BP_removed_array set [(count _temp_BP_removed_array), [_x, _num_removed]];
|
||||
|
||||
local _num_removed = _count - _countNew;
|
||||
|
||||
_temp_BP_removed_array set [count _temp_BP_removed_array, [_x, _num_removed]];
|
||||
_removed_total = _removed_total + _num_removed;
|
||||
|
||||
} forEach (_bpMags select 0);
|
||||
};
|
||||
|
||||
} forEach _requirements;
|
||||
|
||||
if (_tobe_removed_total == _removed_total) then {
|
||||
|
||||
call player_forceSave;
|
||||
_location = _obj getVariable["OEMPos",(getposATL _obj)];
|
||||
_dir = getDir _obj;
|
||||
_vector = [(vectorDir _obj),(vectorUp _obj)];
|
||||
_objectCharacterID = _obj getVariable ["CharacterID","0"];
|
||||
_classname = _newclassname;
|
||||
_object = createVehicle [_classname, [0,0,0], [], 0, "CAN_COLLIDE"];
|
||||
|
||||
local _location = _obj getVariable["OEMPos", (getPosATL _obj)];
|
||||
local _dir = getDir _obj;
|
||||
local _vector = [vectorDir _obj, vectorUp _obj];
|
||||
local _objectCharacterID = _obj getVariable ["CharacterID","0"];
|
||||
_classname = _newclassname;
|
||||
|
||||
local _object = createVehicle [_classname, [0,0,0], [], 0, "CAN_COLLIDE"];
|
||||
//_object setDir _dir; // setdir is incompatible with setVectorDirAndUp and should not be used together on the same object https://community.bistudio.com/wiki/setVectorDirAndUp
|
||||
_object setVariable["memDir",_dir,true];
|
||||
_object setVariable["memDir", _dir, true];
|
||||
_object setVectorDirAndUp _vector;
|
||||
_object setPosATL _location;
|
||||
|
||||
if (_lockable == 3 && {!(_classname in ["WoodenGate_2_DZ","WoodenGate_3_DZ","WoodenGate_4_DZ"])}) then {
|
||||
DZE_topCombo = 0;
|
||||
DZE_midCombo = 0;
|
||||
DZE_botCombo = 0;
|
||||
DZE_Lock_Door = "";
|
||||
dayz_selectedDoor = objNull;
|
||||
|
||||
DZE_topCombo = 0;
|
||||
DZE_midCombo = 0;
|
||||
DZE_botCombo = 0;
|
||||
|
||||
DZE_Lock_Door = "";
|
||||
dayz_selectedDoor = objNull;
|
||||
local _combination = 0;
|
||||
|
||||
createDialog "ComboLockUI";
|
||||
waitUntil {!dialog};
|
||||
|
||||
if (keypadCancel || {parseNumber DZE_Lock_Door == 0}) then {
|
||||
_combination_1 = floor(random 10);
|
||||
_combination_2 = floor(random 10);
|
||||
_combination_3 = floor(random 10);
|
||||
_combination = format["%1%2%3",_combination_1,_combination_2,_combination_3];
|
||||
DZE_Lock_Door = _combination;
|
||||
if (keypadCancel || (parseNumber DZE_Lock_Door == 0)) then {
|
||||
|
||||
local _combination_1 = floor(random 10);
|
||||
local _combination_2 = floor(random 10);
|
||||
local _combination_3 = floor(random 10);
|
||||
|
||||
_combination = format["%1%2%3", _combination_1, _combination_2, _combination_3];
|
||||
DZE_Lock_Door = _combination;
|
||||
|
||||
} else {
|
||||
|
||||
_combination = DZE_Lock_Door;
|
||||
};
|
||||
_objectCharacterID = _combination;
|
||||
|
||||
format[localize "str_epoch_player_158",_combination,_text] call dayz_rollingMessages;
|
||||
systemChat format[localize "str_epoch_player_158",_combination,_text];
|
||||
local _message = format[localize "str_epoch_player_158", _combination, _text];
|
||||
_message call dayz_rollingMessages;
|
||||
systemChat _message; // You have upgraded %2. The combination is: %1
|
||||
|
||||
} else {
|
||||
format[localize "str_epoch_player_159",_text] call dayz_rollingMessages;
|
||||
format[localize "str_epoch_player_159", _text] call dayz_rollingMessages; // You have upgraded %1.
|
||||
};
|
||||
|
||||
if (DZE_GodModeBase && {!(_classname in DZE_GodModeBaseExclude)}) then {
|
||||
|
||||
_object addEventHandler ["HandleDamage",{false}];
|
||||
|
||||
} else {
|
||||
//
|
||||
// reapply damage based on armor values
|
||||
//
|
||||
local _armorOld = getNumber (configFile >> "CfgVehicles" >> (typeOf _obj) >> "armor");
|
||||
local _damageOld = damage _obj;
|
||||
|
||||
local _armorNew = getNumber (configFile >> "CfgVehicles" >> _classname >> "armor");
|
||||
local _damageNew = _damageOld;
|
||||
|
||||
// check for divide by 0
|
||||
if (_armorNew > 0) then {
|
||||
_damageNew = (_damageOld * _armorOld) / _armorNew;
|
||||
};
|
||||
|
||||
_object setDamage _damageNew;
|
||||
};
|
||||
|
||||
if (DZE_permanentPlot) then {
|
||||
_ownerID = _obj getVariable["ownerPUID","0"];
|
||||
if (_ownerID == "0") then { _ownerID = dayz_playerUID; }; //APFL is on but UID is 0 so we will claim it to record the ownership.
|
||||
_object setVariable ["ownerPUID",_ownerID,true];
|
||||
|
||||
local _ownerID = _obj getVariable["ownerPUID","0"];
|
||||
|
||||
if (_ownerID == "0") then {
|
||||
_ownerID = dayz_playerUID; // APFL is on but UID is 0 so we will claim it to record the ownership.
|
||||
};
|
||||
|
||||
_object setVariable ["ownerPUID", _ownerID, true];
|
||||
|
||||
if (_lockable == 3) then {
|
||||
_friendsArr = [[dayz_playerUID,toArray (name player)]];
|
||||
|
||||
local _friendsArr = [[dayz_playerUID, toArray (name player)]];
|
||||
_object setVariable ["doorfriends", _friendsArr, true];
|
||||
PVDZE_obj_Swap = [_objectCharacterID,_object,[_dir,_location,_ownerID,_vector],_classname,_obj,player,_friendsArr,dayz_authKey];
|
||||
|
||||
PVDZE_obj_Swap = [_objectCharacterID, _object, [_dir, _location, _ownerID, _vector], _classname, _obj, player, _friendsArr, dayz_authKey];
|
||||
} else {
|
||||
PVDZE_obj_Swap = [_objectCharacterID,_object,[_dir,_location,_ownerID,_vector],_classname,_obj,player,[],dayz_authKey];
|
||||
PVDZE_obj_Swap = [_objectCharacterID, _object, [_dir, _location, _ownerID, _vector], _classname, _obj, player, [], dayz_authKey];
|
||||
};
|
||||
} else {
|
||||
PVDZE_obj_Swap = [_objectCharacterID,_object,[_dir,_location,_vector],_classname,_obj,player,[],dayz_authKey];
|
||||
PVDZE_obj_Swap = [_objectCharacterID, _object, [_dir, _location, _vector], _classname, _obj, player, [], dayz_authKey];
|
||||
};
|
||||
|
||||
publicVariableServer "PVDZE_obj_Swap";
|
||||
|
||||
player reveal _object;
|
||||
|
||||
} else {
|
||||
{player addMagazine _x;} count _temp_removed_array;
|
||||
if (count _temp_BP_removed_array > 0) then {
|
||||
{(unitbackpack player) addMagazineCargoGlobal _x} count _temp_BP_removed_array;
|
||||
};
|
||||
format[localize "str_epoch_player_145",_removed_total,_tobe_removed_total] call dayz_rollingMessages;
|
||||
|
||||
{player addMagazine _x;} count _temp_removed_array;
|
||||
|
||||
if (count _temp_BP_removed_array > 0) then {
|
||||
{(unitBackpack player) addMagazineCargoGlobal _x} count _temp_BP_removed_array;
|
||||
};
|
||||
format[localize "str_epoch_player_145", _removed_total, _tobe_removed_total] call dayz_rollingMessages; // Missing Parts after first check Item: %1 / %2
|
||||
};
|
||||
} else {
|
||||
_textMissing = getText(configFile >> "CfgMagazines" >> _missing >> "displayName");
|
||||
format[localize "STR_EPOCH_ACTIONS_6",_missingQty, _textMissing] call dayz_rollingMessages;
|
||||
systemchat localize "STR_CRAFTING_NEEDED_ITEMS";
|
||||
local _textMissing = getText(configFile >> "CfgMagazines" >> _missing >> "displayName");
|
||||
format[localize "STR_EPOCH_ACTIONS_6", _missingQty, _textMissing] call dayz_rollingMessages; // Missing %1 more of %2
|
||||
|
||||
systemChat localize "STR_CRAFTING_NEEDED_ITEMS"; // Needed items:
|
||||
|
||||
if (count _requirements > 0) then {
|
||||
{
|
||||
_text = getText(configFile >> "CfgMagazines" >> (_x select 0) >> "displayName");
|
||||
systemchat format ["%2x %1",_text,(_x select 1)];
|
||||
local _text = getText(configFile >> "CfgMagazines" >> (_x select 0) >> "displayName");
|
||||
systemChat format ["%2x %1", _text, (_x select 1)];
|
||||
} count _requirements;
|
||||
};
|
||||
};
|
||||
};
|
||||
} else {
|
||||
localize "str_epoch_player_82" call dayz_rollingMessages;
|
||||
localize "str_epoch_player_82" call dayz_rollingMessages; // No upgrades are available
|
||||
};
|
||||
|
||||
dayz_actionInProgress = false;
|
||||
|
||||
Reference in New Issue
Block a user