Sarge AI Vehicle Patrols

[SAR_marker_austria,1,5,20,"fortify",true] call SAR_AI;
//[SAR_marker_austria,1,5,20,"patrol",true] call SAR_AI;

//[SAR_marker_hoof,1,5,10,"patrol",true] call SAR_AI;
//[SAR_marker_hoof,1,5,10,"ambush",true] call SAR_AI;



// ---- end of configuration area ----

diag_log format["SAR_AI: Static Spawning for infantry and heli patrols finished"];
 
https://github.com/Swiss-Sarge/SAR_...s/SARGE/map_config/SAR_cfg_grps_chernarus.sqf

Code:
// example war scenario in the northwest. Comment OUT after having had a look at it!
[
    SAR_marker_DEBUG_veh, // Name of the area that the vehicle patrol will spawn in
    1, // type of group
    ["LandRover_CZ_EP1","M1030","M1030","LandRover_CZ_EP1"], // used vehicle
    [[1,1,1],[0,1,1],[0,1,1],[0,1,1]], // Vehicle initial crew
    true, // if this group should respawn or not
    10
] call SAR_AI_land;
[
    SAR_marker_DEBUG_veh, // Name of the area that the vehicle patrol will spawn in
    3, // type of group
    ["M1030","M1030","M1030","M1030"], // used vehicle
    [[1,1,0],[0,1,1],[0,1,1],[0,1,1]], // Vehicle initial crew
    true, // if this group should respawn or not
    60 // waittime until this group will respawn
] call SAR_AI_land;
[
    SAR_marker_DEBUG_veh, // Name of the area that the vehicle patrol will spawn in
    2, // type of group
    ["M1030"], // used vehicle
    [[1,1,0]], // Vehicle initial crew
    true, // if this group should respawn or not
    60 // waittime until this group will respawn
] call SAR_AI_land;
 
Back
Top