mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
98 lines
2.7 KiB
Plaintext
98 lines
2.7 KiB
Plaintext
private ["_unit","_distance","_doRun","_pos","_listTalk","_zombie"];
|
|
|
|
_unit = _this select 0;
|
|
_distance = _this select 1;
|
|
_doRun = _this select 2;
|
|
_pos = _this select 3;
|
|
|
|
_listTalk = _pos nearEntities ["zZombie_Base",_distance];
|
|
_inVehicle = (vehicle _unit != _unit);
|
|
_isAir = vehicle player iskindof "Air";
|
|
_isLand = vehicle player iskindof "Land";
|
|
_isSea = vehicle player iskindof "Sea";
|
|
_speed = speed (vehicle _unit);
|
|
|
|
{
|
|
private["_localtargets","_remotetargets","_targets","_dis"];
|
|
|
|
_distance = _distance max floor(_distance*.9);
|
|
|
|
_dis = _x distance _unit;
|
|
_zombie = _x;
|
|
|
|
switch (true) do {
|
|
case (_dis < 51): {
|
|
if (_doRun) then {
|
|
_localtargets = _x getVariable ["localtargets",[]];
|
|
_remotetargets = _x getVariable ["remotetargets",[]];
|
|
_targets = _localtargets + _remotetargets;
|
|
if (!(_unit in _targets)) then {
|
|
switch (local _x) do {
|
|
case false: {
|
|
_remotetargets set [count _remotetargets,_unit];
|
|
_x setVariable ["remotetargets",_remotetargets,true];
|
|
};
|
|
case true: {
|
|
_localtargets set [count _localtargets,_unit];
|
|
_x setVariable ["localtargets",_localtargets,false];
|
|
};
|
|
};
|
|
};
|
|
} else {
|
|
_zombie setVariable ["myDest",_pos,true];
|
|
};
|
|
};
|
|
case ((_dis > 50) and (_dis <= 71)): {
|
|
_50 = round(random 100);
|
|
if (_50 < 50) then {
|
|
if (_doRun) then {
|
|
_localtargets = _x getVariable ["localtargets",[]];
|
|
_remotetargets = _x getVariable ["remotetargets",[]];
|
|
_targets = _localtargets + _remotetargets;
|
|
if (!(_unit in _targets)) then {
|
|
switch (local _x) do {
|
|
case false: {
|
|
_remotetargets set [count _remotetargets,_unit];
|
|
_x setVariable ["remotetargets",_remotetargets,true];
|
|
};
|
|
case true: {
|
|
_localtargets set [count _localtargets,_unit];
|
|
_x setVariable ["localtargets",_localtargets,false];
|
|
};
|
|
};
|
|
};
|
|
} else {
|
|
_zombie setVariable ["myDest",_pos,true];
|
|
};
|
|
} else {
|
|
_zombie setVariable ["myDest",_pos,true];
|
|
};
|
|
};
|
|
case (_dis > 70): {
|
|
_zombie setVariable ["myDest",_pos,true];
|
|
};
|
|
};
|
|
|
|
/*
|
|
_zombie = _x;
|
|
if (_doRun) then {
|
|
_localtargets = _x getVariable ["localtargets",[]];
|
|
_remotetargets = _x getVariable ["remotetargets",[]];
|
|
_targets = _localtargets + _remotetargets;
|
|
if (!(_unit in _targets)) then {
|
|
switch (local _x) do {
|
|
case false: {
|
|
_remotetargets set [count _remotetargets,_unit];
|
|
_x setVariable ["remotetargets",_remotetargets,true];
|
|
};
|
|
case true: {
|
|
_localtargets set [count _localtargets,_unit];
|
|
_x setVariable ["localtargets",_localtargets,false];
|
|
};
|
|
};
|
|
};
|
|
} else {
|
|
_zombie setVariable ["myDest",_pos,true];
|
|
};
|
|
*/
|
|
} forEach _listTalk; |