Military AI not shooting

Sandbird

Valued Member!
I've changed SargeAI from dynamic to static and added some bots to camp at an area:

Code:
//Sector FNG Stuff
[SAR_marker_sectorfng_front,1,0,15,"fortify",false, 1200] call SAR_AI;
[SAR_marker_sectorfng_back,1,0,15,"fortify",false, 1200] call SAR_AI;
[SAR_marker_sectorfng_crate1,1,1,4,"fortify",false, 1200] call SAR_AI;
[SAR_marker_sectorfng_crate2,1,1,4,"fortify",false, 1200] call SAR_AI;
[SAR_marker_sectorfng_crate3,1,1,4,"fortify",false, 1200] call SAR_AI;
[SAR_marker_sectorfng_crate4,1,1,4,"fortify",false, 1200] call SAR_AI;
[SAR_marker_sectorfng_crate5,1,1,4,"fortify",false, 1200] call SAR_AI;

Most of them look like this:

Code:
// Sector FNG - Front Base Patrol Area
_this = createMarker ["SAR_marker_sectorfng_front", [6559, 14199]];
_this setMarkerShape "RECTANGLE";
_this setMarkeralpha 0;
_this setMarkerType "Flag";
_this setMarkerBrush "Solid";
_this setMarkerSize [10, 10];
_this setMarkerDir 120.050;
SAR_marker_sectorfng_front = _this;

Now in the config file i got

Code:
SAR_dynamic_spawning = false;
 
SAR_FIX_VEHICLE_ISSUE = true;
SAR_AI_disable_UPSMON_AI = false;
SAR_AI_STEAL_VEHICLE = false;
 
SAR_surv_kill_value = 100;
SAR_band_kill_value = 150;
SAR_HUMANITY_HOSTILE_LIMIT = 5000;
 
SAR_DETECT_HOSTILE = 150;
SAR_DETECT_HOSTILE_FROM_VEHICLE = 500;
SAR_DETECT_INTERVAL = 15;
SAR_DETECT_FROM_VEHICLE_INTERVAL = 5;
 
SAR_leader_sold_list = ["Rocket_DZ"];
SAR_sniper_sold_list = ["Sniper1_DZ","CZ_Soldier_Sniper_EP1_DZ"];
SAR_soldier_sold_list = ["Soldier1_DZ","Camo1_DZ"];
 
 
SAR_sold_leader_weapon_list = [
"M4A3_CCO_EP1",
"M8_carbine",
"m8_compact",
"G36C_camo",
"G36A_camo",
"Mk_48_DZ",
"M4A3_CCO_EP1"
];
 
SAR_sold_leader_pistol_list = []; 
 
SAR_sold_rifleman_weapon_list = ["M16A2","G36C","AK_74","RPK_74"];
SAR_sold_rifleman_pistol_list = [];   
 
 
SAR_sold_sniper_weapon_list = [
"M24",
"SVD_CAMO",
"SVD_des_EP1",
"m8_sharpshooter"
];
SAR_sold_sniper_pistol_list = [];


but the problem is that my humanity is 3585 and they are not shooting at me....i walk around them as if i am one of them....if i shoot at one then they will fire at me...but not by default.

Running on Epoch 1.0.1.5 with the latest SargeAI
 
EDIT: hmmm i did a server restart and they started shooting at me....weird....and i havent changed anything.
 
Back
Top