Remove terrain map text - Global-Conflicts-ArmA/Olsen-Framework-Arma-3 GitHub Wiki

The following method will allow missions makers to remove text that is baked into a terrain/map, such as a town's name.

  1. Place a map marker with the variable REMOVALMARK (or a variable of your choice)
  2. Place the following in your preInitGlobal.sqf file.
{ 
(createLocation [_x]) setType "Invisible";
}
forEach nearestLocations [getmarkerpos "REMOVALMARK", ["NameLocal","NameMarine","Hill","NameCity","NameVillage"], 200];
  • "NameLocal","NameMarine","Hill","NameCity","NameVillage" - Type of marker to remove.
  • 200- The radius from the REMOVALMARK marker to remove terrain/map text.