Skip to content

Instantly share code, notes, and snippets.

@Starfox64
Created July 23, 2015 00:20
Show Gist options
  • Save Starfox64/c69f00c2e82d0edfd109 to your computer and use it in GitHub Desktop.
Save Starfox64/c69f00c2e82d0edfd109 to your computer and use it in GitHub Desktop.
private ["_marker"];
if (!isNil "IntelAdded") exitWith {};
_marker = createMarkerLocal ["m2", getMarkerPos "mkrM2"];
_marker setMarkerShape "ICON";
_marker setMarkerType "hd_warning";
_marker setMarkerText "Static MG";
_marker = createMarkerLocal ["range", getMarkerPos "mkrRange"];
_marker setMarkerShape "ICON";
_marker setMarkerType "hd_ambush";
_marker setMarkerText "Firing Range";
_marker = createMarkerLocal ["repair", getMarkerPos "mkrRepair"];
_marker setMarkerShape "ICON";
_marker setMarkerType "hd_destroy";
_marker setMarkerText "Repair Station";
_marker = createMarkerLocal ["supply", getMarkerPos "mkrSupply"];
_marker setMarkerShape "ICON";
_marker setMarkerType "hd_destroy";
_marker setMarkerText "Supplies";
hint "Intel added to your map.";
IntelAdded = true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment