Posted October 21, 2016 (edited) 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 October 21, 2016 by Dman Share this post Link to post Share on other sites
Posted October 21, 2016 Have you increased the item count of the class? Share this post Link to post Share on other sites
Posted October 21, 2016 (edited) 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 October 21, 2016 by Dman Share this post Link to post Share on other sites
Posted October 21, 2016 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
Posted October 21, 2016 (edited) 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 October 21, 2016 by Ch33s3 additional help Share this post Link to post Share on other sites
Posted October 21, 2016 (edited) Sorry I was asleep here's my SQM @Ch33s3 I don't think I added any extra class http://pastebin.com/02ajCjy6 Edited October 21, 2016 by Dman Share this post Link to post Share on other sites
Posted October 21, 2016 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
Posted October 21, 2016 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
Posted October 21, 2016 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
Posted October 21, 2016 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 idk what's going on with this damn marker lol Share this post Link to post Share on other sites