Adding custom markers the easy way

Just so you know there are more markers then the ones posted. There are some really cool ones like flags and stuff.
 
Just so you know there are more markers then the ones posted. There are some really cool ones like flags and stuff.
not all of them work in dayz but heres the list of all of them :p (link at bottom to source at bottom)
516px-Arma2_markers1.jpg

238px-Arma2_markers2.jpg

211px-Arma2_markers3.jpg

800px-Arma2_markers4.jpg


SOURCE
https://community.bistudio.com/wiki/cfgMarkers
 
For anyone wondering about multiple markers, you can do it all in one .sqf.
Code:
_marker = createMarker ["PobedaMine", [9646.48,13534.9,0.00164795]];
_marker setMarkerText "Pobeda Mine";
_marker setMarkerType "mil_objective";
_marker setMarkerColor "ColorRed";
marker = _PobedaMine;

_markerr = createMarker ["KamenkaMine", [121.643,1603.48,0.00143862]];
_markerr setMarkerText "Kamenka Mine";
_markerr setMarkerType "mil_objective";
_markerr setMarkerColor "ColorRed";
markerr = _KamenkaMine;

_markerrr = createMarker ["BorTrader", [2691.03,3158.41,0.298935]];
_markerrr setMarkerText "Bor Trader";
_markerrr setMarkerType "Vehicle";
_markerrr setMarkerColor "ColorRed";
markerrr = _BorTrader;

all in the original .sqf
 
Back
Top