iv created map markers in the Map Editor and exported it but how do i actually install them in my server because i was reading a tutorial and i installed it the way he did but it faild to work
the example of what the markers look like before install
_this = createMarker ["NW Barracks", [4882.9556, 10267.716, 0]]; _this setMarkerText "NW Barracks"; _this setMarkerShape "RECTANGLE"; _this setMarkerType "SC_flag_0_east"; _this setMarkerColor "ColorRed"; _this setMarkerBrush "Solid"; _marker_0 = _this; _this = createMarker ["Electro Barracks", [10293.58, 2125.8064, -1.5258789e-005]]; _this setMarkerText "Electro Barracks"; _this setMarkerShape "RECTANGLE"; _this setMarkerType "SC_flag_0_east"; _this setMarkerColor "ColorRed"; _this setMarkerBrush "Solid"; _marker_1 = _this; _this = createMarker ["Cherno Barracks", [7032.8218, 2728.7549, 3.8146973e-006]]; _this setMarkerText "Cherno Barracks"; _this setMarkerShape "RECTANGLE"; _this setMarkerType "SC_flag_0_east"; _this setMarkerColor "ColorRed"; _this setMarkerBrush "Solid"; _marker_2 = _this; _this = createMarker ["Novy Lug Barracks", [9574.1719, 11315.81, 4.5776367e-005]]; _this setMarkerText "Novy Lug Barracks"; _this setMarkerShape "RECTANGLE"; _this setMarkerType "SC_flag_0_east"; _this setMarkerColor "ColorRed"; _this setMarkerBrush "Solid"; _marker_3 = _this;
and the tutorial said to install it into mission.sqm like this
class Item17 { position[]={4882.9556, 10267.716, 0}; name="NWBarracks"; text="NW Barracks"; type="mil_dot"; colorName="ColorRed"; }; class Item18 { position[]={10293.58, 2125.8064, -1.5258789e-005}; name="ElectroBarracks"; text="Electro Barracks"; type="mil_dot"; colorName="ColorRed"; }; class Item19 { position[]={7032.8218, 2728.7549, 3.8146973e-006}; name="ChernoBarracks"; text="Cherno Barracks"; type="mil_dot"; colorName="ColorRed"; }; class Item20 { position[]={9574.1719, 11315.81, 4.5776367e-005}; name="NovyLugBarracks"; text="Novy Lug Barracks"; type="mil_dot"; colorName="ColorRed"; };