Jump to content
  • 0

How to add Dzai Custom ai Or Wai? Napf map


harcosgoogle

Question

Hi!

 

How to add custom ai spawn Dzai or Wai? Napf map

    

 

Explanation of DZAI_spawn_units (For spawning infantry AI)
    
    [
        "1489.94,3657.41,0.002",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL)* Respawn setting. True: AI spawned will respawn (Default). False: AI will not respawn. Spawn area will be deleted when all units have been killed.
    ] call DZAI_spawn_units;

 

Not worked.
    

Link to comment
Share on other sites

11 answers to this question

Recommended Posts

  • 0
8 hours ago, harcosgoogle said:

    [
        "1489.94,3657.41,0.002",    //This is the marker name to be used as the patrol and spawning area.

It is marker's name, not a coords.

At first you need to define area in "\DZAI\init\world_spawn_configs\custom_markers\cust_markers_napf.sqf".

At second you can spawn an AI in "\DZAI\init\world_spawn_configs\custom_spawns\cust_spawns_napf.sqf".

I do it this way (for cherno):

cust_markers_chernarus.sqf:

Spoiler

/*
	Custom Marker Requirements:
	
	Spawn markers: The area covered by the marker will be used as the patrol and spawning area.
	
		1. Marker shape must be Ellipse (Could be rectangular but the function will consider the marker as elliptical regardless)
		2. Marker should have identical x and y dimensions. If they are different, the smaller dimension will be used instead.
	
	Blacklist markers: If a player is within this area, they will not be selected as a target for dynamic AI spawns.
	
		1. Marker shape may be Ellipse or Rectangle
		2. Marker dimensions should cover the area to be blacklisted.
	
	Example Marker (Note: the marker name must be unique! In this example, it's named "dzaicustomspawntest"):
	
	_this = createMarker ["dzaicustomspawntest", [6650.9883, 9411.541, -6.1035156e-005]];
	_this setMarkerShape "ELLIPSE";
	_this setMarkerType "Empty";
	_this setMarkerBrush "Solid";
	_this setMarkerSize [200, 200];
	_this setMarkerAlpha 0;
	_dzaicustomspawntest = _this;		//_dzaicustomspawntest must be a unique name
	
	Note: This marker is used in the example found in the custom_spawns config files.
*/

//----------------------------Add your custom markers below this line ----------------------------
private ["_i"];
_i = 0;

// Sector FNG
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [6605.9,14194.5]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [200, 200];

// Zone Alpha
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [8051,13555]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [300, 300];

// Sigma basecamp
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [13703.1,2949.66]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [100, 100];

// Kabanino Base
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [4573.09,8295.79]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [100, 100];

// Mogilevka military base
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [7769.39, 4485.57]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [100, 100];

// Bor military base
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [2881.09,4482.84]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [100, 100];

// Novy military base
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [9325.18, 11505.40]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [100, 100];

// Polana military base
_i = _i + 1;
_this = createMarker [("dzaicustom_marker" + str(_i)), [11138.69, 7897.47]];
_this setMarkerShape "ELLIPSE";
_this setMarkerSize [100, 100];

 

cust_spawns_chernarus.sqf:

Spoiler

/*
	DZAI Custom Spawn Definitions File
	
	Description: Defines all custom AI spawns here. Note that you must first define a custom spawn area
	by creating an area marker in the appropriate file in the custom_markers folder.
	
	Explanation of DZAI_spawn_units (For spawning infantry AI)
	
	[
		"dzaicustomspawntest",	//This is the marker name to be used as the patrol and spawning area.
		2, 						//This trigger will spawn a group of 2 AI units.
		1,						//Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
		true					//(OPTIONAL)* Respawn setting. True: AI spawned will respawn (Default). False: AI will not respawn. Spawn area will be deleted when all units have been killed.
	] call DZAI_spawn_units;
	
	The above DZAI_spawn_units call will create 2 respawning AI units with weapons from DayZ's military loot table.
	
	[
		"dzaicustomspawntest",	//This is the marker name to be used as the patrol and spawning area.
		"ArmoredSUV_PMC_DZ",	//Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
		[3,1],					//Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
		1,						//Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
		true,					//(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
		600						//(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
	] call DZAI_spawn_vehicle;
	
	The above DZAI_spawn_vehicle call will spawn an Armored SUV with 1 driver, 3 passenger units and 1 gunner unit with military-grade weapons, and will respawn after 600 seconds (10 minutes).

	* Optional parameters may be left out of the function call. A default action will be taken instead.
	
	Weapon Grade explanation:
	
	0: Approx 40% of maximum AI skill potential - weapon from Farm/Residential loot table.
	1: Approx 55% of maximum AI skill potential - weapon from Military loot table
	2: Approx 70% of maximum AI skill potential - weapon from MilitarySpecial (Barracks) loot table
	3: Approx 80% of maximum AI skill potential - weapon from HeliCrash loot table 
	
	
	
*/

//----------------------------Add your custom spawn definitions below this line ----------------------------
private ["_i"];
_i = 0;

// Sector FNG
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;

// Zone Alpha
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 5, 3, true] call DZAI_spawn_units;

// Sigma basecamp
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;

// Kabanino Base
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 3, 1, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 3, true] call DZAI_spawn_units;

