Jump to content
  • 0

Markers not working?


Desire

Question

I basically went into my mission.sqm and added my own marker, but it doesn't seem to be working. Anyone know why?

 

here is the code.

	class Markers
	{
		items=18;
		class Item0
		{
			position[]={7839.6055,381.33774,8414.7324};
			name="center";
			type="Empty";
		};
		class Item1
		{
			position[]={-7245.377,365.98782,19535.367};
			name="respawn_west";
			type="Empty";
		};
		class Item2
		{
			position[]={4932.3345,0.39950246,1989.1094};
			name="spawn0";
			type="Empty";
		};
		class Item3
		{
			position[]={2236.0391,0.63119155,1923.3735};
			name="spawn1";
			type="Empty";
		};
		class Item4
		{
			position[]={8738.1328,0.45720705,2122.1082};
			name="spawn2";
			type="Empty";
		};
		class Item5
		{
			position[]={10909.267,0.57597214,2422.3096};
			name="spawn3";
			type="Empty";
		};
		class Item6
		{
			position[]={13510.764,0.44504455,5249.3027};
			name="spawn4";
			type="Empty";
		};
		class Item7
		{
			position[]={6326.4805,304.99265,7809.4888};
			name="Tradercitystary";
			text="Trader City Stary";
			type="mil_circle";
			colorName="ColorBlack";
		};
		class Item8
		{
			position[]={4361.4937,3,2259.9526};
			name="wholesaleSouth";
			text="Wholesaler";
			type="mil_dot";
			colorName="ColorBlack";
		};
		class Item9
		{
			position[]={13532.614,3.0083523,6355.9497};
			name="boatTraderEast";
			text="Wholesaler";
			type="mil_dot";
			colorName="ColorBlack";
		};
		class Item10
		{
			position[]={7989.3354,0.30462033,2900.9946};
			name="BoatDealerSouth";
			text="Boat Dealer";
			type="mil_dot";
			colorName="ColorBlack";
		};
		class Item11
		{
			position[]={12060.471,158.85699,12638.533};
			name="AirVehicles";
			text="Aircraft Dealer";
			type="mil_dot";
			colorName="ColorGreen";
		};
		class Item12
		{
			position[]={1606.6443,289.70795,7803.5156};
			name="BanditDen";
			text="Bandit Camp";
			type="mil_dot";
			colorName="ColorRed";
		};
		class Item13
		{
			position[]={11447.91,317.27109,11364.536};
			name="Klen";
			text="Trader City Klen";
			type="mil_circle";
			colorName="ColorGreen";
		};
		class Item14
		{
			position[]={13441.16,1.1406164,5429.3013};
			name="BoatDealerEast";
			text="Boat Dealer";
			type="mil_dot";
			colorName="ColorBlack";
		};
		class Item15
		{
			position[]={4064.2258,365.13501,11665.938};
			name="TradercityBash";
			text="Trader City Bash";
			type="mil_circle";
			colorName="ColorBlack";
		};
		class Item16
		{
			position[]={12944.227,210.19823,12766.889};
			name="HeroTrader";
			text="Hero Camp";
			type="mil_dot";
			colorName="ColorBlue";
		};
		class Item17
		{
			position[]={6991.15,5362.56,0};
			name="CarSafeSpot";
			text="Vehicle Safe Spot";
			type="mil_dot";
			colorName="ColorGreen";
		};
	};

Item17 is my custom one.

Link to comment
Share on other sites

Recommended Posts

  • 0

I am having problems with my markers anyone point out what I am doing wrong please.

 

//MARKING LIKE MISSIONS

_marker = createMarker ["CircleOnMap",[1312.72,4112.0,0]];

_marker setMarkerColor "ColorRed";

_marker setMarkerShape "ELLIPSE";

_marker setMarkerAlpha 0.9;

_marker setMarkerSize [100, 100];

 

//DOT IN MIDDLE OF ABOVE

_dot = createMarker ["DotInCircle",[1312.72,4112.0,0]];

_dot setMarketColor "ColorBlack";

_dot setMarkerType "mil_dot";

_dot setMarkerText "Release Me";

 

I am looking at putting marker on the map like one that is shown when missions appear.

 

Thanks

 

 

If using "ELLIPSE" or "RECTANGLE" you have to fill the Marker, otherwise it's invisible.

//MARKING LIKE MISSIONS

_marker = createMarker ["CircleOnMap",[1312.72,4112.0,0]];
_marker setMarkerColor "ColorRed";
_marker setMarkerShape "ELLIPSE";
_marker setMarkerBrush "SOLID";
_marker setMarkerAlpha 0.9;
_marker setMarkerSize [100, 100];
Link to comment
Share on other sites

  • 0

 

If using "ELLIPSE" or "RECTANGLE" you have to fill the Marker, otherwise it's invisible.

//MARKING LIKE MISSIONS

_marker = createMarker ["CircleOnMap",[1312.72,4112.0,0]];
_marker setMarkerColor "ColorRed";
_marker setMarkerShape "ELLIPSE";
_marker setMarkerBrush "SOLID";
_marker setMarkerAlpha 0.9;
_marker setMarkerSize [100, 100];

 

Many thanks

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Discord

×
×
  • Create New...