ARMA 3 EDITOR TUTORIAL - AREA MARKER

How to create AREA MARKER ?
In this Arma editor tutorial you can see how to set up a marker area using a simple script. This time I have shown you how to create a marker with waypoint and a trigger. This can be very helpful when making a mission and need a marker created after the game begin.

VIDEO EXAMPLE
*Create a unit and name it ( bob )

*Create a Waypoint

  • in the ON ACT field put this script " bob = createMarker ["marker1", [5025,5903]]; bob setMarkerShape "ELLIPSE"; "marker1" setMarkerColor "ColorGreen"; "marker1" setMarkerSize [100, 100]; "marker1" setMarkerBrush "SOLID"; "
Another way is to create the Area Marker with trigger
  • in the ON ACT field put this script " bob = createMarker ["marker1", [5025,5903]]; bob setMarkerShape "ELLIPSE"; "marker1" setMarkerColor "ColorGreen"; "marker1" setMarkerSize [100, 100]; "marker1" setMarkerBrush "SOLID"; "
TYPE OF MARKERS:
"Solid", "Horizontal", "Vertical", "Grid", "FDiagonal", "BDiagonal", "DiagGrid" and "Cross"