Sarge AI little Problem

Medico

New Member
Hey everyone,

i got a little Problem. Sarge AI works really fine, including the Heli Patrols but i got a little problem with the map.

At any Point where i spawned Ground Patrols, i got a grey rectangle on the map. This grey rectangle´s are exactly the Area where they Patrol.

Anyone got this Problem too and now how to fix it?

Thanks for your help.
 
Hello,

This is not a problem actually, it is the debug mode for the areas that you set (Or this is how i see it).
To remove this you should set "_this setMarkeralpha 0;" with a 0 instead of a 1 wherever you do have a 1 !

This line of code can be found in map config folder, than in the map config you use
(Exemple : "SAR_cfg_grps_chernarus")

The line is now in this block of code :

// soutcoast, heli patrol area
_this = createMarker ["SAR_marker_helipatrol_southcoast", [7997.2837, 2687.6707]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0; <----------------------- Here is the number to change, set it to 0
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [6500, 1200];
SAR_marker_helipatrol_southcoast = _this;
 
Back
Top