ArmA 3 Find All Meadows

ArmA 3 Forum, ArmA 3, ArmA 3 Config, ArmA 3 Missions, ArmA 3 3D Modeling, ArmA 3 Scripting, ArmA 3 Terrain, ArmA 3 Texturing, ArmA 3 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.