ARMA 3 EDITOR TUTORIAL - Create SYMBOL MARKER with script
This is how to make Symbol Marker to show in a game after you start playing.It is useful when you need to get waypoint markers in some situations or briefings from other units.I usually use it when other units need to point me to tasks or given routes or enemy positions when mission is already running.
I hope you find all Tips helpful ... any donations are very welcome !!!
BTC - 1825i8FQkcE6b6auzpQr3x5NFnb8VKGxTf
LTC - LPpnLZ5T9fbNQbQqc6m8YbL95wDYLdEUCo
ETH - 0x998e90FbA60b48116B92491bAd756F8Be27846e5
Also check out my blog for more info on scripts and step by step tutorials:
http://arma-3-tips.blogspot.com/
SYMBOL MARKER in arma 3:
bob = createMarker ["marker1", [5025,5903]]; bob setMarkerShape "ICON"; "marker1" setMarkerType "mil_arrow"; "marker1" setMarkerColor "ColorRed"; "marker1" setMarkerDir 90; "marker1" setMarkerText "GO HERE.";
Do not forget to name a unit that will create you a marker - in this case ( "bob" )