// Mogilevka military base
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 3, 1, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 3, true] call DZAI_spawn_units;

// Bor military base
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 3, 1, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 3, true] call DZAI_spawn_units;

// Novy military base
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 3, 1, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 3, true] call DZAI_spawn_units;

// Polana military base
_i = _i + 1;
[("dzaicustom_marker" + str(_i)), 3, 1, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 2, true] call DZAI_spawn_units;
[("dzaicustom_marker" + str(_i)), 3, 3, true] call DZAI_spawn_units;

 

 

Link to comment
Share on other sites

  • 0
On 4/23/2017 at 2:55 PM, harcosgoogle said:


    [
        "1489.94,3657.41,0.002",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL)* Respawn setting. True: AI spawned will respawn (Default). False: AI will not respawn. Spawn area will be deleted when all units have been killed.
    ] call DZAI_spawn_units;

Well its pretty simple, first, I get my markers in the editor, so do that. Then go in DZAI/init/world_spawn_configs  you will work with these two files custom_markers and custom_spawns.

In custom_markers is one of mine;

    _this = createMarker ["northairfield1", [15642.271, 15623.963, 1.335144e-005]];  /////REPLACE THE MARKER NAME BY YOUR AND PUT THE COORD YOU TOOK IN THE EDITOR
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield1 = _this;        //_northairfield1 must be a unique name  /////NAME IT THE SAME AS YOUR MARKER

 

In the custom_spawns

            [
        "northairfield1",        //This is the marker name to be used as the patrol and spawning area. ////// NEED TO BE SAME NAME OF YOUR MARKER
        3,                                 //This trigger will spawn a group of 2 AI units.
        3,                                 //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                             //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. 
        ] call DZAI_spawn_units;

 

You repeat that for each markers you have. I'm adding mine here and use it as an example only it set to kick players ass with tanks...... 

custom_markers

Spoiler

/*
    Custom Marker Requirements:
    
    Spawn markers: The area covered by the marker will be used as the patrol and spawning area.
    
        1. Marker shape must be Ellipse (Could be rectangular but the function will consider the marker as elliptical regardless)
        2. Marker should have identical x and y dimensions. If they are different, the smaller dimension will be used instead.
    
    Blacklist markers: If a player is within this area, they will not be selected as a target for dynamic AI spawns.
    
        1. Marker shape may be Ellipse or Rectangle
        2. Marker dimensions should cover the area to be blacklisted.
    
    Example Marker (Note: the marker name must be unique! In this example, it's named "dzaicustomspawntest"):
    
    _this = createMarker ["dzaicustomspawntest", [6650.9883, 9411.541, -6.1035156e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Empty";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _dzaicustomspawntest = _this;        //_dzaicustomspawntest must be a unique name
    
    Note: This marker is used in the example found in the custom_spawns config files.
*/

