Ignatz_Tools/Tools/RemoveTreesAround.sqf
2018-12-07 17:25:38 +01:00

12 lines
360 B
Plaintext

_pos = getpos player;
_alltrees = nearestobjects [_pos,[],25];
{
_pinus = ['pinus',str _x] call BIS_fnc_inString;
_ficus = ['ficus',str _x] call BIS_fnc_inString;
_wreck = ['wreck',str _x] call BIS_fnc_inString;
_stone = ['stone',str _x] call BIS_fnc_inString;
if (_pinus || _ficus || _wreck || _stone) then {
_x hideObjectGlobal true;
};
} foreach _alltrees;