Need help with 'even better safe zones' by macca

robbiedarza

Well-Known Member
Hi there, thanks for this script btw. http://epochmod.com/forum/index.php?/topic/4691-even-better-safezones/



I am trying to add a safe zone at the NE airfield vendor and when I add the an extra line with the ne trader coords all the markers dissapear and nothing works.



Ill post the lines below

Code:
private ["_safezoneZonePerm", "_safezones"];

_safezones = [
    [[11447.91,11364.536],100, "Klen"], // Klen
    [[4064.2258,11665.938],100, "Bash"], // Bash
    [[6325.6772,7807.7412],100, "Stary"] // Stary
    [[12060.471,12638.533],100, "Airplane"] //Airplane
];


Am I missing something, do I need to do something else apart from just add an extra line?



I also tried keeping the 3 original lines in and just changing the stary sober coords to the Aircraft Trader cords, loaded it up and it swapped stary safe zone for ne airfield safe zone and it works!! but I would like to have more than 3 safe zones.



any help would be great thanks



Robbie
 
Last edited:
You missed a , after Stary :)

Try this :
Code:
private ["_safezoneZonePerm", "_safezones"];

_safezones = [
[[11447.91,11364.536],100, "Klen"], // Klen
[[4064.2258,11665.938],100, "Bash"], // Bash
[[6325.6772,7807.7412],100, "Stary"], // Stary
[[12060.471,12638.533],100, "Airplane"] //Airplane
];
 
Back
Top