Dman

Safe Zone Coordinates not working

29 posts in this topic

So I'm running Chernarus, and I got these cooridnates from m3editor, I'm trying to put the safezone icon markers on my custom traders, but here's one that I put in stary, my traders are actually working it's just the markers won't show up, also can anyone tell me how to actually put the safezone in the trader?

Spoiler

class Item12
		{
			position[]={6365.63,7783.9,0};
			name="MafiaTraderCity";
			text="Mafia";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			a=175;
			b=175;
			drawBorder=1;
		};
		class Item13
		{
			position[]={6365.63,7783.9,0};
			name="TraderCityMarkerIcon";
			text="";
			type="ExileTraderZoneIcon";
		};

 

Also just tried these cooridnates from the normal eden editor, still nothing. 6334.7,7792.69,3.05176e-005

 

I've also tried X Z Y still nothing.

 

Spoiler

class Item12
		{
			position[]={6341.67,0,7800.45};
			name="StaryTraderCity";
			text="Stary";
			type="ExileTraderZone";
			markerType="ELLIPSE";
			colorName="ColorBlack";
			fillName="Border";
			a=500;
			b=500;
			drawBorder=1;
		};
		class Item13
		{
			position[]={6341.67,0,7800.45};
			name="TraderCityMarkerIcon";
			text="Stary";
			type="ExileTraderZoneIcon";
		};

 

 

Edited by Dman

Share this post


Link to post
Share on other sites
Advertisement
12 minutes ago, kuplion said:

Have you increased the item count of the class?

Uhmm. No. Because I don't know how or why to do that

 

Edit: Do you mean at the top where it shows the item class number?

Edit: If that's what you meant I tried it and it doesn't work

Edited by Dman

Share this post


Link to post
Share on other sites
1 hour ago, Dman said:

Uhmm. No. Because I don't know how or why to do that

 

Edit: Do you mean at the top where it shows the item class number?

Edit: If that's what you meant I tried it and it doesn't work

Post your mission.sqm on pastebin and link it here. :)

Share this post


Link to post
Share on other sites

you have to create a marker on the map and a safezone marker

mission.sqm would help us alot to help you out! :)

greetings,

ALSO: how many items do you have in your list, you added more or less markers than standard?

items= ?

Edited by Ch33s3
additional help

Share this post


Link to post
Share on other sites

hi again!

i think i found your issue!

replace yours with that down below

class Item12
        {
            position[]={6365.63,0,7783.9}; //changed this
            name="MafiaTraderCity";
            text="Mafia";
            type="ExileTraderZone";
            markerType="ELLIPSE";
            colorName="ColorBlack";
            fillName="Border";
            a=175;
            b=175;
            drawBorder=1;
        };
        class Item13
        {
            position[]={6365.63,0,7783.9};  // and changed that
            name="TraderCityMarkerIcon";
            text="";
            type="ExileTraderZoneIcon";
        };

 

Share this post


Link to post
Share on other sites
5 minutes ago, Ch33s3 said:

hi again!

i think i found your issue!

replace yours with that down below

class Item12
        {
            position[]={6365.63,0,7783.9}; //changed this
            name="MafiaTraderCity";
            text="Mafia";
            type="ExileTraderZone";
            markerType="ELLIPSE";
            colorName="ColorBlack";
            fillName="Border";
            a=175;
            b=175;
            drawBorder=1;
        };
        class Item13
        {
            position[]={6365.63,0,7783.9};  // and changed that
            name="TraderCityMarkerIcon";
            text="";
            type="ExileTraderZoneIcon";
        };

 

It's still not working

Share this post


Link to post
Share on other sites
8 minutes ago, Dman said:

It's still not working

        class Item12
    {
        dataType = "Marker";
        position[]={ 6365.63, 0, 7783.9};
        name = "ExileMarker1";
        text = "";
        markerType = "ELLIPSE";
        type = "ExileTraderZone";
        colorName = "ColorBlack";
        fillName = "SolidBorder";
        a = 175;
        b = 175;
        drawBorder = 1;
        id = 101;
        atlOffset = 0;
    };
    class Item13
    {
        dataType = "Marker";
        position[]={ 6365.63, 0, 7783.9};
        name = "ExileMarker2";
        text = "";
        markerType = "ELLIPSE";
        type = "ExileTraderZone";
        colorName = "ColorBlue";
        fillName = "SolidBorder";
        a = 10;
        b = 10;
        drawBorder = 1;
        id = 102;
        atlOffset = 0;
    };

 

Try this one!

Share this post


Link to post
Share on other sites
5 minutes ago, Ch33s3 said:

        class Item12
    {
        dataType = "Marker";
        position[]={ 6365.63, 0, 7783.9};
        name = "ExileMarker1";
        text = "";
        markerType = "ELLIPSE";
        type = "ExileTraderZone";
        colorName = "ColorBlack";
        fillName = "SolidBorder";
        a = 175;
        b = 175;
        drawBorder = 1;
        id = 101;
        atlOffset = 0;
    };
    class Item13
    {
        dataType = "Marker";
        position[]={ 6365.63, 0, 7783.9};
        name = "ExileMarker2";
        text = "";
        markerType = "ELLIPSE";
        type = "ExileTraderZone";
        colorName = "ColorBlue";
        fillName = "SolidBorder";
        a = 10;
        b = 10;
        drawBorder = 1;
        id = 102;
        atlOffset = 0;
    };

 

Try this one!

Still not working xD idk what's going on with this damn marker lol

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.