problem with markers

Hello guys me agian

i cant find it on google
when i add a marker in the map editor its show's on the right position
but when i add in me server mission.sqm and start the server its on the wrong position
ie2gt5.png


Here is the code i use
Code:
        class Item7
        {
            position[]={11489.416, 11325.14};
            name="Trading Safe Zone";
            text="Trading Safe Zone";
            markerType="ELLIPSE";
            type="Empty";
            colorName="ColorGreen";
            fillName="Grid";
            a=80;
            b=80;
            drawBorder=1;
        };
        class Item8
        {
            position[]={11489.416, 11325.14};
            name="Trading Safe Zone";
            text="Trading Safe Zone";
            type="NATO_base";
            colorName="ColorBlack";
        };
    };
 
In the position line, u must be three values.
It has the X,Y and Z axis.
And you have only the X and Y axis...

EDIT:
The SQM File has the Axis: X,Z and Y
 
Back
Top