Created
July 23, 2015 00:20
-
-
Save Starfox64/c69f00c2e82d0edfd109 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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