How to add the text in the M map?

zsefvbhuhh

New Member
A few days ago I went to other server according to the M after the discovery ofsome of the word,I would like to ask how to join?
 
When i see the name of the post i think hes talking about how some servers have the info on the map, such as server rules, teamspeak, server website etc, and they cant be deleted by players. If that makes any sense.
 
add this in your mission.sqm

Code:
class Markers
    {
        items=1;
        class Item0
        {
            position[]={5382.7192, -309.49774, 5650.0811};    //where you want it on the map
            name="rules";                    //name
            text="Server Rules";            //your text what you want to show on the map
            type="NATO_base";                //icon for on the map look on arma 2 wiki
            colorName="colorBlack";                //color of the text
        };
    };
};
 
add this in your mission.sqm

Code:
class Markers
    {
        items=1;
        class Item0
        {
            position[]={5382.7192, -309.49774, 5650.0811};    //where you want it on the map
            name="rules";                    //name
            text="Server Rules";            //your text what you want to show on the map
            type="NATO_base";                //icon for on the map look on arma 2 wiki
            colorName="colorBlack";                //color of the text
        };
    };
};

Is there any other way?
 
Back
Top