ArmA 3 Find All Meadows

ArmA 3, Config, Missions, 3D Modeling, Scripting, Terrain, Texturing, Tools

2022-06-23T13:52:00Z

Find all meadows:

{deletemarker _x} foreach allMapMarkers;
 
_centerPos = getArray (configfile >> "CfgWorlds" >> worldName >> "centerPosition");
 
_allMeadows = selectBestPlaces [_centerPos,(worldSize / 2) * 1.4142,"(1 - forest) * (1 - hills) * (1 - sea) * (1 - trees) * (1 + meadow) * (1 - houses)",50,100];
_allMeadows = _allMeadows apply {_x#0};
{
	_marker = createmarker [str _x, _x];
	_marker setmarkertype "mil_flag";
	_marker setmarkercolor "ColorRed";
	_marker setmarkertext format ["Flat %1",_forEachIndex];
} forEach _allMeadows;

Source bis forums.