use clear icon and increase range

This commit is contained in:
[VB]AWOL 2015-06-22 12:24:11 -05:00
parent 176a19c33c
commit 0821bd3727
2 changed files with 8 additions and 2 deletions

View File

@ -2,7 +2,7 @@
EP_notSetup = [];
EP_setup = [];
_all = nearestObjects [player, ["building"], 200];
_all = nearestObjects [player, ["building"], 20000];
{
_typeOf = typeof _x;

View File

@ -47,6 +47,11 @@ EPOCH_KeyDownCustom = {
if (_ctrl) then {
hint "Saved to clipboard";
copyToClipboard call EPOCH_dbg_saveMapConfig;
EP_modesExport = [];
{
EP_modesExport pushBack (missionNamespace getVariable [_x,[]]);
} forEach EP_modes;
};
};
@ -151,7 +156,7 @@ onEachFrame {
_color = EP_modeColors select _foreachindex;
};
} forEach EP_modes;
drawIcon3D ["\x\addons\a3_epoch_code\Data\Member.paa", _color, getPos _x, 1, 1, 45, _p3dName, 1, 0.04, "PuristaMedium"];
drawIcon3D ["a3\weapons_f\data\clear_empty.paa", _color, getPos _x, 1, 1, 45, _p3dName, 1, 0.04, "PuristaMedium"];
};
};
} forEach _all;
@ -161,3 +166,4 @@ onEachFrame {