Easy Custom Map markers

AsianKid

Well-Known Member
=============================================================
Custom map markers the easy way
I do not take credit this is known to everyone
=============================================================
Easy <10

Map marker Icons
http://community.bistudio.com/wikidata/images/e/ea/Arma2_markers4.jpg
(Some Don't Work) :eek:

1. A SQF called Marker.sqf

2. Add this in the sqf
_marker = createMarker ["change me", [Your cords here]];
_marker setMarkerText "Fallen City"; (Name)
_marker setMarkerType "mil_objective"; (Must be workingfor dayz)
_marker setMarkerColor "ColorRed"; (Marker color)
marker = _change me; (Same as above)

3. Add this code in your init.sqf
//custom marker
[] execVM "marker.sqf";

Take off the "(Same as above)" after each line or it wont work

Example
Code:
_sectorFOB  = createMarker ["_sectorFOB ", [6611.9756, 14201.991]];
_sectorFOB  setMarkerText "FOB";
_sectorFOB  setMarkerType "mil_objective";
_sectorFOB  setMarkerColor "ColorRed";
_sectorFOB  = _sectorFOB ;

Enjoy :)
 
Back
Top