mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-14 12:12:34 +03:00
Add plotManagementMustBeClose config option
Setting false allows adding any online player to plot friends regardless of their distance from the pole.
This commit is contained in:
@@ -1,13 +1,14 @@
|
||||
private ["_close"];
|
||||
lbClear 7001;
|
||||
_closePeople = player nearEntities ["CAManBase", 10];
|
||||
if (!DZE_plotManagementMustBeClose) then {_closePeople = playableUnits};
|
||||
Humans = [];
|
||||
{
|
||||
if (_x isKindOf "Man" and !(_x isKindOf "zZombie_base")) then {
|
||||
if (isPlayer _x) then {
|
||||
_friendUID = getPlayerUID _x;
|
||||
_friendName = name _x;
|
||||
Humans = Humans + [[_friendUID,_friendName]] ;
|
||||
lbAdd [7001, _friendName];
|
||||
};
|
||||
} forEach _closePeople;
|
||||
} count _closePeople;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user