Coordinates SAR_cfg_chernarus

Deejay

New Member
Hi,

I watched the youtube video and understood everything, but which coordinates i have to use for static spawns? I want to protect my base !

so look the original coordinates from the "Sar_cfg":
Code:
// SAR DEBUG AREA - at Skaly
_this = createMarker ["SAR_marker_DEBUG1", [2519.3335, 13140.299]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 1;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [100, 100];
SAR_marker_DEBUG1 = _this;

and my :
Code:
// Base Test
_this = createMarker ["SAR_area_admin", [126,[2747.32,12983.5,0.001]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [200, 200];
_this setMarkerDir 120.050;
SAR_marker_castle = _this;

The construction of the coordinate differs
I have the coordinates of the Survivor database, buti do not see any NPC's at this point !
I do something wrong?

greetings from Germany
Deejay
 
you will see an error about a missing [ if you check your rpt, which you always should do.

adjust your parameters to look like this:

Code:
_this = createMarker ["SAR_area_admin", [2747.32,12983.5]];
 
Back
Top