//----------------------------Add your custom markers below this line ----------------------------

    _this = createMarker ["PrisonHeli", [1249.0972, 3198.5513, 7.6293945e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [800, 800];
    _this setMarkerAlpha 0;
    _PrisonHeli = _this;        //_PrisonHeli must be a unique name

        _this = createMarker ["PrisonPoliceCar", [1561.6631, 3483.9092, 6.1511993e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _PrisonPoliceCar = _this;        //_PrisonPoliceCar must be a unique name
    
    _this = createMarker ["PrisonVehiclePatrol1", [922.24799, 3449.2524, 7.6293945e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [500, 500];
    _this setMarkerAlpha 0;
    _PrisonVehiclePatrol1 = _this;        //_PrisonVehiclePatrol1 must be a unique name
    
    _this = createMarker ["PrisonVehiclePatrol2", [1560.1517, 2718.1328, -2.0980835e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [500, 500];
    _this setMarkerAlpha 0;
    _PrisonVehiclePatrol2 = _this;        //_PrisonVehiclePatrol2 must be a unique name
    
        _this = createMarker ["PfeffikonIslandVehicle1", [18532.668, 17119.523, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [500, 500];
    _this setMarkerAlpha 0;
    _PfeffikonIslandVehicle1 = _this;        //_PfeffikonIslandVehicle1 must be a unique name
    
    _this = createMarker ["PfeffikonIslandVehicle2", [17628.65, 18975.955, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [600, 2600];
    _this setMarkerAlpha 0;
    _PfeffikonIslandVehicle2 = _this;        //_PfeffikonIslandVehicle2 must be a unique name
    
    _this = createMarker ["PfeffikonIslandJet", [17227.723, 18377.174, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [1000, 1000];
    _this setMarkerAlpha 0;
    _PfeffikonIslandJet = _this;        //_PfeffikonIslandJet must be a unique name

        _this = createMarker ["bank", [5523.7217, 12099.779, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [400, 400];
    _this setMarkerAlpha 0;
    _bank = _this;        //_bank must be a unique name


    _this = createMarker ["northairfield1", [15642.271, 15623.963, 1.335144e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield1 = _this;        //_northairfield1 must be a unique name

    _this = createMarker ["northairfield2", [15079.326, 16047.576, -9.5367432e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield2 = _this;        //_northairfield2 must be a unique name

    _this = createMarker ["northairfield3", [15151.502, 16240.169, 9.5367432e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield3 = _this;        //_northairfield3 must be a unique name

    _this = createMarker ["northairfield4", [15060.848, 16488.09, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield4 = _this;        //_northairfield4 must be a unique name

    _this = createMarker ["northairfield5", [14728.923, 16645.992, -1.7166138e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _Pnorthairfield5 = _this;        //_northairfield5 must be a unique name

    _this = createMarker ["northairfield6", [14667.258, 16366.853, 6.3896179e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield6 = _this;        //_northairfield6 must be a unique name

    _this = createMarker ["northairfield7", [14445.954, 16828.33, 2.2888184e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield7 = _this;        //_northairfield7 must be a unique name

    _this = createMarker ["northairfield8", [14297.938, 17126.387, -2.8610229e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield8 = _this;        //_northairfield8 must be a unique name
    
        _this = createMarker ["northairfield9", [14480.097, 17007.912, 9.5367432e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield9 = _this;        //_northairfield9 must be a unique name
    
        _this = createMarker ["northairfield10", [14868.607, 16305.166, 4.7683716e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _northairfield10 = _this;        //_northairfield10 must be a unique name

    _this = createMarker ["northairfieldchopper", [14806.279, 16643.713, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [500, 500];
    _this setMarkerAlpha 0;
    _northairfieldchopper = _this;        //_northairfieldchopper must be a unique name  

        _this = createMarker ["GoldMine1", [13061.906, 3781.8235, -0.00021362305]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _GoldMine1 = _this;        //_GoldMine1 must be a unique name

    _this = createMarker ["GoldMine2", [13189.101, 3894.2209, 3.0517578e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _GoldMine2 = _this;        //_GoldMine2 must be a unique name
       
    _this = createMarker ["GoldMine3", [13065.565, 3858.345, 0.00015258789]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _GoldMine3 = _this;        //_GoldMine3 must be a unique name   

    _this = createMarker ["IslandMission1", [17397.52, 17141.604, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _IslandMission1 = _this;        //_IslandMission1 must be a unique name  
    
    _this = createMarker ["IslandMission2", [16904.879, 17461.25, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _IslandMission2 = _this;        //_IslandMission2 must be a unique name  
    
    _this = createMarker ["IslandMission3", [17240.348, 17851.77, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _IslandMission3 = _this;        //_IslandMission3 must be a unique name  
    
    _this = createMarker ["IslandMission4", [16856.344, 18500.701, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _IslandMission4 = _this;        //_IslandMission4 must be a unique name  
    
    _this = createMarker ["IslandMission5", [17122.541, 18794.658, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _IslandMission5 = _this;        //_IslandMission5 must be a unique name  
    
    _this = createMarker ["IslandMission6", [16582.297, 18593.945, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _IslandMission6 = _this;        //_IslandMission6 must be a unique name  
    
    _this = createMarker ["IslandMission7", [16397.217, 18412.713, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _IslandMission7 = _this;        //_IslandMission7 must be a unique name  
    
    _this = createMarker ["IslandMission8", [16135.623, 18686.703, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _IslandMission8 = _this;        //_IslandMission8 must be a unique name  
    
    _this = createMarker ["IslandMission9", [16236.898, 19206.832, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _IslandMission9 = _this;        //_IslandMission9 must be a unique name  
    
    _this = createMarker ["IslandMission10", [15717.968, 19668.088, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _IslandMission10 = _this;        //_IslandMission10 must be a unique name  
    
    _this = createMarker ["IslandMission11", [15744.924, 19041.947, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _IslandMission11 = _this;        //_IslandMission11 must be a unique name  
    
    _this = createMarker ["IslandMission12", [16372.393, 18263.768, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [300, 300];
    _this setMarkerAlpha 0;
    _IslandMission12 = _this;        //_IslandMission12 must be a unique name  
    

    _this = createMarker ["northairfield", [15687.916, 15466.237, -6.6757202e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield = _this;        //_northairfield must be a unique name      

    _this = createMarker ["northairfield1", [15161.463, 15918.825, 0.00017738342]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [25, 25];
    _this setMarkerAlpha 0;
    _northairfield1 = _this;        //_northairfield1 must be a unique name
     
    _this = createMarker ["northairfield2", [15362.923, 16030.355, 1.7166138e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield2 = _this;        //_northairfield2 must be a unique name
      
    _this = createMarker ["northairfield3", [15055.222, 16096.552, 8.0108643e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _northairfield3 = _this;        //_northairfield3 must be a unique name
       
    _this = createMarker ["northairfield4", [15173.404, 16210.592, 9.5367432e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield4 = _this;        //_northairfield4 must be a unique name
     
    _this = createMarker ["northairfield5", [15185.709, 16453.271, 0.00039672852]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield5 = _this;        //_northairfield5 must be a unique name
        
    _this = createMarker ["northairfield6", [15024.643, 16301.271, 0.00010871887]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _northairfield6 = _this;        //_northairfield6 must be a unique name

    _this = createMarker ["northairfield7", [14685.254, 16070.523, 0.00012397766]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield7 = _this;        //_northairfield7 must be a unique name
      
    _this = createMarker ["northairfield8", [14974.349, 16081.756, 8.7738037e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _northairfield8 = _this;        //_northairfield8 must be a unique name        

    _this = createMarker ["northairfield9", [14912.298, 16255.334, 7.8201294e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield9 = _this;        //_northairfield9 must be a unique name

        _this = createMarker ["northairfield10", [14853.313, 16345.195, 0.00016212463]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield10 = _this;        //_northairfield10 must be a unique name

    _this = createMarker ["northairfield11", [14598.932, 16357.478, 4.6253204e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [25, 25];
    _this setMarkerAlpha 0;
    _northairfield11 = _this;        //_northairfield11 must be a unique name
       
    _this = createMarker ["northairfield12", [14357.893, 16290.33, -0.00045394897]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield12 = _this;        //_northairfield12 must be a unique name        

    _this = createMarker ["northairfield13", [14336.59, 16522.568, 0.00012874603]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield13 = _this;        //_northairfield13 must be a unique name      

        _this = createMarker ["northairfield14", [14669.814, 16577.594, 0.00028800964]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield14 = _this;        //_northairfield14 must be a unique name

        _this = createMarker ["northairfield15", [15016.494, 16657.316, 6.7710876e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield15 = _this;        //_northairfield15 must be a unique name

    _this = createMarker ["northairfield16", [14761.571, 16822.063, 0.00015830994]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield16 = _this;        //_northairfield16 must be a unique name        

    _this = createMarker ["northairfield17", [14621.092, 16747.982, 4.3869019e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield17 = _this;        //_northairfield17 must be a unique name        

    _this = createMarker ["northairfield18", [14592.957, 16788.09, 11.62995]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [75, 75];
    _this setMarkerAlpha 0;
    _northairfield18 = _this;        //_northairfield18 must be a unique name      
        
        _this = createMarker ["northairfield19", [14370.029, 16872.08, 6.4849854e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield19 = _this;        //_northairfield19 must be a unique name
    
            _this = createMarker ["northairfield20", [14569.199, 17103.898, 0.00017166138]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield20 = _this;        //_northairfield20 must be a unique name
    
            _this = createMarker ["northairfield21", [14384.846, 17019.941, -1.9073486e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield21 = _this;        //_northairfield21 must be a unique name
    
            _this = createMarker ["northairfield22", [14305.259, 17300.189, -4.1484833e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield22 = _this;        //_northairfield22 must be a unique name
    
            _this = createMarker ["northairfield23", [14246.796, 17162.193, -1.5258789e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield23 = _this;        //_northairfield23 must be a unique name
    
            _this = createMarker ["northairfield24", [13989.964, 17172.033, -0.00029659271]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield24 = _this;        //_northairfield24 must be a unique name
    
            _this = createMarker ["northairfield25", [13617.499, 17098.846, 0.00055122375]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield25 = _this;        //_northairfield25 must be a unique name
    
            _this = createMarker ["northairfield26", [14018.508, 16868.955, -5.7220459e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield26 = _this;        //_northairfield26 must be a unique name
    
            _this = createMarker ["northairfield27", [14188.327, 16730.24, 0.00022554398]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _northairfield27 = _this;        //_northairfield27 must be a unique name
    

    
    _this = createMarker ["blockedroad1", [14589.753, 13802.364, 5.865097e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad1 = _this;        //_blockedroad1 must be a unique name
    
    
    _this = createMarker ["blockedroad2", [14631.009, 13821.373, -5.2928925e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad2 = _this;        //_blockedroad2 must be a unique name
    
    _this = createMarker ["blockedroad3", [14556.007, 13789.649, -3.6239624e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad3 = _this;        //_blockedroad3 must be a unique name
    
        _this = createMarker ["blockedroad4", [14616.966, 13737.842, -4.1484833e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad4 = _this;        //_blockedroad4 must be a unique name
    
    _this = createMarker ["blockedroad5", [14608.357, 13864.357, 0.2594409]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad5 = _this;        //_blockedroad5 must be a unique name

        _this = createMarker ["blockedroad6", [6430.1953, 9575.3633, 1.9073486e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad6 = _this;        //_blockedroad6 must be a unique name

        _this = createMarker ["blockedroad7", [6402.9409, 9647.0166, -0.0001039505]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad7 = _this;        //_blockedroad7 must be a unique name
    
    _this = createMarker ["blockedroad8", [6438.5356, 9592.21, 4.7683716e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad8 = _this;        //_blockedroad8 must be a unique name
    
    _this = createMarker ["blockedroad9", [6379.5537, 9575.4629, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad9 = _this;        //_blockedroad9 must be a unique name

        _this = createMarker ["blockedroad10", [6413.7051, 9583.2217, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad10 = _this;        //_blockedroad10 must be a unique name

        _this = createMarker ["blockedroad11", [6494.4746, 9642.0059, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad11 = _this;        //_blockedroad11 must be a unique name

        _this = createMarker ["blockedroad12", [7452.0518, 14884.444, -1.335144e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad12 = _this;        //_blockedroad12 must be a unique name

        _this = createMarker ["blockedroad13", [7426.8848, 14895.276, 6.1035156e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad13 = _this;        //_blockedroad13 must be a unique name
    
    _this = createMarker ["blockedroad14", [7409.3208, 14868.424, -7.6293945e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad14 = _this;        //_blockedroad14 must be a unique name
    
    _this = createMarker ["blockedroad15", [7445.2715, 14837.629, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad15 = _this;        //_blockedroad15 must be a unique name

        _this = createMarker ["blockedroad16", [7375.1953, 14993.111, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad16 = _this;        //_blockedroad16 must be a unique name
    
    _this = createMarker ["blockedroad17", [7491.4756, 14728.758, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _blockedroad17 = _this;        //_blockedroad17 must be a unique name


        _this = createMarker ["prison1", [1485.1357, 3573.2776, 10.880555]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison1 = _this;        //_prison1 must be a unique name

    _this = createMarker ["prison2", [1488.4634, 3557.8821, 10.94685]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison2 = _this;        //_prison2 must be a unique name
       
    _this = createMarker ["prison3", [1450.3531, 3590.6411, -2.1457672e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison3 = _this;        //_prison3 must be a unique name   

    _this = createMarker ["prison4", [1446.8862, 3534.9866, 1.1920929e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison4 = _this;        //_prison4 must be a unique name      

    _this = createMarker ["prison5", [1481.077, 3431.2112, 7.6293945e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [25, 25];
    _this setMarkerAlpha 0;
    _prison5 = _this;        //_prison5 must be a unique name
     
    _this = createMarker ["prison6", [1482.7233, 3500.5713, 6.9141388e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison6 = _this;        //_prison6 must be a unique name
      
    _this = createMarker ["prison7", [1514.308, 3507.9116, 1.2636185e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _prison7 = _this;        //_prison7 must be a unique name
       
    _this = createMarker ["prison8", [1495.4636, 3465.083, 1.9073486e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison8 = _this;        //_prison8 must be a unique name
     
    _this = createMarker ["prison9", [1547.2219, 3501.8984, 2.8371811e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison9 = _this;        //_prison9 must be a unique name
        
    _this = createMarker ["prison10", [1502.6592, 3608.7532, 2.7179718e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _prison10 = _this;        //_prison10 must be a unique name

    _this = createMarker ["prison11", [1230.5559, 3850.2012, 3.0517578e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison11 = _this;        //_prison11 must be a unique name
      
    _this = createMarker ["prison12", [1196.5084, 3336.6558, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [50, 50];
    _this setMarkerAlpha 0;
    _prison12 = _this;        //_prison12 must be a unique name        

    _this = createMarker ["prison13", [1300.8127, 2889.7192, -2.2888184e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison13 = _this;        //_prison13 must be a unique name

        _this = createMarker ["prison14", [1510.8828, 2452.958, 2.2888184e-005]];
     _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _prison14 = _this;        //_prison14 must be a unique name

    _this = createMarker ["prison15", [1526.4423, 3047.2361, 3.8146973e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [25, 25];
    _this setMarkerAlpha 0;
    _prison15 = _this;        //_prison15 must be a unique name
     

     

    
        
    
    _this = createMarker ["HasenmattIsland1", [11103.989, 18134.199, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland1 = _this;        //_HasenmattIsland1 must be a unique name        

    _this = createMarker ["HasenmattIsland2", [11251.969, 18312.256, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland2 = _this;        //_HasenmattIsland2 must be a unique name        

    _this = createMarker ["HasenmattIsland3", [11325.357, 18473.469, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [75, 75];
    _this setMarkerAlpha 0;
    _HasenmattIsland3 = _this;        //_HasenmattIsland3 must be a unique name      
        
        _this = createMarker ["HasenmattIsland4", [13049.659, 18417.57, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland4 = _this;        //_HasenmattIsland4 must be a unique name
        
    _this = createMarker ["HasenmattIsland5", [12777.706, 18438.555, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland5 = _this;        //_HasenmattIsland5 must be a unique name
    
    _this = createMarker ["HasenmattIsland6", [12495.68, 18520.813, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland6 = _this;        //_HasenmattIsland6 must be a unique name
    
    _this = createMarker ["HasenmattIsland7", [13790.06, 19272.748, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland7 = _this;        //_HasenmattIsland7 must be a unique name
    
        _this = createMarker ["HasenmattIsland8", [13246.268, 19456.818, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland8 = _this;        //_HasenmattIsland8 must be a unique name
    
    _this = createMarker ["HasenmattIsland9", [12834.813, 19483.287, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland9 = _this;        //_HasenmattIsland9 must be a unique name

        _this = createMarker ["HasenmattIsland10", [13269.125, 19745.559, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _HasenmattIsland10 = _this;        //_HasenmattIsland10 must be a unique name

    
    
        
        _this = createMarker ["pfeffikonIsland1", [18669.098, 16853.973, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland1 = _this;        //_pfeffikonIsland1 must be a unique name
    
    _this = createMarker ["pfeffikonIsland2", [18306.623, 17337.268, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland2 = _this;        //_pfeffikonIsland2 must be a unique name
    
    _this = createMarker ["pfeffikonIsland3", [18650.744, 17581.975, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland3 = _this;        //_pfeffikonIsland3 must be a unique name

        _this = createMarker ["pfeffikonIsland4", [18367.801, 17973.506, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland4 = _this;        //_pfeffikonIsland4 must be a unique name

        _this = createMarker ["pfeffikonIsland5", [17996.15, 18436.92, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland5 = _this;        //_pfeffikonIsland5 must be a unique name

        _this = createMarker ["pfeffikonIsland6", [18182.738, 18712.215, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland6 = _this;        //_pfeffikonIsland6 must be a unique name

        _this = createMarker ["pfeffikonIsland7", [17820.268, 19050.217, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland7 = _this;        //_pfeffikonIsland7 must be a unique name
    
    _this = createMarker ["pfeffikonIsland8", [17881.443, 19412.689, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _pfeffikonIsland8 = _this;        //_pfeffikonIsland8 must be a unique name
    

    
    _this = createMarker ["mission1", [17298.18, 17010.982, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission1 = _this;        //_mission1 must be a unique name
    
    _this = createMarker ["mission2", [16773.797, 19196.539, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission2 = _this;        //_mission2 must be a unique name
    
    _this = createMarker ["mission3", [17446.697, 16914.965, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission3 = _this;        //_mission3 must be a unique name
    
    _this = createMarker ["mission4", [17408.014, 17055.193, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission4 = _this;        //_mission4 must be a unique name
    
    _this = createMarker ["mission5", [17279.973, 17396.027, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission5 = _this;        //_mission5 must be a unique name
    
    _this = createMarker ["mission6", [17001.926, 17340.729, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission6 = _this;        //_mission6 must be a unique name
    
    _this = createMarker ["mission7", [17340.725, 17747.287, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission7 = _this;        //_mission7 must be a unique name

        _this = createMarker ["mission8", [17070.463, 17899.941, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission8 = _this;        //_mission8 must be a unique name
    
    _this = createMarker ["mission9", [16930.596, 17608.668, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission9 = _this;        //_mission9 must be a unique name
    
    _this = createMarker ["mission10", [16872.182, 17949.801, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission10 = _this;        //_mission10 must be a unique name
    
    _this = createMarker ["mission11", [16831.682, 18468.514, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission11 = _this;        //_mission11 must be a unique name
    
    _this = createMarker ["mission12", [16586.182, 18154.637, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission12 = _this;        //_mission12 must be a unique name
    
    _this = createMarker ["mission13", [16591.352, 18243.699, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission13 = _this;        //_mission13 must be a unique name
    
    _this = createMarker ["mission14", [16415.443, 18320.811, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission14 = _this;        //_mission14 must be a unique name
    
    _this = createMarker ["mission15", [16316.838, 18400.715, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission15 = _this;        //_mission15 must be a unique name

        _this = createMarker ["mission16", [16398.545, 18452.834, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission16 = _this;        //mission16 must be a unique name
    
        _this = createMarker ["mission17", [16327.936, 18524.787, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission17 = _this;        //_mission17 must be a unique name
    
    _this = createMarker ["mission18", [16589.406, 18550.57, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission18 = _this;        //_mission18 must be a unique name
    
    _this = createMarker ["mission19", [16394.953, 17917.215, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission19 = _this;        //_mission19 must be a unique name
    
    _this = createMarker ["mission20", [17128.74, 18784.148, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission20 = _this;        //_mission20 must be a unique name
        
        _this = createMarker ["mission21", [16289.355, 18912.258, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission21 = _this;        //_mission21 must be a unique name

        _this = createMarker ["mission22", [16289.355, 18912.258, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission22 = _this;        //_mission22 must be a unique name

        _this = createMarker ["mission23", [16061.327, 18772.445, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission23 = _this;        //_mission23 must be a unique name

        _this = createMarker ["mission24", [15682.186, 19534.631]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission24 = _this;        //_mission24 must be a unique name

        _this = createMarker ["mission25", [15749.514, 19715.818, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission25 = _this;        //_mission25 must be a unique name

        _this = createMarker ["mission26", [15763.813, 19301.65, 7.2479248e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission26 = _this;        //_mission26 must be a unique name

        _this = createMarker ["mission27", [15907.451, 19219.641, -0.00016021729]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission27 = _this;        //_mission27 must be a unique name

        _this = createMarker ["mission28", [15876.288, 19015.643, 0.00020217896]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission28 = _this;        //_mission28 must be a unique name

        _this = createMarker ["mission29", [16056.501, 18985.551, 9.9182129e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission29 = _this;        //_mission29 must be a unique name

        _this = createMarker ["mission30", [16683.672, 17468.043, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission30 = _this;        //_mission30 must be a unique name

        _this = createMarker ["mission31", [16689.99, 17662.902, 0]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission31 = _this;        //_mission31 must be a unique name

        _this = createMarker ["mission32", [16263.775, 18771.84, -0.00024032593]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission32 = _this;        //_mission32 must be a unique name

        _this = createMarker ["mission33", [16906.305, 18274.1, 3.8146973e-006]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission33 = _this;        //_mission33 must be a unique name

        _this = createMarker ["mission34", [16964.242, 18057.666, -4.196167e-005]];
    _this setMarkerShape "ELLIPSE";
    _this setMarkerType "Flag";
    _this setMarkerBrush "Solid";
    _this setMarkerSize [200, 200];
    _this setMarkerAlpha 0;
    _mission34 = _this;        //_mission34 must be a unique name

custom_spawn;

Spoiler

/*
    DZAI Custom Spawn Definitions File
    
    Description: Defines all custom AI spawns here. Note that you must first define a custom spawn area
    by creating an area marker in the appropriate file in the custom_markers folder.
    
    Explanation of DZAI_spawn_units (For spawning infantry AI)
    
    [
        "dzaicustomspawntest",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL)* Respawn setting. True: AI spawned will respawn (Default). False: AI will not respawn. Spawn area will be deleted when all units have been killed.
    ] call DZAI_spawn_units;
    
    The above DZAI_spawn_units call will create 2 respawning AI units with weapons from DayZ's military loot table.
    
    [
        "dzaicustomspawntest",    //This is the marker name to be used as the patrol and spawning area.
        "ArmoredSUV_PMC_DZ",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [3,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        600                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
    ] call DZAI_spawn_vehicle;
    
    The above DZAI_spawn_vehicle call will spawn an Armored SUV with 1 driver, 3 passenger units and 1 gunner unit with military-grade weapons, and will respawn after 600 seconds (10 minutes).

    * Optional parameters may be left out of the function call. A default action will be taken instead.
    
    Weapon Grade explanation:
    
    0: Approx 40% of maximum AI skill potential - weapon from Farm/Residential loot table.
    1: Approx 55% of maximum AI skill potential - weapon from Military loot table
    2: Approx 70% of maximum AI skill potential - weapon from MilitarySpecial (Barracks) loot table
    3: Approx 80% of maximum AI skill potential - weapon from HeliCrash loot table 
    
    
    
*/

//----------------------------Add your custom spawn definitions below this line ----------------------------

                [
        "PrisonHeli",    //This is the marker name to be used as the patrol and spawning area.
        "UH1H_TK_GUE_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

        [
        "PrisonPoliceCar",    //This is the marker name to be used as the patrol and spawning area.
        "policecar",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;    

        [
        "PrisonVehiclePatrol1",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_M998_crows_M2_DES_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;    

        [
        "PrisonVehiclePatrol2",    //This is the marker name to be used as the patrol and spawning area.
        "LandRover_MG_TK_EP1_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;    

        [
        "PfeffikonIslandVehicle1",    //This is the marker name to be used as the patrol and spawning area.
        "BAF_Jackal2_L2A1_w",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;    

        [
        "PfeffikonIslandVehicle2",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_M998_crows_M2_DES_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [3,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;    

        [
        "PfeffikonIslandJet",    //This is the marker name to be used as the patrol and spawning area.
        "Mi17_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [1,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "bank",    //This is the marker name to be used as the patrol and spawning area.
        "policecar",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        600                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield1",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_M998_crows_M2_DES_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield2",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_M998A2_SOV_DES_EP1_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield3",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_Avenger_DES_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        2400                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield4",    //This is the marker name to be used as the patrol and spawning area.
        "UAZ_SPG9_INS",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        2800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield5",    //This is the marker name to be used as the patrol and spawning area.
        "BTR40_MG_TK_INS_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield6",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_M1151_M2_CZ_DES_EP1_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield7",    //This is the marker name to be used as the patrol and spawning area.
        "ArmoredSUV_PMC_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "northairfield8",    //This is the marker name to be used as the patrol and spawning area.
        "ZSU_TK_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        3000                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;
            
                            [
        "northairfield9",    //This is the marker name to be used as the patrol and spawning area.
        "BMP3",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        2800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;
            
                            [
        "northairfield10",    //This is the marker name to be used as the patrol and spawning area.
        "T55_TK_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        3000                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

         
                [
        "IslandMission1",    //This is the marker name to be used as the patrol and spawning area.
        "LandRover_MG_TK_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;
            
                [
        "IslandMission2",    //This is the marker name to be used as the patrol and spawning area.
        "GAZ_Vodnik_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission3",    //This is the marker name to be used as the patrol and spawning area.
        "BTR90",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission4",    //This is the marker name to be used as the patrol and spawning area.
        "GAZ_Vodnik_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission5",    //This is the marker name to be used as the patrol and spawning area.
        "BAF_Jackal2_GMG_D",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission6",    //This is the marker name to be used as the patrol and spawning area.
        "BTR40_MG_TK_INS_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission7",    //This is the marker name to be used as the patrol and spawning area.
        "Offroad_DSHKM_Gue_DZE4",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission8",    //This is the marker name to be used as the patrol and spawning area.
        "ArmoredSUV_PMC_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission9",    //This is the marker name to be used as the patrol and spawning area.
        "HMMWV_M998_crows_M2_DES_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission10",    //This is the marker name to be used as the patrol and spawning area.
        "BAF_Jackal2_GMG_D",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission11",    //This is the marker name to be used as the patrol and spawning area.
        "LAV25",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;

                [
        "IslandMission12",    //This is the marker name to be used as the patrol and spawning area.
        "ArmoredSUV_PMC_DZE",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;


        
        [
        "northairfieldchopper",    //This is the marker name to be used as the patrol and spawning area.
        "UH1H_TK_GUE_EP1",    //Insert a vehicle classname here. Acceptable vehicle types: Air or Land vehicles. Spawn will be cancelled if classname is invalid or banned.
        [4,1],                    //Set number of passenger and gunner units here. A driver unit will always be created. DZAI will not add more units to a vehicle than the vehicle type allows. Only land vehicles may have passenger units.
        1,                        //Weapon grade setting. 1 = weapon chosen from Military loot table (see below for explanation of Weapon Grade)
        true,                    //(OPTIONAL)* Respawn setting. True: AI will respawn with vehicle after a specified time. False: AI and vehicle will not respawn after being destroyed. (Default)
        1800                        //(OPTIONAL)* Respawn time. Number of seconds to wait until AI and vehicle are respawned. (Default: 600). Timer begins after AI group is wiped out or vehicle is destroyed, whichever comes first.
            ] call DZAI_spawn_vehicle;    
            
        
            
        

                [
        "GoldMine1",                            //This is the marker name to be used as the patrol and spawning area.
        2,                     //This trigger will spawn a group of 2 AI units.
        3,                    //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "GoldMine2",                            //This is the marker name to be used as the patrol and spawning area.
        3,                     //This trigger will spawn a group of 2 AI units.
        3,                    //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "GoldMine3",                            //This is the marker name to be used as the patrol and spawning area.
        3,                     //This trigger will spawn a group of 2 AI units.
        3,                    //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units; 


    

            [
        "northairfield",                    //This is the marker name to be used as the patrol and spawning area.
        3,                     //This trigger will spawn a group of 2 AI units.
        3,                    //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "northairfield1",                    //This is the marker name to be used as the patrol and spawning area.
        3,                     //This trigger will spawn a group of 2 AI units.
        3,                    //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
           
            [
        "northairfield2",                    //This is the marker name to be used as the patrol and spawning area.
        3,                     //This trigger will spawn a group of 2 AI units.
        3,                    //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
      
            [
        "northairfield3",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
        "northairfield4",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
                 ] call DZAI_spawn_units;

               [
        "northairfield5",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "northairfield6",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units; 

            [
        "northairfield7",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "northairfield8",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
      
                [
        "northairfield9",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "northairfield10",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
        
            [
        "northairfield11",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
       
            [
        "northairfield12",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
        "northairfield13",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
        "northairfield14",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "northairfield15",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        1,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
        
            [
        "northairfield16",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;       

            [
        "northairfield17",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
        "northairfield18",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
                "northairfield19",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
                "northairfield20",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
            [
                "northairfield21",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
            [
                "northairfield22",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
                [
                "northairfield23",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
        [
                "northairfield24",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
            [
                "northairfield25",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
            [
                "northairfield26",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
            
            [
                "northairfield27",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
    
    
            [
                "blockedroad1",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad2",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad3",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad4",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad5",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad6",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad7",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad8",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad9",    //This is the marker name to be used as the patrol and spawning area.
        5,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad10",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad11",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad12",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad13",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad14",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
             [
                "blockedroad15",    //This is the marker name to be used as the patrol and spawning area.
        5,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad16",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "blockedroad17",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
                "prison1",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison2",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison3",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
             [
                "prison4",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison5",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison6",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison7",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison8",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison9",    //This is the marker name to be used as the patrol and spawning area.
        2,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison10",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                 "prison11",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison12",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison13",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison14",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "prison15",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
    
            [
                "HasenmattIsland1",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland2",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland3",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland4",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland5",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland6",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland7",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland8",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland9",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "HasenmattIsland10",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
    
        
    
            [
                "pfeffikonIsland1",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "pfeffikonIsland2",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "pfeffikonIsland3",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
               "pfeffikonIsland4",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
                [
               "pfeffikonIsland5",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "pfeffikonIsland6",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
             [
                "pfeffikonIsland7",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
                "pfeffikonIsland8",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;


    
            [
        "mission1",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission2",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission3",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission4",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
             [
        "mission5",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission6",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission7",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
        "mission8",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission9",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission10",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission11",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission12",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission13",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission14",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission15",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

                [
        "mission16",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission17",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission18",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission19",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission20",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;
    
            [
        "mission21",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission22",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission23",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission24",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission25",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission26",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission27",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission28",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission29",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission30",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission31",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission32",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission33",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        2,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

            [
        "mission34",    //This is the marker name to be used as the patrol and spawning area.
        3,                         //This trigger will spawn a group of 2 AI units.
        3,                        //AI spawned by this trigger will have Weapon Grade level 1 (see below for explanation of Weapon Grade)
        true                    //(OPTIONAL) Respawn setting. True: AI spawned will respawn. False: AI will not respawn. See more here: http://opendayz.net/threads/release-dzai-lite-dynamic-ai-package.11116/page-28#post-79148
            ] call DZAI_spawn_units;

 

Link to comment
Share on other sites

  • 0
33 minutes ago, harcosgoogle said:

Thanks ,worked

@WLF or @Petite

 

How to add AI/MI Permmission or command ?

 

Example:

How to use it ai - Gun,Vehicle,Gunners

 

Example: KORD,DSKM,Gunners vodnik,Stinger launcher,m119

 

Thanks

 

well that be with WAI static. For vehicles spawning look my files you have the example of it.

Link to comment
Share on other sites

  • 0
9 minutes ago, harcosgoogle said:

@Petite
So do I have to add it individually?

Look in the WAI folder, static default it tells you how to do it, you need the coord where you want them and If I remember well you will need to set it true in the config file at the bottom of it. Long time I didn't use it. 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Discord

×
×
  • Create New...