Hey guys,
I have a marker that gets created on a map. It's activated about 30 minutes into the server being up. How can I check to see if a player is inside our outside the Marker area?
The zone shrinks every 15 minutes. What's the best way going about seeing if a player is inside or outside the zone?
while {true} do {
_mar_name = createMarker ["ZoneMarker", _FinalZoneCenter];
"ZoneMarker" setMarkerShape "ELLIPSE";
"ZoneMarker" setMarkerBrush "GRID";
"ZoneMarker" setMarkerColor "ColorBlue";
"ZoneMarker" setMarkerSize [_startingzone,_startingzone];
sleep 900;
_startingzone = (_startingzone) - (500);
[nil,nil,rTitleText,"Test - Shrinking Zone by 500km","PLAIN",10] call RE;
};

