mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 04:02:37 +03:00
dayz_zombieSpeak and player_alertZombies are called often together or should be. fnc_alertZombies groups them together and uses the given parameters. This streamlines and corrects the missing or incorrect calls from dayz_zombieSpeak or player_alertZombies.
87 lines
2.5 KiB
Plaintext
87 lines
2.5 KiB
Plaintext
/*
|
|
DayZ Harvest Plant
|
|
Usage: spawn player_harvestPlant;
|
|
Made for DayZ Epoch please ask permission to use/edit/distrubute email vbawol@veteranbastards.com.
|
|
*/
|
|
|
|
closeDialog 0;
|
|
|
|
if (dayz_actionInProgress) exitWith {localize "str_epoch_player_72" call dayz_rollingMessages;};
|
|
dayz_actionInProgress = true;
|
|
|
|
private ["_isOk","_i","_objName","_finished","_proceed","_itemOut","_countOut","_plant","_findNearestPlant","_index","_invResult","_text","_playerNear"];
|
|
|
|
_countOut = 0;
|
|
|
|
_findNearestPlant = [];
|
|
{
|
|
if (typeOf _x in dayz_plantTypes && {alive _x}) then {
|
|
_objName = _x call fn_getModelName;
|
|
if (_objName in dayz_plant) then {
|
|
_findNearestPlant set [count _findNearestPlant,_x];
|
|
_index = dayz_plant find _objName;
|
|
_itemOut = dayz_plantOutput select _index;
|
|
_countOut = 1;
|
|
};
|
|
};
|
|
} count nearestObjects [([player] call FNC_getPos), [], 10];
|
|
|
|
if (count _findNearestPlant >= 1) then {
|
|
_plant = _findNearestPlant select 0;
|
|
|
|
_isOk = true;
|
|
_proceed = false;
|
|
while {_isOk} do {
|
|
[player,(getPosATL player),20,"chopwood"] spawn fnc_alertZombies;
|
|
|
|
_finished = ["Medic",1] call fn_loopAction;
|
|
|
|
if(!_finished) exitWith {
|
|
_isOk = false;
|
|
_proceed = false;
|
|
};
|
|
|
|
if(_finished) exitWith {
|
|
_isOk = false;
|
|
_proceed = true;
|
|
};
|
|
};
|
|
|
|
if (_proceed) then {
|
|
_playerNear = {isPlayer _x} count (([_plant] call FNC_GetPos) nearEntities ["CAManBase", 12]) > 1;
|
|
if (_playerNear) exitWith {dayz_actionInProgress = false; localize "str_pickup_limit_5" call dayz_rollingMessages;};
|
|
|
|
false call dz_fn_meleeMagazines; //Remove melee magazines (BIS_fnc_invAdd fix)
|
|
["Working",0,[3,2,4,0]] call dayz_NutritionSystem;
|
|
_invResult = false;
|
|
_i = 0;
|
|
for "_x" from 1 to _countOut do {
|
|
_invResult = [player,_itemOut] call BIS_fnc_invAdd;
|
|
if(_invResult) then {
|
|
_i = _i + 1;
|
|
};
|
|
};
|
|
true call dz_fn_meleeMagazines;
|
|
|
|
_text = getText (configFile >> "CfgMagazines" >> _itemOut >> "displayName");
|
|
|
|
if (_i != 0) then {
|
|
if ("" == typeOf _plant) then {
|
|
PVDZ_objgather_Knockdown = [_plant,player]; // Ask server to setDamage on plant and sync for JIP
|
|
publicVariableServer "PVDZ_objgather_Knockdown";
|
|
} else {
|
|
deleteVehicle _plant;
|
|
};
|
|
format[localize "str_epoch_player_154",_i,_text] call dayz_rollingMessages;
|
|
} else {
|
|
format[localize "str_epoch_player_143",_i,_text] call dayz_rollingMessages;
|
|
};
|
|
} else {
|
|
localize "str_epoch_player_73" call dayz_rollingMessages;
|
|
};
|
|
} else {
|
|
localize "str_epoch_player_74" call dayz_rollingMessages;
|
|
};
|
|
|
|
dayz_actionInProgress = false;
|