• 0
TBsThug

[SOLVED] Map TEXT

Question

I added 3 boat traders, In my sqm  where it says text ="" I put BOAT DEALER. The circle is there in game but the text is not...  I am new to Arma 3. 

So how do you add text to the map?

Edited by TBsThug

Share this post


Link to post
Share on other sites

3 answers to this question

  • 1

open mission.sqm (in the your mission.pbo Example: Exile.Altsi.pbo)

Find:

class Markers

add trader position and text. Example:

class Markers
	{
  items = 2;
	class Item0 //Safe Zone Code
	{
		position[] = {13642.5,-0.0010159,6330.87};
		name = SouthBoatTraderCity;
		text = "Boat Trader";
		markerType = ELLIPSE;
		type = ExileTraderZone;
		colorName = ColorBlue;
		fillName = SolidBorder;
		a = 100;
		b = 100;
		drawBorder = 1;
	};
	
	class Item1 // Map Marker Text
	{
	   position[] = {13642.5,-0.0010159,6330.87};
	   name = SouthBoatTraderMarker;
	   text = "Boat Trader City (Safe Zone)";
	   type = mil_dot;
	   colorName = ColorBlack;
	   a = 1;
	   b = 1;
	};

 

Share this post


Link to post
Share on other sites
Advertisement

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

  • Recently Browsing   0 members

    No registered users viewing this page.