Arma3 - Create a map marker via code

From ScottWiki
Revision as of 19:57, 21 January 2019 by Wikiadmin (talk | contribs) (1 revision imported)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

This can be done in script or a trigger etc...

If you use a trigger,


We can use a condition: to check to fire when the Intel is taken.
!alive intel_z


_markerstr = createMarker ["MM_1_display", (getMarkerPos "MM_1")]; 
_markerstr setMarkerShape "ICON";
_markerstr setMarkerColor "ColorBlue";
_markerstr setMarkerType "mil_pickup";