SargeAI error in Rpt

Caboose69

Member
YES; i did read the FAQ and the READMEs
on opendayz.net and on github,
and i searched this thread for my issue.


It was working without errors i just don't know why its flagging these up? i c/p just the others and they don't give me a error





Hi this is showing up in my RPT any ideas?


15:48:42 "UPSMON started"
15:48:42 "DEBUG FPS : 12.6783"
15:48:43 Error in expression <[SAR_marker_castle,2,4,10,"fortify",trueÂ] call SAR_AI;


[SAR_marker_base,3,4,>
15:48:43 Error position: <Â] call SAR_AI;


[SAR_marker_base,3,4,>
15:48:43 Error Missing ]
15:48:43 File mpmissions\__cur_mp.chernarus\addons\SARGE\map_config\SAR_cfg_grps_chernarus.sqf, line 288
15:48:43 Error in expression <[SAR_marker_castle,2,4,10,"fortify",trueÂ] call SAR_AI;


[SAR_marker_base,3,4,>
15:48:43 Error position: <Â] call SAR_AI;


[SAR_marker_base,3,4,>
15:48:43 Error Missing ]
15:48:43 File mpmissions\__cur_mp.chernarus\addons\SARGE\map_config\SAR_cfg_grps_chernarus.sqf, line 288
15:48:43 "----------------------------------------"
15:48:43 "Starting SAR_AI version 1.1.0"
 
//helfnburg
[SAR_marker_castle,2,4,10,"fortify",true] call SAR_AI;

//base
[SAR_marker_base,3,4,10,"fortify",true] call SAR_AI;

//westnwaf
[SAR_marker_westnwaf,3,4,10,"ambush",true] call SAR_AI;

//westnwaf
[SAR_marker_chernoam,3,5,8,"ambush",true] call SAR_AI;





// Helflengurg Catle fortification
_this = createMarker ["SAR_area_admin", [8153.08,21278.6,0]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [200, 200];
_this setMarkerDir 120.050;
SAR_marker_castle = _this;

// base
_this = createMarker ["SAR_area_admin", [11819.7,13870.7,0]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [200, 200];
_this setMarkerDir 120.050;
SAR_marker_base = _this;

//vrybbor/zel rd
_this = createMarker ["SAR_area_admin", [2973.5,9294.05,0]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [200, 200];
_this setMarkerDir 120.050;
SAR_marker_westnwaf = _this;

//cherno ambush
_this = createMarker ["SAR_area_admin", [6353.01,3242.5,0]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [200, 200];
_this setMarkerDir 120.050;
SAR_marker_chernoam = _this;
 
// Helflengurg Catle fortification

_this = createMarker ["SAR_marker_castle", [8153.08, 21278.6, 0]];

_this setMarkerShape "RECTANGLE";

_this setMarkeralpha 0;

_this setMarkerType "Flag";

_this setMarkerBrush "Solid";

_this setMarkerSize [200, 200];

_this setMarkerDir 120.050;

SAR_marker_castle = _this;

Try it formatted like above...
Also I have a space after the commas separating the coordinates, not sure if that matters though...
 
Back
Top