From 2160437e796d0c2ba20eea4d6178ce9407dd1df0 Mon Sep 17 00:00:00 2001 From: ebaydayz Date: Tue, 6 Dec 2016 19:25:49 -0500 Subject: [PATCH] Convert POI to compact array format Vanilla commit: https://github.com/DayZMod/DayZ/commit/c71d8cb23c42407978328418959cb258bd59228f --- CHANGE LOG 1.0.6.1.txt | 2 + SQF/dayz_code/compile/fn_spawnObjects.sqf | 70 + SQF/dayz_code/compile/local_spawnObjects.sqf | 45 - SQF/dayz_code/init/compiles.sqf | 2 +- SQF/dayz_code/system/mission/caribou.sqf | 2 +- .../infectiousWaterholes/BlackLake.sqf | 2 +- .../chernarus/infectiousWaterholes/Dobryy.sqf | 2 +- .../infectiousWaterholes/Gvozdno.sqf | 2 +- .../infectiousWaterholes/Kabanino.sqf | 2 +- .../chernarus/infectiousWaterholes/Kopyto.sqf | 2 +- .../infectiousWaterholes/Mogilevka.sqf | 2 +- .../infectiousWaterholes/Nadezdinho.sqf | 2 +- .../infectiousWaterholes/NorthNadezdinho.sqf | 2 +- .../infectiousWaterholes/NorthPusta.sqf | 2 +- .../infectiousWaterholes/NorthTopolka.sqf | 2 +- .../chernarus/infectiousWaterholes/Novy.sqf | 2 +- .../infectiousWaterholes/PobedaDam.sqf | 2 +- .../infectiousWaterholes/Pogorevka.sqf | 2 +- .../chernarus/infectiousWaterholes/Polana.sqf | 2 +- .../chernarus/infectiousWaterholes/Prud.sqf | 2 +- .../infectiousWaterholes/Sosnovy.sqf | 2 +- .../chernarus/infectiousWaterholes/Stary.sqf | 2 +- .../infectiousWaterholes/Topolka.sqf | 2 +- .../chernarus/infectiousWaterholes/Vysota.sqf | 2 +- .../infectiousWaterholes/WillowLake.sqf | 2 +- .../mission/chernarus/poi/C130Crash.sqf | 325 +- .../mission/chernarus/poi/ChernoBuildings.sqf | 439 +- .../mission/chernarus/poi/DeadForest.sqf | 4302 ++------------- .../mission/chernarus/poi/DevilsFarm.sqf | 4591 ++--------------- .../chernarus/poi/KomyshovoRoadblock.sqf | 488 +- .../chernarus/poi/MilitaryAirpoort.sqf | 2445 +-------- .../system/mission/chernarus/poi/NEA.sqf | 4349 ++-------------- .../mission/chernarus/poi/NWATentCamp.sqf | 195 + .../chernarus/poi/ZelenogorskBuildings.sqf | 155 +- .../system/mission/chernarus/poi/init.sqf | 6 +- SQF/dayz_code/system/mission/chernarus11.sqf | 2 +- SQF/dayz_code/system/mission/chernarus17.sqf | 2 +- SQF/dayz_code/system/mission/fapovo.sqf | 2 +- SQF/dayz_code/system/mission/fdf_isle1_a.sqf | 2 +- SQF/dayz_code/system/mission/isladuala.sqf | 2 +- SQF/dayz_code/system/mission/lingor.sqf | 2 +- SQF/dayz_code/system/mission/namalsk.sqf | 2 +- SQF/dayz_code/system/mission/napf.sqf | 2 +- SQF/dayz_code/system/mission/panthera2.sqf | 2 +- .../system/mission/provinggrounds_pmc.sqf | 2 +- SQF/dayz_code/system/mission/sauerland.sqf | 2 +- SQF/dayz_code/system/mission/shapur_baf.sqf | 2 +- .../system/mission/smd_sahrani_a2.sqf | 2 +- SQF/dayz_code/system/mission/takistan.sqf | 2 +- SQF/dayz_code/system/mission/tavi.sqf | 2 +- SQF/dayz_code/system/mission/utes.sqf | 2 +- SQF/dayz_code/system/mission/zargabad.sqf | 2 +- Server Files/Battleye/scripts.txt | 2 +- 53 files changed, 1810 insertions(+), 15682 deletions(-) create mode 100644 SQF/dayz_code/compile/fn_spawnObjects.sqf delete mode 100644 SQF/dayz_code/compile/local_spawnObjects.sqf create mode 100644 SQF/dayz_code/system/mission/chernarus/poi/NWATentCamp.sqf diff --git a/CHANGE LOG 1.0.6.1.txt b/CHANGE LOG 1.0.6.1.txt index 0a8d373fa..cdd7cc8cf 100644 --- a/CHANGE LOG 1.0.6.1.txt +++ b/CHANGE LOG 1.0.6.1.txt @@ -1,3 +1,5 @@ +[CHANGED] Added NWAF tent camp to Chernarus points of interests and removed trains POI for now. + [FIXED] Hive child 309 errors that resulted in broken saving of newly built storage object inventory. (updated ServerFiles with hotfix already released) @icomrade [FIXED] Error with object publishing when snap building is disabled. (updated ServerFiles with hotfix already released) @ebayShopper [FIXED] Error handling upgraded 1051 databases that resulted in a value for "rh_factor" and array for "bloodtype" in character_data medical field. @ebayShopper diff --git a/SQF/dayz_code/compile/fn_spawnObjects.sqf b/SQF/dayz_code/compile/fn_spawnObjects.sqf new file mode 100644 index 000000000..c6727d37c --- /dev/null +++ b/SQF/dayz_code/compile/fn_spawnObjects.sqf @@ -0,0 +1,70 @@ +/* + Spawns objects from compact array format. + + Notes for global spawned objects: + - Recommend running on server machine only. + - Always present global objects use the most resources. Damage and other updates about them are regularly sent over the network. + + Notes for local spawned objects: + - Always present local objects are more performant than global, but less performant than town generator (spawning locally only when player is nearby) + - Recommend running on every machine including the server, so all units know about the object. + - Recommend running early during initialization, so units spawned on top do not fall through. + - Not recommended for destructible or removable objects. Damage and deleted status are not synced across machines. + - Not recommended for objects with animations (like gates). Anim status is not synced across machines. + + Params: + [ + [ + ["ObjectType1", [position], dir], + ["ObjectType2", [position], dir], + ["ObjectType3", [position], dir] + ], + false, // Block damage + false, // Use setPosATL instead of setPos + true // Spawn objects locally + ] call fnc_spawnObjects; +*/ + +private ["_atl","_blockDamage","_fires","_local","_object","_objects","_type"]; + +_objects = _this select 0; +_blockDamage = _this select 1; +_atl = _this select 2; +_local = _this select 3; + +_fires = [ + "Base_Fire_DZ", + "flamable_DZ", + "Land_Camp_Fire_DZ", + "Land_Campfire", + "Land_Campfire_burning", + "Land_Fire", + "Land_Fire_burning", + "Land_Fire_DZ", + "Land_Fire_barrel", + "Land_Fire_barrel_burning", + "Misc_TyreHeap" +]; + +{ + _type = _x select 0; + + if (_local) then { + _object = _type createVehicleLocal [0,0,0]; + _object setVariable ["",true,false]; // stops global setVariable by sched_townGenerator, checked in player_spawnCheck for loot spawn + } else { + _object = _type createVehicle [0,0,0]; + }; + + _object setDir (_x select 2); + if (_atl) then { + _object setPosATL (_x select 1); + } else { + _object setPos (_x select 1); + }; + + if (_blockDamage) then { + _object addEventHandler ["HandleDamage",{0}]; + if !(_type in _fires) then {_object enableSimulation false;}; + }; +} forEach _objects; \ No newline at end of file diff --git a/SQF/dayz_code/compile/local_spawnObjects.sqf b/SQF/dayz_code/compile/local_spawnObjects.sqf deleted file mode 100644 index 0ef6e013c..000000000 --- a/SQF/dayz_code/compile/local_spawnObjects.sqf +++ /dev/null @@ -1,45 +0,0 @@ -/* - Spawns objects locally for improved performance. - - Recommend running on every machine including the server, so all units know about the object. - - Recommend running early during initialization, so units spawned on top do not fall through. - - Not recommended for destructible or removable objects. Damage and deleted status are not synced across machines. - - Not recommended for objects with animations (like gates). Anim status is not synced across machines. - - Params: - [[ - ["ObjectType1", [position], dir], - ["ObjectType2", [position], dir], - ["ObjectType3", [position], dir] - ],true] call local_spawnObjects; -*/ - -private ["_blockDamage","_fires","_object","_objects","_type"]; - -_objects = _this select 0; -_blockDamage = _this select 1; - -_fires = [ - "Base_Fire_DZ", - "flamable_DZ", - "Land_Camp_Fire_DZ", - "Land_Campfire", - "Land_Campfire_burning", - "Land_Fire", - "Land_Fire_burning", - "Land_Fire_DZ", - "Land_Fire_barrel", - "Land_Fire_barrel_burning", - "Misc_TyreHeap" -]; - -{ - _type = _x select 0; - _object = _type createVehicleLocal [0,0,0]; - _object setDir (_x select 2); - _object setPos (_x select 1); - _object setVariable ["",true,false]; // stops global setVariable by sched_townGenerator, checked in player_spawnCheck for loot spawn - if (_blockDamage) then { - _object addEventHandler ["HandleDamage",{0}]; - if !(_type in _fires) then {_object enableSimulation false;}; - }; -} forEach _objects; \ No newline at end of file diff --git a/SQF/dayz_code/init/compiles.sqf b/SQF/dayz_code/init/compiles.sqf index 26b08a42f..3d8009205 100644 --- a/SQF/dayz_code/init/compiles.sqf +++ b/SQF/dayz_code/init/compiles.sqf @@ -638,6 +638,7 @@ BIS_fnc_findNestedElement = compile preprocessFileLineNumbers "\z\addons\dayz_co BIS_fnc_param = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\BIS_fnc\fn_param.sqf"; BIS_fnc_relativeDirTo = compile("private '_dir';_dir=_this call{" + (preprocessFileLineNumbers "ca\modules\Functions\geometry\fn_relativeDirTo.sqf")+"};if(_dir>180)then{_dir=_dir-360;};if(_dir<-180)then{_dir=_dir+360;};_dir"); fnc_buildWeightedArray = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_buildWeightedArray.sqf"; //Checks which actions for nearby casualty +fnc_spawnObjects = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_spawnObjects.sqf"; object_getHit = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\object_getHit.sqf"; //gets the hit value for a HitPoint (i.e. HitLegs) against the selection (i.e. "legs"), returns the value object_setHit = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\object_setHit.sqf"; //process the hit as a NORMAL damage (useful for persistent vehicles) object_processHit = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\object_processHit.sqf"; //process the hit in the REVO damage system (records and sets hit) @@ -653,7 +654,6 @@ fnc_isInsideBuilding = compile preprocessFileLineNumbers "\z\addons\dayz_code\co dayz_zombieSpeak = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\object_speak.sqf"; //Used to generate random speech for a unit vehicle_getHitpoints = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\vehicle_getHitpoints.sqf"; local_gutObject = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_gutObject.sqf"; //Generated on the server (or local to unit) when gutting an object -local_spawnObjects = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_spawnObjects.sqf"; local_zombieDamage = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\fn_damageHandlerZ.sqf"; //Generated by the client who created a zombie to track damage local_setFuel = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_setFuel.sqf"; //Generated when someone refuels a vehicle local_eventKill = compile preprocessFileLineNumbers "\z\addons\dayz_code\compile\local_eventKill.sqf"; //Generated when something is killed diff --git a/SQF/dayz_code/system/mission/caribou.sqf b/SQF/dayz_code/system/mission/caribou.sqf index 31547f20b..3331a06b5 100644 --- a/SQF/dayz_code/system/mission/caribou.sqf +++ b/SQF/dayz_code/system/mission/caribou.sqf @@ -263,4 +263,4 @@ ["Land_Panelak",[3205.56,3115.54,4.57764e-005],22.4148], ["Land_Panelak",[2701.28,2857.08,-0.00298309],2.37132], ["Land_Panelak2",[2833.77,2849.69,-0.0144768],3.58606] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf index 7e44b0804..bf56d214f 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/BlackLake.sqf @@ -14,4 +14,4 @@ ["Body1",[13277.561,11929.183,-2.2888184e-005],0], ["Body2",[13278.021,11938.413],-145.52971], ["Body2",[13281.352,11935.071,1.5258789e-005],-63.390606] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf index 5be80abc7..323a6ed04 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Dobryy.sqf @@ -6,4 +6,4 @@ ["Body2",[10214.048,3185.6113,-0.00019645691],-208.83], ["Body2",[10217.711,3180.9695,-0.00023651123],-321.35828], ["Body1",[10216.19,3186.8555,-0.00011634827],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf index 777f8a190..ac0a3326f 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Gvozdno.sqf @@ -4,4 +4,4 @@ ["Body1",[8264.8877,12148.402,0.00038146973],0], ["Body2",[8268.8555,12156.784,-0.00012207031],-128.94524], ["Body2",[8278.6172,12133.853,0.00077819824],34.286942] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf index 48335ed2c..4f5ef800a 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kabanino.sqf @@ -4,4 +4,4 @@ ["Body2",[5631.9009,8564.624,9.1552734e-005],120.97764], ["Body2",[5626.8066,8571.2871],-6.9082727], ["Body2",[5624.5215,8586.6445,-3.0517578e-005],-10.941958] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf index 114e41bfa..74f07c600 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Kopyto.sqf @@ -9,4 +9,4 @@ ["Body2",[7705.8154,3981.1963,7.2479248e-005],-98.922691], ["Body2",[7705.1436,3975.3965,-8.392334e-005],-205.44472], ["Body1",[7703.9932,3978.3486,-2.2888184e-005],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf index c96ff9620..51c39d24f 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Mogilevka.sqf @@ -6,4 +6,4 @@ ["Body2",[7858.001,5657.7495,1.5258789e-005],-128.94524], ["Body2",[7852.356,5674.4395,-4.5776367e-005],-8.1682386], ["Body1",[7857.3604,5665.8076,1.5258789e-005],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf index b25c153a7..ab3d5007e 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Nadezdinho.sqf @@ -6,4 +6,4 @@ ["Body2",[5737.1704,4123.252,-0.00011444092],-170.19336], ["Body2",[5739.8633,4117.3682,7.6293945e-005],-50.762642], ["Body2",[5749.9834,4102.6377,4.5776367e-005],-221.62927] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf index ac751d51a..3dd525e20 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthNadezdinho.sqf @@ -9,4 +9,4 @@ ["Body1",[5804.439,5215.0063,-0.0001373291],0], ["Body1",[5799.7075,5164.0625,0],0], ["Body1",[5795.9951,5165.9434,1.5258789e-005],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf index 188f9e318..1858ced6a 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthPusta.sqf @@ -4,4 +4,4 @@ ["Body2",[9217.5645,4961.3643,-7.6293945e-005],-146.58554], ["Body2",[9220.0195,4953.0513,-2.2888184e-005],-108.14923], ["Body1",[9217.207,4953.2314,7.6293945e-006],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf index 0a3d4046a..55a831db2 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/NorthTopolka.sqf @@ -10,4 +10,4 @@ ["Body2",[10005.476,4147.1729,-3.0517578e-005],-154.11565], ["Body1",[9975.0391,4217.8608,-3.4332275e-005],0], ["Body1",[10005.835,4200.8569,4.9591064e-005],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf index fb163450c..82f2b3ec6 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Novy.sqf @@ -4,4 +4,4 @@ ["Body2",[7077.8691,7338.8906,-3.0517578e-005],-99.565521], ["Body2",[7085.6162,7311.5015],-191.12827], ["Body2",[7088.4497,7314.1401,-3.0517578e-005],-95.034286] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf index bfb02ebce..127ad4cd2 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/PobedaDam.sqf @@ -34,4 +34,4 @@ ["Body2",[9247.6396,13508.521,9.9182129e-005],-272.11749], ["Body2",[9253.5586,13506.814,-2.2888184e-005],-189.57385], ["UAZWreck",[9249.2705,13505.702,-6.1035156e-005],52.073601] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf index 58e790b42..7ac93a725 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Pogorevka.sqf @@ -5,4 +5,4 @@ ["Body1",[4215.8643,6759.1436,3.0517578e-005],0], ["Body1",[4232.8799,6753.3657,-0.00018310547],0], ["Body1",[4230.6279,6744.4331,3.0517578e-005],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf index 5221286b4..0277a1e5a 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Polana.sqf @@ -11,4 +11,4 @@ ["Body",[11440.929,7409.0415,-9.1552734e-005],14.934533], ["Body",[11441.74,7408.8022,-7.6293945e-005],16.072056], ["Body",[11442.58,7408.5737,-6.1035156e-005],15.20478] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf index c4143bc08..3bcdae282 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Prud.sqf @@ -7,4 +7,4 @@ ["Body1",[6559.5259,9290.957,3.0517578e-005],0], ["Body1",[6550.4502,9272.209,3.0517578e-005],0], ["Body2",[6566.4673,9315.0459,-3.0517578e-005],-104.92654] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf index a51ebe577..26f9d01c6 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Sosnovy.sqf @@ -5,4 +5,4 @@ ["Body1",[3348.4307,6479.6782,0],0], ["Body1",[3345.9199,6471.7793,6.1035156e-005],0], ["Body2",[3341.0183,6479.5151],-194.82481] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf index ef19ae301..d254765ec 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Stary.sqf @@ -4,4 +4,4 @@ ["Body2",[5902.3218,7964.917,-0.00021362305],-146.58554], ["Body1",[5917.2178,7968.6299,-0.00015258789],0], ["Body1",[5905.082,7966.4629,-0.00015258789],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf index bb477f1e6..064c7c5f9 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Topolka.sqf @@ -11,4 +11,4 @@ ["Body2",[10277.839,3765.0146],-202.31456], ["Body2",[10280.47,3766.6904,-1.9073486e-005],-377.7916], ["Body2",[10278.315,3767.0195,-5.7220459e-005],-261.20151] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf index 7a22957b2..7c356ee76 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/Vysota.sqf @@ -5,4 +5,4 @@ ["Body2",[6236.5488,3362.2656,0.00039291382],-49.255459], ["Body1",[6232.0386,3368.0271,-0.00010108948],0], ["Body1",[6240.8916,3363.1448,-2.8610229e-005],0] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf index 2750d05d6..c78545312 100644 --- a/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf +++ b/SQF/dayz_code/system/mission/chernarus/infectiousWaterholes/WillowLake.sqf @@ -11,4 +11,4 @@ ["Body1",[13167.143,11555.009,0.00015449524],0], ["Body1",[13173.876,11560.699,-0.00048065186],0], ["Body2",[13170.959,11553.15,0.00039100647],-170.19336] -],false] call local_spawnObjects; \ No newline at end of file +],false,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/C130Crash.sqf b/SQF/dayz_code/system/mission/chernarus/poi/C130Crash.sqf index 53a3de0f0..13fa3d349 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/C130Crash.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/C130Crash.sqf @@ -1,295 +1,30 @@ -//C130 Crash DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_233 = objNull; -if (true) then -{ - _this = "MAP_R_HouseV2_02" createVehicle [12711.327, 9545.1387, -4.2915344e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_233 = _this; - _this setDir 280.8876; - _this setPos [12711.327, 9545.1387, -4.2915344e-006]; -}; - -_vehicle_234 = objNull; -if (true) then -{ - _this = "MAP_R_HouseV2_04" createVehicle [12702.237, 9516.4395, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_234 = _this; - _this setDir -169.90532; - _this setPos [12702.237, 9516.4395, 7.6293945e-006]; -}; - -_vehicle_235 = objNull; -if (true) then -{ - _this = "MAP_R_HouseV2_03B" createVehicle [12717.162, 9496.2002]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_235 = _this; - _this setDir -259.25668; - _this setPos [12717.162, 9496.2002]; -}; - -_vehicle_236 = objNull; -if (true) then -{ - _this = "C130J_wreck_EP1" createVehicle [12720.771, 9520.5762, 3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_236 = _this; - _this setDir 78.744171; - _this setPos [12720.771, 9520.5762, 3.8146973e-006]; -}; - -_vehicle_239 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [12733.354, 9515.3232, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_239 = _this; - _this setDir -104.81918; - _this setPos [12733.354, 9515.3232, -1.5258789e-005]; -}; - -_vehicle_240 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [12751.971, 9520.4463, 1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_240 = _this; - _this setDir -88.273613; - _this setPos [12751.971, 9520.4463, 1.1444092e-005]; -}; - -_vehicle_241 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [12732.947, 9536.0996, 1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_241 = _this; - _this setDir -81.196098; - _this setPos [12732.947, 9536.0996, 1.9073486e-006]; -}; - -_vehicle_242 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [12770.574, 9542.4629, 4.3869019e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_242 = _this; - _this setDir -121.68095; - _this setPos [12770.574, 9542.4629, 4.3869019e-005]; -}; - -_vehicle_243 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [12762.433, 9520.8115, 1.6212463e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_243 = _this; - _this setPos [12762.433, 9520.8115, 1.6212463e-005]; -}; - -_vehicle_244 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [12744.83, 9517.2822, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_244 = _this; - _this setDir 66.082001; - _this setPos [12744.83, 9517.2822, 7.6293945e-006]; -}; - -_vehicle_245 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [12743.733, 9533.6777, -3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_245 = _this; - _this setDir -115.36677; - _this setPos [12743.733, 9533.6777, -3.8146973e-006]; -}; - -_vehicle_246 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [12778.854, 9546.4971, -7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_246 = _this; - _this setDir -39.535217; - _this setPos [12778.854, 9546.4971, -7.6293945e-006]; -}; - -_vehicle_258 = objNull; -if (true) then -{ - _this = "Land_Fire_DZ" createVehicle [12714.253, 9535.0479, 1.7166138e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_258 = _this; - _this setPos [12714.253, 9535.0479, 1.7166138e-005]; -}; - -_vehicle_259 = objNull; -if (true) then -{ - _this = "Land_Fire_DZ" createVehicle [12718.354, 9550.8037, 9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_259 = _this; - _this setPos [12718.354, 9550.8037, 9.5367432e-006]; -}; - -_vehicle_261 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12718.582, 9550.5176, -1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_261 = _this; - _this setPos [12718.582, 9550.5176, -1.9073486e-006]; -}; - -_vehicle_262 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12715.522, 9536.3525, -2.0027161e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_262 = _this; - _this setPos [12715.522, 9536.3525, -2.0027161e-005]; -}; - -_vehicle_263 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12715.18, 9539.3896, 2.5749207e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_263 = _this; - _this setPos [12715.18, 9539.3896, 2.5749207e-005]; -}; - -_vehicle_264 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12721.592, 9502.25, -3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_264 = _this; - _this setPos [12721.592, 9502.25, -3.8146973e-006]; -}; - -_vehicle_265 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12706.214, 9510.5488, 8.2015991e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_265 = _this; - _this setPos [12706.214, 9510.5488, 8.2015991e-005]; -}; - -_vehicle_266 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12705.977, 9513.2109, -3.2424927e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_266 = _this; - _this setPos [12705.977, 9513.2109, -3.2424927e-005]; -}; - -_vehicle_267 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12703.96, 9511.3291, 3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_267 = _this; - _this setPos [12703.96, 9511.3291, 3.8146973e-006]; -}; - -_vehicle_268 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12698.857, 9523.0391, 4.7683716e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_268 = _this; - _this setPos [12698.857, 9523.0391, 4.7683716e-005]; -}; - -_vehicle_269 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12707.414, 9537.0137, 1.7166138e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_269 = _this; - _this setPos [12707.414, 9537.0137, 1.7166138e-005]; -}; - -_vehicle_270 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12700.703, 9515.3945, 7.1904426]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_270 = _this; - _this setPos [12700.703, 9515.3945, 7.1904426]; -}; - -_vehicle_271 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12701.083, 9516.9688, 7.2510133]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_271 = _this; - _this setPos [12701.083, 9516.9688, 7.2510133]; -}; - -_vehicle_272 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12707.344, 9520.4121, -0.00011634827]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_272 = _this; - _this setPos [12707.344, 9520.4121, -0.00011634827]; -}; - -_vehicle_273 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12712.194, 9544.3564, 8.9676323]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_273 = _this; - _this setPos [12712.194, 9544.3564, 8.9676323]; -}; - -_vehicle_274 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [12710.407, 9548.6572, 8.768301]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_274 = _this; - _this setPos [12710.407, 9548.6572, 8.768301]; -}; +[[ + ["MAP_R_HouseV2_02",[12711.327,9545.1387,-4.2915344e-006],280.8876], + ["MAP_R_HouseV2_04",[12702.237,9516.4395,7.6293945e-006],-169.90532], + ["MAP_R_HouseV2_03B",[12717.162,9496.2002],-259.25668], + ["C130J_wreck_EP1",[12720.771,9520.5762,3.8146973e-006],78.744171], + ["MAP_misc_FallenTree2",[12733.354,9515.3232,-1.5258789e-005],-104.81918], + ["MAP_misc_FallenTree2",[12751.971,9520.4463,1.1444092e-005],-88.273613], + ["MAP_misc_FallenTree2",[12732.947,9536.0996,1.9073486e-006],-81.196098], + ["MAP_misc_FallenTree2",[12770.574,9542.4629,4.3869019e-005],-121.68095], + ["MAP_misc_stub2",[12762.433,9520.8115,1.6212463e-005],0], + ["MAP_misc_stub2",[12744.83,9517.2822,7.6293945e-006],66.082001], + ["MAP_misc_stub2",[12743.733,9533.6777,-3.8146973e-006],-115.36677], + ["MAP_misc_stub2",[12778.854,9546.4971,-7.6293945e-006],-39.535217], + ["Land_Fire_DZ",[12714.253,9535.0479,1.7166138e-005],0], + ["Land_Fire_DZ",[12718.354,9550.8037,9.5367432e-006],0], + ["Land_Camp_Fire_DZ",[12718.582,9550.5176,-1.9073486e-006],0], + ["Land_Camp_Fire_DZ",[12715.522,9536.3525,-2.0027161e-005],0], + ["Land_Camp_Fire_DZ",[12715.18,9539.3896,2.5749207e-005],0], + ["Land_Camp_Fire_DZ",[12721.592,9502.25,-3.8146973e-006],0], + ["Land_Camp_Fire_DZ",[12706.214,9510.5488,8.2015991e-005],0], + ["Land_Camp_Fire_DZ",[12705.977,9513.2109,-3.2424927e-005],0], + ["Land_Camp_Fire_DZ",[12703.96,9511.3291,3.8146973e-006],0], + ["Land_Camp_Fire_DZ",[12698.857,9523.0391,4.7683716e-005],0], + ["Land_Camp_Fire_DZ",[12707.414,9537.0137,1.7166138e-005],0], + ["Land_Camp_Fire_DZ",[12700.703,9515.3945,7.1904426],0], + ["Land_Camp_Fire_DZ",[12701.083,9516.9688,7.2510133],0], + ["Land_Camp_Fire_DZ",[12707.344,9520.4121,-0.00011634827],0], + ["Land_Camp_Fire_DZ",[12712.194,9544.3564,8.9676323],0], + ["Land_Camp_Fire_DZ",[12710.407,9548.6572,8.768301],0] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/ChernoBuildings.sqf b/SQF/dayz_code/system/mission/chernarus/poi/ChernoBuildings.sqf index 53f672fa4..d32b7f715 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/ChernoBuildings.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/ChernoBuildings.sqf @@ -1,400 +1,39 @@ -//Cherno Buildings DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - -_vehicle_24 = objNull; -if (true) then -{ - _this = "Land_Panelak3" createVehicle [7017.1802, 2832.1252, -1.9073486e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_24 = _this; - _this setDir 142.68503; - _this setPos [7017.1802, 2832.1252, -1.9073486e-005]; -}; - -_vehicle_25 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [7033.9487, 2845.1497, -7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_25 = _this; - _this setDir 142.71629; - _this setPos [7033.9487, 2845.1497, -7.6293945e-006]; -}; - -_vehicle_26 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [7054.0884, 2863.4966, 6.6757202e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_26 = _this; - _this setDir -126.68169; - _this setPos [7054.0884, 2863.4966, 6.6757202e-006]; -}; - -_vehicle_27 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [7030.981, 2813.6396, -1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_27 = _this; - _this setDir -37.376324; - _this setPos [7030.981, 2813.6396, -1.9073486e-006]; -}; - -_vehicle_28 = objNull; -if (true) then -{ - _this = "Land_Panelak3" createVehicle [7047.502, 2826.5066, 4.2915344e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_28 = _this; - _this setDir -37.7827; - _this setPos [7047.502, 2826.5066, 4.2915344e-006]; -}; - -_vehicle_29 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [7078.9531, 2834.1553, 2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_29 = _this; - _this setDir -37.152187; - _this setPos [7078.9531, 2834.1553, 2.2888184e-005]; -}; - -_vehicle_30 = objNull; -if (true) then -{ - _this = "Land_Panelak3" createVehicle [7076.1099, 2861.5081, 2.8610229e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_30 = _this; - _this setDir -126.49503; - _this setPos [7076.1099, 2861.5081, 2.8610229e-006]; -}; - -_vehicle_31 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [6997.2598, 2838.3906, 3.7670135e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_31 = _this; - _this setDir 233.08496; - _this setPos [6997.2598, 2838.3906, 3.7670135e-005]; -}; - -_vehicle_32 = objNull; -if (true) then -{ - _this = "Land_Panelak3" createVehicle [7021.0967, 2767.9297, -4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_32 = _this; - _this setDir 52.002502; - _this setPos [7021.0967, 2767.9297, -4.7683716e-006]; -}; - -_vehicle_34 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [6977.5898, 2844.4226, 1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_34 = _this; - _this setDir 142.41486; - _this setPos [6977.5898, 2844.4226, 1.9073486e-006]; -}; - -_vehicle_35 = objNull; -if (true) then -{ - _this = "Land_Panelak2" createVehicle [7034.1514, 2793.9668, 2.0980835e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_35 = _this; - _this setDir -127.15548; - _this setPos [7034.1514, 2793.9668, 2.0980835e-005]; -}; - -_vehicle_40 = objNull; -if (true) then -{ - _this = "Land_A_GeneralStore_01" createVehicle [7054.2852, 2779.2981, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_40 = _this; - _this setDir -127.20033; - _this setPos [7054.2852, 2779.2981, 4.5776367e-005]; -}; - -_vehicle_50 = objNull; -if (true) then -{ - _this = "MAP_phone_box" createVehicle [7042.6147, 2776.8606, 1.2220162]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_50 = _this; - _this setDir -37.120174; - _this setPos [7042.6147, 2776.8606, 1.2220162]; -}; - -_vehicle_72 = objNull; -if (true) then -{ - _this = "MAP_t_fagus2s" createVehicle [7062.9316, 2753.7759, -2.8610229e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_72 = _this; - _this setDir 53.231174; - _this setPos [7062.9316, 2753.7759, -2.8610229e-006]; -}; - -_vehicle_73 = objNull; -if (true) then -{ - _this = "MAP_t_malus1s" createVehicle [7037.6626, 2781.1833, -1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_73 = _this; - _this setPos [7037.6626, 2781.1833, -1.1444092e-005]; -}; - -_vehicle_83 = objNull; -if (true) then -{ - _this = "MAP_Misc_Greenhouse" createVehicle [7066.8647, 2816.1692, 7.1525574e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_83 = _this; - _this setDir 53.482254; - _this setPos [7066.8647, 2816.1692, 7.1525574e-006]; -}; - -_vehicle_84 = objNull; -if (true) then -{ - _this = "MAP_Misc_Greenhouse" createVehicle [7063.1958, 2813.4331, 1.335144e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_84 = _this; - _this setDir 53.615242; - _this setPos [7063.1958, 2813.4331, 1.335144e-005]; -}; - -_vehicle_197 = objNull; -if (true) then -{ - _this = "C130J_wreck_EP1" createVehicle [6947.1333, 2799.593, 1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_197 = _this; - _this setDir 154.08904; - _this setPos [6947.1333, 2799.593, 1.1444092e-005]; -}; - -_vehicle_202 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree1" createVehicle [6968.8442, 2787.7422, 1.4305115e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_202 = _this; - _this setPos [6968.8442, 2787.7422, 1.4305115e-006]; -}; - -_vehicle_205 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [6944.7886, 2784.7371, -6.1988831e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_205 = _this; - _this setDir -45.92025; - _this setPos [6944.7886, 2784.7371, -6.1988831e-006]; -}; - -_vehicle_206 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [6947.2598, 2771.8098, 5.2452087e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_206 = _this; - _this setDir -19.038361; - _this setPos [6947.2598, 2771.8098, 5.2452087e-006]; -}; - -_vehicle_207 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [6955.9478, 2760.2688, 3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_207 = _this; - _this setDir -19.759348; - _this setPos [6955.9478, 2760.2688, 3.8146973e-006]; -}; - -_vehicle_208 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenSpruce" createVehicle [6963.8408, 2751.6982, -4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_208 = _this; - _this setDir -39.295834; - _this setPos [6963.8408, 2751.6982, -4.7683716e-006]; -}; - -_vehicle_209 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenSpruce" createVehicle [6938.626, 2813.3032]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_209 = _this; - _this setDir -32.037121; - _this setPos [6938.626, 2813.3032]; -}; - -_vehicle_210 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree1" createVehicle [6965.9697, 2769.4019, 1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_210 = _this; - _this setPos [6965.9697, 2769.4019, 1.9073486e-006]; -}; - -_vehicle_211 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [6975.3252, 2772.3062, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_211 = _this; - _this setDir -23.15572; - _this setPos [6975.3252, 2772.3062, 1.5258789e-005]; -}; - -_vehicle_213 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [6978.2739, 2763.501, 9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_213 = _this; - _this setPos [6978.2739, 2763.501, 9.5367432e-006]; -}; - -_vehicle_214 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [6959.1226, 2751.3816, -1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_214 = _this; - _this setPos [6959.1226, 2751.3816, -1.9073486e-006]; -}; - -_vehicle_215 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [6951.0894, 2763.2842, 1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_215 = _this; - _this setPos [6951.0894, 2763.2842, 1.1444092e-005]; -}; - -_vehicle_216 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [6951.2749, 2777.1152, -2.3841858e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_216 = _this; - _this setPos [6951.2749, 2777.1152, -2.3841858e-006]; -}; - -_vehicle_217 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [6955.5356, 2809.7603, 2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_217 = _this; - _this setPos [6955.5356, 2809.7603, 2.2888184e-005]; -}; - -_vehicle_219 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [6957.6123, 2801.1416, 2.8610229e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_219 = _this; - _this setDir 109.69421; - _this setPos [6957.6123, 2801.1416, 2.8610229e-005]; -}; - -_vehicle_220 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [6977.498, 2755.78, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_220 = _this; - _this setDir 13.802272; - _this setPos [6977.498, 2755.78, 7.6293945e-006]; -}; - -_vehicle_221 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [6976.8638, 2751.7324, 8.392334e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_221 = _this; - _this setPos [6976.8638, 2751.7324, 8.392334e-005]; -}; - -_vehicle_222 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [6966.3115, 2770.1753, 4.7683716e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_222 = _this; - _this setDir 50.185974; - _this setPos [6966.3115, 2770.1753, 4.7683716e-005]; -}; - -_vehicle_223 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [6956.0034, 2779.5024, 8.5830688e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_223 = _this; - _this setPos [6956.0034, 2779.5024, 8.5830688e-005]; -}; - -_vehicle_224 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [6965.25, 2759.8867, 9.727478e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_224 = _this; - _this setDir -108.38199; - _this setPos [6965.25, 2759.8867, 9.727478e-005]; -}; +[[ + ["Land_Panelak3",[7017.1802,2832.1252,-1.9073486e-005],142.68503], + ["Land_Panelak2",[7033.9487,2845.1497,-7.6293945e-006],142.71629], + ["Land_Panelak2",[7054.0884,2863.4966,6.6757202e-006],-126.68169], + ["Land_Panelak2",[7030.981,2813.6396,-1.9073486e-006],-37.376324], + ["Land_Panelak3",[7047.502,2826.5066,4.2915344e-006],-37.7827], + ["Land_Panelak2",[7078.9531,2834.1553,2.2888184e-005],-37.152187], + ["Land_Panelak3",[7076.1099,2861.5081,2.8610229e-006],-126.49503], + ["Land_Panelak2",[6997.2598,2838.3906,3.7670135e-005],233.08496], + ["Land_Panelak3",[7021.0967,2767.9297,-4.7683716e-006],52.002502], + ["Land_Panelak2",[6977.5898,2844.4226,1.9073486e-006],142.41486], + ["Land_Panelak2",[7034.1514,2793.9668,2.0980835e-005],-127.15548], + ["Land_A_GeneralStore_01",[7054.2852,2779.2981,4.5776367e-005],-127.20033], + ["MAP_phone_box",[7042.6147,2776.8606,1.2220162],-37.120174], + ["MAP_t_fagus2s",[7062.9316,2753.7759,-2.8610229e-006],53.231174], + ["MAP_t_malus1s",[7037.6626,2781.1833,-1.1444092e-005],0], + ["MAP_Misc_Greenhouse",[7066.8647,2816.1692,7.1525574e-006],53.482254], + ["MAP_Misc_Greenhouse",[7063.1958,2813.4331,1.335144e-005],53.615242], + ["C130J_wreck_EP1",[6947.1333,2799.593,1.1444092e-005],154.08904], + ["MAP_misc_FallenTree1",[6968.8442,2787.7422,1.4305115e-006],0], + ["MAP_misc_FallenTree2",[6944.7886,2784.7371,-6.1988831e-006],-45.92025], + ["MAP_misc_FallenTree2",[6947.2598,2771.8098,5.2452087e-006],-19.038361], + ["MAP_misc_FallenTree2",[6955.9478,2760.2688,3.8146973e-006],-19.759348], + ["MAP_misc_FallenSpruce",[6963.8408,2751.6982,-4.7683716e-006],-39.295834], + ["MAP_misc_FallenSpruce",[6938.626,2813.3032],-32.037121], + ["MAP_misc_FallenTree1",[6965.9697,2769.4019,1.9073486e-006],0], + ["MAP_misc_FallenTree2",[6975.3252,2772.3062,1.5258789e-005],-23.15572], + ["MAP_misc_stub2",[6978.2739,2763.501,9.5367432e-006],0], + ["MAP_misc_stub2",[6959.1226,2751.3816,-1.9073486e-006],0], + ["MAP_misc_stub2",[6951.0894,2763.2842,1.1444092e-005],0], + ["MAP_misc_stub2",[6951.2749,2777.1152,-2.3841858e-006],0], + ["MAP_misc_FallenTree2",[6955.5356,2809.7603,2.2888184e-005],0], + ["MAP_misc_stub2",[6957.6123,2801.1416,2.8610229e-005],109.69421], + ["Body2",[6977.498,2755.78,7.6293945e-006],13.802272], + ["Body1",[6976.8638,2751.7324,8.392334e-005],0], + ["Body2",[6966.3115,2770.1753,4.7683716e-005],50.185974], + ["Body1",[6956.0034,2779.5024,8.5830688e-005],0], + ["Body2",[6965.25,2759.8867,9.727478e-005],-108.38199] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/DeadForest.sqf b/SQF/dayz_code/system/mission/chernarus/poi/DeadForest.sqf index 96bcf444d..8d30ac770 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/DeadForest.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/DeadForest.sqf @@ -1,3938 +1,364 @@ -//Dead Forest DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_5 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8374.1084, 2992.9797, -1.3828278e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_5 = _this; - _this setDir 27; - _this setPos [8374.1084, 2992.9797, -1.3828278e-005]; -}; - -_vehicle_6 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8367.4912, 2999.4746, 1.4305115e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_6 = _this; - _this setDir 115; - _this setPos [8367.4912, 2999.4746, 1.4305115e-006]; -}; - -_vehicle_7 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8375.5654, 3002.9851, 3.7193298e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_7 = _this; - _this setDir 104; - _this setPos [8375.5654, 3002.9851, 3.7193298e-005]; -}; - -_vehicle_9 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8368.1514, 3006.0754, -1.3828278e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_9 = _this; - _this setDir 182; - _this setPos [8368.1514, 3006.0754, -1.3828278e-005]; -}; - -_vehicle_10 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8360.3105, 3007.457, -1.1920929e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_10 = _this; - _this setDir 341; - _this setPos [8360.3105, 3007.457, -1.1920929e-005]; -}; - -_vehicle_11 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8324.2432, 3006.7075, 4.1484833e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_11 = _this; - _this setDir 256; - _this setPos [8324.2432, 3006.7075, 4.1484833e-005]; -}; - -_vehicle_12 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8335.7236, 2997.5403, 9.5844269e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_12 = _this; - _this setDir 92; - _this setPos [8335.7236, 2997.5403, 9.5844269e-005]; -}; - -_vehicle_13 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8342.4678, 2991.863, 0.00016832352]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_13 = _this; - _this setDir 205; - _this setPos [8342.4678, 2991.863, 0.00016832352]; -}; - -_vehicle_14 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8349.3223, 2984.667, 5.0544739e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_14 = _this; - _this setDir 213; - _this setPos [8349.3223, 2984.667, 5.0544739e-005]; -}; - -_vehicle_15 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8329.9922, 3000.8005, 3.0994415e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_15 = _this; - _this setDir 127; - _this setPos [8329.9922, 3000.8005, 3.0994415e-005]; -}; - -_vehicle_16 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8344.3652, 3026.6082, 5.2452087e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_16 = _this; - _this setDir 255; - _this setPos [8344.3652, 3026.6082, 5.2452087e-006]; -}; - -_vehicle_17 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8325.8652, 2998.8228, -0.00013780594]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_17 = _this; - _this setDir 345; - _this setPos [8325.8652, 2998.8228, -0.00013780594]; -}; - -_vehicle_18 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8349.2969, 3014.9563, -9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_18 = _this; - _this setDir 194; - _this setPos [8349.2969, 3014.9563, -9.5367432e-006]; -}; - -_vehicle_19 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8356.1709, 3013.1833, 4.7683716e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_19 = _this; - _this setDir 335; - _this setPos [8356.1709, 3013.1833, 4.7683716e-005]; -}; - -_vehicle_20 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8365.8193, 3010.967, -2.2411346e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_20 = _this; - _this setDir 41; - _this setPos [8365.8193, 3010.967, -2.2411346e-005]; -}; - -_vehicle_21 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8372.5146, 3010.2739, -1.001358e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_21 = _this; - _this setDir 287; - _this setPos [8372.5146, 3010.2739, -1.001358e-005]; -}; - -_vehicle_22 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8339.6162, 3024.0161, -5.2452087e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_22 = _this; - _this setDir 38; - _this setPos [8339.6162, 3024.0161, -5.2452087e-006]; -}; - -_vehicle_23 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8349.6475, 3022.1182, 2.5272369e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_23 = _this; - _this setDir 92; - _this setPos [8349.6475, 3022.1182, 2.5272369e-005]; -}; - -_vehicle_24 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8354.3623, 3019.4683, -2.6226044e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_24 = _this; - _this setDir 80; - _this setPos [8354.3623, 3019.4683, -2.6226044e-005]; -}; - -_vehicle_25 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8334.9004, 2990.9661, 4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_25 = _this; - _this setDir 86; - _this setPos [8334.9004, 2990.9661, 4.7683716e-006]; -}; - -_vehicle_26 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8330.7646, 2995.2581, 5.2452087e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_26 = _this; - _this setDir 290; - _this setPos [8330.7646, 2995.2581, 5.2452087e-006]; -}; - -_vehicle_27 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8319.6641, 3010.3237, 3.6239624e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_27 = _this; - _this setDir 143; - _this setPos [8319.6641, 3010.3237, 3.6239624e-005]; -}; - -_vehicle_28 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8342.0684, 2985.0317, -7.8678131e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_28 = _this; - _this setDir 291; - _this setPos [8342.0684, 2985.0317, -7.8678131e-005]; -}; - -_vehicle_29 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8335.4746, 2983.8818, 1.9550323e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_29 = _this; - _this setDir 307; - _this setPos [8335.4746, 2983.8818, 1.9550323e-005]; -}; - -_vehicle_30 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8354.9092, 2979.2861, 9.059906e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_30 = _this; - _this setDir 281; - _this setPos [8354.9092, 2979.2861, 9.059906e-006]; -}; - -_vehicle_31 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8345.6475, 2977.5107, -1.9073486e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_31 = _this; - _this setDir 47; - _this setPos [8345.6475, 2977.5107, -1.9073486e-005]; -}; - -_vehicle_32 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8337.1436, 2976.5764, 3.3855438e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_32 = _this; - _this setDir 256; - _this setPos [8337.1436, 2976.5764, 3.3855438e-005]; -}; - -_vehicle_33 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8331.9688, 3028.6682, 5.3882599e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_33 = _this; - _this setDir 189; - _this setPos [8331.9688, 3028.6682, 5.3882599e-005]; -}; - -_vehicle_34 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8326.0078, 3034.9595, -8.5830688e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_34 = _this; - _this setDir 219; - _this setPos [8326.0078, 3034.9595, -8.5830688e-006]; -}; - -_vehicle_35 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8320.1416, 3038.6501, -0.00011301041]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_35 = _this; - _this setDir 27; - _this setPos [8320.1416, 3038.6501, -0.00011301041]; -}; - -_vehicle_36 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8311.3613, 3018.5193, -5.9127808e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_36 = _this; - _this setDir 209; - _this setPos [8311.3613, 3018.5193, -5.9127808e-005]; -}; - -_vehicle_37 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8304.54, 3023.0964, 4.9114227e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_37 = _this; - _this setDir 312; - _this setPos [8304.54, 3023.0964, 4.9114227e-005]; -}; - -_vehicle_38 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8315.1924, 3011.3325, 5.0544739e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_38 = _this; - _this setDir 352; - _this setPos [8315.1924, 3011.3325, 5.0544739e-005]; -}; - -_vehicle_39 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8318.0791, 3004.4722, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_39 = _this; - _this setDir 129; - _this setPos [8318.0791, 3004.4722, 4.5776367e-005]; -}; - -_vehicle_40 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8308.5615, 3012.7195, 6.6757202e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_40 = _this; - _this setDir 8; - _this setPos [8308.5615, 3012.7195, 6.6757202e-005]; -}; - -_vehicle_41 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8301.3828, 3017.0095, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_41 = _this; - _this setDir 233; - _this setPos [8301.3828, 3017.0095, 1.5258789e-005]; -}; - -_vehicle_42 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8332.458, 3036.3906, 0.00010156631]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_42 = _this; - _this setDir 34; - _this setPos [8332.458, 3036.3906, 0.00010156631]; -}; - -_vehicle_43 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8339.2764, 3030.8428, 1.5735626e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_43 = _this; - _this setDir 252; - _this setPos [8339.2764, 3030.8428, 1.5735626e-005]; -}; - -_vehicle_44 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8347.2959, 3028.9395, 2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_44 = _this; - _this setDir 17; - _this setPos [8347.2959, 3028.9395, 2.2888184e-005]; -}; - -_vehicle_45 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8343.8115, 3018.7363, 5.7697296e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_45 = _this; - _this setDir 251; - _this setPos [8343.8115, 3018.7363, 5.7697296e-005]; -}; - -_vehicle_46 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8357.4756, 3019.6348, 3.194809e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_46 = _this; - _this setDir 279; - _this setPos [8357.4756, 3019.6348, 3.194809e-005]; -}; - -_vehicle_47 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8361.1982, 3002.3828, 9.5367432e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_47 = _this; - _this setDir 79; - _this setPos [8361.1982, 3002.3828, 9.5367432e-007]; -}; - -_vehicle_48 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8380.084, 2998.1199, 3.9577484e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_48 = _this; - _this setDir 1; - _this setPos [8380.084, 2998.1199, 3.9577484e-005]; -}; - -_vehicle_49 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8327.6084, 2990.6194, 4.3392181e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_49 = _this; - _this setDir 98; - _this setPos [8327.6084, 2990.6194, 4.3392181e-005]; -}; - -_vehicle_50 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8320.4727, 2996.5691, 4.7683716e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_50 = _this; - _this setDir 227; - _this setPos [8320.4727, 2996.5691, 4.7683716e-005]; -}; - -_vehicle_51 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8311.2236, 3005.0393, -4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_51 = _this; - _this setDir 148; - _this setPos [8311.2236, 3005.0393, -4.7683716e-006]; -}; - -_vehicle_52 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8290.1934, 3036.1836, 1.335144e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_52 = _this; - _this setDir 145; - _this setPos [8290.1934, 3036.1836, 1.335144e-005]; -}; - -_vehicle_53 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8295.7578, 3029.7461, 5.2452087e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_53 = _this; - _this setDir 324; - _this setPos [8295.7578, 3029.7461, 5.2452087e-006]; -}; - -_vehicle_54 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8289.0322, 3028.5151, 1.6689301e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_54 = _this; - _this setDir 286; - _this setPos [8289.0322, 3028.5151, 1.6689301e-005]; -}; - -_vehicle_55 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8302.0781, 3027.2917, 2.2411346e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_55 = _this; - _this setDir 16; - _this setPos [8302.0781, 3027.2917, 2.2411346e-005]; -}; - -_vehicle_56 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8296.7686, 3023.0215, 0.00012397766]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_56 = _this; - _this setDir 127; - _this setPos [8296.7686, 3023.0215, 0.00012397766]; -}; - -_vehicle_57 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8302.3252, 3009.8862, 0.00016593933]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_57 = _this; - _this setDir 49; - _this setPos [8302.3252, 3009.8862, 0.00016593933]; -}; - -_vehicle_58 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8295.3916, 3015.5476, 9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_58 = _this; - _this setDir 16; - _this setPos [8295.3916, 3015.5476, 9.5367432e-006]; -}; - -_vehicle_59 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8289.8447, 3020.5537, 0.00014352798]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_59 = _this; - _this setDir 341; - _this setPos [8289.8447, 3020.5537, 0.00014352798]; -}; - -_vehicle_60 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8312.9014, 2998.6064, 5.1498413e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_60 = _this; - _this setDir 157; - _this setPos [8312.9014, 2998.6064, 5.1498413e-005]; -}; - -_vehicle_61 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8320.5898, 2990.0151, 5.0544739e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_61 = _this; - _this setDir 274; - _this setPos [8320.5898, 2990.0151, 5.0544739e-005]; -}; - -_vehicle_62 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8327.5713, 2984.302, -2.1457672e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_62 = _this; - _this setDir 128; - _this setPos [8327.5713, 2984.302, -2.1457672e-005]; -}; - -_vehicle_63 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8343.2061, 2970.5376, 7.0095062e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_63 = _this; - _this setDir 342; - _this setPos [8343.2061, 2970.5376, 7.0095062e-005]; -}; - -_vehicle_64 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8351.3672, 2972.5308, 3.4332275e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_64 = _this; - _this setDir 107; - _this setPos [8351.3672, 2972.5308, 3.4332275e-005]; -}; - -_vehicle_65 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8360.6699, 2974.8535, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_65 = _this; - _this setDir 133; - _this setPos [8360.6699, 2974.8535, 7.6293945e-006]; -}; - -_vehicle_66 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8313.5166, 3042.1011, 2.5272369e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_66 = _this; - _this setDir 61; - _this setPos [8313.5166, 3042.1011, 2.5272369e-005]; -}; - -_vehicle_67 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8319.6191, 3044.9377, -4.0054321e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_67 = _this; - _this setDir 151; - _this setPos [8319.6191, 3044.9377, -4.0054321e-005]; -}; - -_vehicle_68 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8363.4619, 3015.9182, 4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_68 = _this; - _this setDir 116; - _this setPos [8363.4619, 3015.9182, 4.7683716e-006]; -}; - -_vehicle_69 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8353.6533, 3026.426, 6.7710876e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_69 = _this; - _this setDir 136; - _this setPos [8353.6533, 3026.426, 6.7710876e-005]; -}; - -_vehicle_70 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8325.6875, 3040.1899, 1.6689301e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_70 = _this; - _this setDir 336; - _this setPos [8325.6875, 3040.1899, 1.6689301e-005]; -}; - -_vehicle_71 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8332.8477, 2978.8247, 6.3419342e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_71 = _this; - _this setDir 55; - _this setPos [8332.8477, 2978.8247, 6.3419342e-005]; -}; - -_vehicle_72 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8351.9277, 3047.147, -5.3405762e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_72 = _this; - _this setDir 16; - _this setPos [8351.9277, 3047.147, -5.3405762e-005]; -}; - -_vehicle_73 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8387.9004, 3031.4431, -1.5735626e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_73 = _this; - _this setDir 311; - _this setPos [8387.9004, 3031.4431, -1.5735626e-005]; -}; - -_vehicle_74 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8335.2236, 3055.9009, -4.9591064e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_74 = _this; - _this setDir 258; - _this setPos [8335.2236, 3055.9009, -4.9591064e-005]; -}; - -_vehicle_75 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8358.5244, 3062.5132, 4.0054321e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_75 = _this; - _this setDir 225; - _this setPos [8358.5244, 3062.5132, 4.0054321e-005]; -}; - -_vehicle_76 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8370.6104, 3039.8354, 2.0503998e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_76 = _this; - _this setDir 100; - _this setPos [8370.6104, 3039.8354, 2.0503998e-005]; -}; - -_vehicle_77 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8387.2168, 3005.4438, 1.1920929e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_77 = _this; - _this setDir 297; - _this setPos [8387.2168, 3005.4438, 1.1920929e-005]; -}; - -_vehicle_78 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8376.6631, 3056.2424, 5.0067902e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_78 = _this; - _this setDir 335; - _this setPos [8376.6631, 3056.2424, 5.0067902e-005]; -}; - -_vehicle_79 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8372.0146, 3029.3923, 1.0490417e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_79 = _this; - _this setDir 286; - _this setPos [8372.0146, 3029.3923, 1.0490417e-005]; -}; - -_vehicle_80 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8381.874, 3006.4099, 3.1471252e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_80 = _this; - _this setDir 28; - _this setPos [8381.874, 3006.4099, 3.1471252e-005]; -}; - -_vehicle_81 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8379.0771, 3012.7131, -0.00017309189]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_81 = _this; - _this setDir 257; - _this setPos [8379.0771, 3012.7131, -0.00017309189]; -}; - -_vehicle_82 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8369.5684, 3016.3491, 5.7220459e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_82 = _this; - _this setDir 165; - _this setPos [8369.5684, 3016.3491, 5.7220459e-006]; -}; - -_vehicle_83 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8375.6934, 3018.9282, 5.5789948e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_83 = _this; - _this setDir 343; - _this setPos [8375.6934, 3018.9282, 5.5789948e-005]; -}; - -_vehicle_84 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8359.1016, 3027.2422, 9.059906e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_84 = _this; - _this setDir 356; - _this setPos [8359.1016, 3027.2422, 9.059906e-006]; -}; - -_vehicle_85 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8369.6035, 3024.0635, 2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_85 = _this; - _this setDir 134; - _this setPos [8369.6035, 3024.0635, 2.2888184e-005]; -}; - -_vehicle_86 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8341.2939, 3054.1707, -4.2915344e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_86 = _this; - _this setDir 272; - _this setPos [8341.2939, 3054.1707, -4.2915344e-006]; -}; - -_vehicle_87 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8335.3438, 3048.0002, 8.4400177e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_87 = _this; - _this setDir 142; - _this setPos [8335.3438, 3048.0002, 8.4400177e-005]; -}; - -_vehicle_88 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8335.7705, 3040.657, -2.1457672e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_88 = _this; - _this setDir 93; - _this setPos [8335.7705, 3040.657, -2.1457672e-005]; -}; - -_vehicle_89 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8341.3555, 3036.3518, 1.3828278e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_89 = _this; - _this setDir 255; - _this setPos [8341.3555, 3036.3518, 1.3828278e-005]; -}; - -_vehicle_90 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8354.3828, 3032.3359, 4.1484833e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_90 = _this; - _this setDir 252; - _this setPos [8354.3828, 3032.3359, 4.1484833e-005]; -}; - -_vehicle_91 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8348.2881, 3035.4565, -2.6226044e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_91 = _this; - _this setDir 296; - _this setPos [8348.2881, 3035.4565, -2.6226044e-005]; -}; - -_vehicle_92 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8341.8643, 3046.4958, -2.7179718e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_92 = _this; - _this setDir 316; - _this setPos [8341.8643, 3046.4958, -2.7179718e-005]; -}; - -_vehicle_93 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8344.0537, 3041.271, 1.8119812e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_93 = _this; - _this setDir 268; - _this setPos [8344.0537, 3041.271, 1.8119812e-005]; -}; - -_vehicle_94 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8328.7598, 3043.6758, 9.8228455e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_94 = _this; - _this setDir 83; - _this setPos [8328.7598, 3043.6758, 9.8228455e-005]; -}; - -_vehicle_95 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8328.3105, 3050.7827, 5.7697296e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_95 = _this; - _this setDir 291; - _this setPos [8328.3105, 3050.7827, 5.7697296e-005]; -}; - -_vehicle_96 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8362.085, 3070.0769, 0.00011539459]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_96 = _this; - _this setDir 266; - _this setPos [8362.085, 3070.0769, 0.00011539459]; -}; - -_vehicle_97 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8354.7412, 3065.4475, 6.1511993e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_97 = _this; - _this setDir 318; - _this setPos [8354.7412, 3065.4475, 6.1511993e-005]; -}; - -_vehicle_98 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8347.7207, 3060.8008, 0.00016069412]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_98 = _this; - _this setDir 37; - _this setPos [8347.7207, 3060.8008, 0.00016069412]; -}; - -_vehicle_99 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8347.8643, 3052.4048, -7.1525574e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_99 = _this; - _this setDir 252; - _this setPos [8347.8643, 3052.4048, -7.1525574e-006]; -}; - -_vehicle_100 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8353.7354, 3057.7947, 2.1457672e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_100 = _this; - _this setDir 61; - _this setPos [8353.7354, 3057.7947, 2.1457672e-005]; -}; - -_vehicle_101 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8352.082, 3042.2791, -5.2452087e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_101 = _this; - _this setDir 177; - _this setPos [8352.082, 3042.2791, -5.2452087e-005]; -}; - -_vehicle_102 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8358.2871, 3038.5503, 2.4795532e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_102 = _this; - _this setDir 102; - _this setPos [8358.2871, 3038.5503, 2.4795532e-005]; -}; - -_vehicle_103 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8363.2881, 3023.4106, -7.1525574e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_103 = _this; - _this setDir 283; - _this setPos [8363.2881, 3023.4106, -7.1525574e-006]; -}; - -_vehicle_104 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8363.5068, 3055.887, 6.4373016e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_104 = _this; - _this setDir 246; - _this setPos [8363.5068, 3055.887, 6.4373016e-005]; -}; - -_vehicle_105 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8371.2852, 3044.207, 0.00011253357]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_105 = _this; - _this setDir 63; - _this setPos [8371.2852, 3044.207, 0.00011253357]; -}; - -_vehicle_106 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8393.7471, 3017.5837, 2.4795532e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_106 = _this; - _this setDir 281; - _this setPos [8393.7471, 3017.5837, 2.4795532e-005]; -}; - -_vehicle_107 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8391.21, 3036.2163, -2.3841858e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_107 = _this; - _this setDir 242; - _this setPos [8391.21, 3036.2163, -2.3841858e-005]; -}; - -_vehicle_108 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8382.9512, 3021.5007, -2.7656555e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_108 = _this; - _this setDir 272; - _this setPos [8382.9512, 3021.5007, -2.7656555e-005]; -}; - -_vehicle_109 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8332.3145, 2971.6072, 9.5367432e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_109 = _this; - _this setDir 132; - _this setPos [8332.3145, 2971.6072, 9.5367432e-007]; -}; - -_vehicle_110 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8348.8174, 2966.2979, 6.6757202e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_110 = _this; - _this setDir 353; - _this setPos [8348.8174, 2966.2979, 6.6757202e-005]; -}; - -_vehicle_111 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [8353.1592, 3008.2664, 2.0027161e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_111 = _this; - _this setDir 28; - _this setPos [8353.1592, 3008.2664, 2.0027161e-005]; -}; - -_vehicle_112 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8385.333, 3047.8713, 1.2874603e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_112 = _this; - _this setDir 292; - _this setPos [8385.333, 3047.8713, 1.2874603e-005]; -}; - -_vehicle_113 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8380.3887, 3037.8037, 0.00010061264]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_113 = _this; - _this setDir 23; - _this setPos [8380.3887, 3037.8037, 0.00010061264]; -}; - -_vehicle_114 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8399.2168, 3023.7378, -8.9645386e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_114 = _this; - _this setDir 270; - _this setPos [8399.2168, 3023.7378, -8.9645386e-005]; -}; - -_vehicle_115 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8392.1133, 3024.2642, -6.2465668e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_115 = _this; - _this setDir 214; - _this setPos [8392.1133, 3024.2642, -6.2465668e-005]; -}; - -_vehicle_116 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8388.0898, 3010.9275, -3.9100647e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_116 = _this; - _this setDir 329; - _this setPos [8388.0898, 3010.9275, -3.9100647e-005]; -}; - -_vehicle_117 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8386.9814, 3019.27, 7.5340271e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_117 = _this; - _this setDir 292; - _this setPos [8386.9814, 3019.27, 7.5340271e-005]; -}; - -_vehicle_118 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8378.6494, 3026.2344, 8.9168549e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_118 = _this; - _this setDir 315; - _this setPos [8378.6494, 3026.2344, 8.9168549e-005]; -}; - -_vehicle_119 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8373.4072, 3034.0032, -6.7710876e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_119 = _this; - _this setDir 34; - _this setPos [8373.4072, 3034.0032, -6.7710876e-005]; -}; - -_vehicle_120 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8369.4004, 3053.8101, 8.5353851e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_120 = _this; - _this setDir 265; - _this setPos [8369.4004, 3053.8101, 8.5353851e-005]; -}; - -_vehicle_121 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8356.7588, 3051.1743, 0.00012636185]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_121 = _this; - _this setDir 128; - _this setPos [8356.7588, 3051.1743, 0.00012636185]; -}; - -_vehicle_122 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8363.8643, 3049.407, 7.2479248e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_122 = _this; - _this setDir 234; - _this setPos [8363.8643, 3049.407, 7.2479248e-005]; -}; - -_vehicle_123 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8361.8838, 3034.9668, -2.9563904e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_123 = _this; - _this setDir 281; - _this setPos [8361.8838, 3034.9668, -2.9563904e-005]; -}; - -_vehicle_124 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8374.6533, 3046.0508, 0.00013256073]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_124 = _this; - _this setDir 289; - _this setPos [8374.6533, 3046.0508, 0.00013256073]; -}; - -_vehicle_125 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8380.2734, 3044.4497, -3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_125 = _this; - _this setDir 172; - _this setPos [8380.2734, 3044.4497, -3.8146973e-006]; -}; - -_vehicle_126 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8364.7539, 3042.5144, 2.2411346e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_126 = _this; - _this setDir 222; - _this setPos [8364.7539, 3042.5144, 2.2411346e-005]; -}; - -_vehicle_127 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8362.1914, 3061.9292, 4.3869019e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_127 = _this; - _this setDir 53; - _this setPos [8362.1914, 3061.9292, 4.3869019e-005]; -}; - -_vehicle_128 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8371.2676, 3060.8711, 0.0001616478]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_128 = _this; - _this setDir 50; - _this setPos [8371.2676, 3060.8711, 0.0001616478]; -}; - -_vehicle_129 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8379.2402, 3053.2058, -1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_129 = _this; - _this setDir 351; - _this setPos [8379.2402, 3053.2058, -1.1444092e-005]; -}; - -_vehicle_130 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8382.1729, 3031.7893, 2.5272369e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_130 = _this; - _this setDir 288; - _this setPos [8382.1729, 3031.7893, 2.5272369e-005]; -}; - -_vehicle_131 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8393.6787, 3030.147, 0.0001912117]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_131 = _this; - _this setDir 99; - _this setPos [8393.6787, 3030.147, 0.0001912117]; -}; - -_vehicle_132 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8387.1973, 3038.4426, -1.2874603e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_132 = _this; - _this setDir 276; - _this setPos [8387.1973, 3038.4426, -1.2874603e-005]; -}; - -_vehicle_133 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8398.0811, 3036.6772, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_133 = _this; - _this setDir 294; - _this setPos [8398.0811, 3036.6772, 3.0517578e-005]; -}; - -_vehicle_134 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8393.6035, 3043.3064, 5.7220459e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_134 = _this; - _this setDir 339; - _this setPos [8393.6035, 3043.3064, 5.7220459e-005]; -}; - -_vehicle_135 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8404.416, 3030.3401, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_135 = _this; - _this setDir 90; - _this setPos [8404.416, 3030.3401, 0.0001373291]; -}; - -_vehicle_136 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8389.6455, 2978.394, 1.5735626e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_136 = _this; - _this setDir 262; - _this setPos [8389.6455, 2978.394, 1.5735626e-005]; -}; - -_vehicle_137 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8395.1406, 2969.668, 3.1471252e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_137 = _this; - _this setDir 308; - _this setPos [8395.1406, 2969.668, 3.1471252e-005]; -}; - -_vehicle_138 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8396.8701, 2983.0527, 7.1525574e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_138 = _this; - _this setDir 207; - _this setPos [8396.8701, 2983.0527, 7.1525574e-006]; -}; - -_vehicle_139 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8399.748, 2977.9617, -1.0967255e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_139 = _this; - _this setDir 241; - _this setPos [8399.748, 2977.9617, -1.0967255e-005]; -}; - -_vehicle_140 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8375.2012, 2961.0181, -3.1471252e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_140 = _this; - _this setDir 178; - _this setPos [8375.2012, 2961.0181, -3.1471252e-005]; -}; - -_vehicle_141 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8353.458, 2965.6736, -4.196167e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_141 = _this; - _this setDir 267; - _this setPos [8353.458, 2965.6736, -4.196167e-005]; -}; - -_vehicle_142 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8369.4355, 2954.9197, 3.6716461e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_142 = _this; - _this setDir 336; - _this setPos [8369.4355, 2954.9197, 3.6716461e-005]; -}; - -_vehicle_143 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8375.4238, 2955.2461, 4.0531158e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_143 = _this; - _this setDir 166; - _this setPos [8375.4238, 2955.2461, 4.0531158e-005]; -}; - -_vehicle_144 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8384.5664, 2950.9524, 5.0067902e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_144 = _this; - _this setDir 17; - _this setPos [8384.5664, 2950.9524, 5.0067902e-005]; -}; - -_vehicle_145 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8375.7773, 2948.3875, 1.2397766e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_145 = _this; - _this setDir 305; - _this setPos [8375.7773, 2948.3875, 1.2397766e-005]; -}; - -_vehicle_146 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8367.1162, 2949.5178, 2.3841858e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_146 = _this; - _this setDir 25; - _this setPos [8367.1162, 2949.5178, 2.3841858e-005]; -}; - -_vehicle_147 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8369.8916, 2943.7825, 3.7193298e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_147 = _this; - _this setDir 183; - _this setPos [8369.8916, 2943.7825, 3.7193298e-005]; -}; - -_vehicle_148 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8361.9854, 2942.3115, 7.0095062e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_148 = _this; - _this setDir 335; - _this setPos [8361.9854, 2942.3115, 7.0095062e-005]; -}; - -_vehicle_149 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8347.9414, 2962.5781, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_149 = _this; - _this setDir 121; - _this setPos [8347.9414, 2962.5781, 0]; -}; - -_vehicle_150 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8340.4492, 2963.3047, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_150 = _this; - _this setDir 220; - _this setPos [8340.4492, 2963.3047, 1.5258789e-005]; -}; - -_vehicle_151 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8336.4424, 2970.5178, 2.3841858e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_151 = _this; - _this setDir 294; - _this setPos [8336.4424, 2970.5178, 2.3841858e-006]; -}; - -_vehicle_152 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8303.9775, 3002.9829, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_152 = _this; - _this setDir 20; - _this setPos [8303.9775, 3002.9829, -1.5258789e-005]; -}; - -_vehicle_153 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8295.0889, 3008.6887, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_153 = _this; - _this setDir 266; - _this setPos [8295.0889, 3008.6887, 0]; -}; - -_vehicle_154 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8286.6846, 3013.9929, 6.8664551e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_154 = _this; - _this setDir 35; - _this setPos [8286.6846, 3013.9929, 6.8664551e-005]; -}; - -_vehicle_155 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8289.2109, 3006.8022, -4.0054321e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_155 = _this; - _this setDir 78; - _this setPos [8289.2109, 3006.8022, -4.0054321e-005]; -}; - -_vehicle_156 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8285.9736, 2999.3464, -5.9127808e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_156 = _this; - _this setDir 24; - _this setPos [8285.9736, 2999.3464, -5.9127808e-005]; -}; - -_vehicle_157 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8296.8291, 3003.0767, -0.00010871887]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_157 = _this; - _this setDir 230; - _this setPos [8296.8291, 3003.0767, -0.00010871887]; -}; - -_vehicle_158 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8305.9268, 2995.6772, -7.2479248e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_158 = _this; - _this setDir 292; - _this setPos [8305.9268, 2995.6772, -7.2479248e-005]; -}; - -_vehicle_159 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8320.918, 2983.749, 0.00014305115]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_159 = _this; - _this setDir 289; - _this setPos [8320.918, 2983.749, 0.00014305115]; -}; - -_vehicle_160 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8315.5625, 2994.7371, 2.3841858e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_160 = _this; - _this setDir 200; - _this setPos [8315.5625, 2994.7371, 2.3841858e-005]; -}; - -_vehicle_161 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8300.2607, 2998.0469, 4.2915344e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_161 = _this; - _this setDir 113; - _this setPos [8300.2607, 2998.0469, 4.2915344e-005]; -}; - -_vehicle_162 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8292.6846, 2992.8042, 2.4318695e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_162 = _this; - _this setDir 176; - _this setPos [8292.6846, 2992.8042, 2.4318695e-005]; -}; - -_vehicle_163 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8299.4014, 2993.7622, -5.8174133e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_163 = _this; - _this setDir 229; - _this setPos [8299.4014, 2993.7622, -5.8174133e-005]; -}; - -_vehicle_164 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8312.1064, 2990.948, 7.1048737e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_164 = _this; - _this setDir 170; - _this setPos [8312.1064, 2990.948, 7.1048737e-005]; -}; - -_vehicle_165 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8314.5352, 2982.4656, 5.9604645e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_165 = _this; - _this setDir 173; - _this setPos [8314.5352, 2982.4656, 5.9604645e-005]; -}; - -_vehicle_166 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8328.3945, 2977.1936, -3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_166 = _this; - _this setDir 150; - _this setPos [8328.3945, 2977.1936, -3.8146973e-006]; -}; - -_vehicle_167 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8308.7178, 2962.926, -6.1988831e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_167 = _this; - _this setDir -115.64439; - _this setPos [8308.7178, 2962.926, -6.1988831e-006]; -}; - -_vehicle_168 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8329.6055, 2958.5837, 5.7697296e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_168 = _this; - _this setPos [8329.6055, 2958.5837, 5.7697296e-005]; -}; - -_vehicle_169 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8321.1777, 2969.3103, 3.3855438e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_169 = _this; - _this setDir -27.713123; - _this setPos [8321.1777, 2969.3103, 3.3855438e-005]; -}; - -_vehicle_170 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8305.1953, 2984.0193, 4.863739e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_170 = _this; - _this setDir 74.532455; - _this setPos [8305.1953, 2984.0193, 4.863739e-005]; -}; - -_vehicle_171 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8305.6504, 2973.2217, 9.5367432e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_171 = _this; - _this setDir 28.343618; - _this setPos [8305.6504, 2973.2217, 9.5367432e-007]; -}; - -_vehicle_172 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8276.8701, 2996.4805, 2.0980835e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_172 = _this; - _this setPos [8276.8701, 2996.4805, 2.0980835e-005]; -}; - -_vehicle_173 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8287.6826, 2985.7219, -1.335144e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_173 = _this; - _this setDir 153.4949; - _this setPos [8287.6826, 2985.7219, -1.335144e-005]; -}; - -_vehicle_174 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8280.4932, 2990.8032, 3.862381e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_174 = _this; - _this setPos [8280.4932, 2990.8032, 3.862381e-005]; -}; - -_vehicle_175 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8284.2773, 2980.856, 8.72612e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_175 = _this; - _this setPos [8284.2773, 2980.856, 8.72612e-005]; -}; - -_vehicle_176 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8285.3379, 2987.5627, -1.1920929e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_176 = _this; - _this setPos [8285.3379, 2987.5627, -1.1920929e-005]; -}; - -_vehicle_177 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8294.9336, 2985.9783, 6.1988831e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_177 = _this; - _this setPos [8294.9336, 2985.9783, 6.1988831e-006]; -}; - -_vehicle_178 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8303.7754, 2988.4644, 3.2424927e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_178 = _this; - _this setPos [8303.7754, 2988.4644, 3.2424927e-005]; -}; - -_vehicle_179 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8301.6992, 2978.2649, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_179 = _this; - _this setPos [8301.6992, 2978.2649, -1.5258789e-005]; -}; - -_vehicle_180 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8314.9023, 2960.688, 4.2438507e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_180 = _this; - _this setPos [8314.9023, 2960.688, 4.2438507e-005]; -}; - -_vehicle_181 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8325.3506, 2970.9453, 1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_181 = _this; - _this setPos [8325.3506, 2970.9453, 1.9073486e-006]; -}; - -_vehicle_182 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_torzo" createVehicle [8287.334, 2972.6567, -1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_182 = _this; - _this setPos [8287.334, 2972.6567, -1.1444092e-005]; -}; - -_vehicle_183 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8301.0947, 2973.8215, 5.4836273e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_183 = _this; - _this setPos [8301.0947, 2973.8215, 5.4836273e-005]; -}; - -_vehicle_184 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8298.1406, 2980.2729, 6.8187714e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_184 = _this; - _this setPos [8298.1406, 2980.2729, 6.8187714e-005]; -}; - -_vehicle_185 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8280.4492, 2978.7996, 2.0503998e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_185 = _this; - _this setPos [8280.4492, 2978.7996, 2.0503998e-005]; -}; - -_vehicle_186 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8285.4277, 2961.2744, 7.5817108e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_186 = _this; - _this setPos [8285.4277, 2961.2744, 7.5817108e-005]; -}; - -_vehicle_187 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8292.7842, 2953.9924, 5.3405762e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_187 = _this; - _this setPos [8292.7842, 2953.9924, 5.3405762e-005]; -}; - -_vehicle_188 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8324.7568, 2957.9919, 5.0067902e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_188 = _this; - _this setPos [8324.7568, 2957.9919, 5.0067902e-005]; -}; - -_vehicle_189 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8321.5801, 2945.6758, 9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_189 = _this; - _this setPos [8321.5801, 2945.6758, 9.5367432e-006]; -}; - -_vehicle_190 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8315.1777, 2951.6606, 2.7179718e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_190 = _this; - _this setPos [8315.1777, 2951.6606, 2.7179718e-005]; -}; - -_vehicle_191 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8294.6133, 2939.1448, 6.6757202e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_191 = _this; - _this setPos [8294.6133, 2939.1448, 6.6757202e-006]; -}; - -_vehicle_192 = objNull; -if (true) then -{ - _this = "MAP_misc_stub1" createVehicle [8304.9102, 2950.873, 1.0490417e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_192 = _this; - _this setPos [8304.9102, 2950.873, 1.0490417e-005]; -}; - -_vehicle_193 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8293.0889, 2963.2114, -1.3828278e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_193 = _this; - _this setPos [8293.0889, 2963.2114, -1.3828278e-005]; -}; - -_vehicle_194 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8310.7803, 2945.6826, 3.4332275e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_194 = _this; - _this setPos [8310.7803, 2945.6826, 3.4332275e-005]; -}; - -_vehicle_195 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8289.7568, 2946.5486, -2.8610229e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_195 = _this; - _this setPos [8289.7568, 2946.5486, -2.8610229e-005]; -}; - -_vehicle_196 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8276.6553, 2979.6633, -1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_196 = _this; - _this setPos [8276.6553, 2979.6633, -1.1444092e-005]; -}; - -_vehicle_197 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8295.0127, 2977.6084, -1.4781952e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_197 = _this; - _this setPos [8295.0127, 2977.6084, -1.4781952e-005]; -}; - -_vehicle_198 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8312.3926, 2971.4011, 6.6757202e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_198 = _this; - _this setPos [8312.3926, 2971.4011, 6.6757202e-006]; -}; - -_vehicle_199 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8307.585, 2932.189, 7.7724457e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_199 = _this; - _this setPos [8307.585, 2932.189, 7.7724457e-005]; -}; - -_vehicle_200 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8305.8516, 2944.5723, 2.3365021e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_200 = _this; - _this setPos [8305.8516, 2944.5723, 2.3365021e-005]; -}; - -_vehicle_201 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8335.3369, 2955.3474, 1.0967255e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_201 = _this; - _this setPos [8335.3369, 2955.3474, 1.0967255e-005]; -}; - -_vehicle_202 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenSpruce" createVehicle [8282.7041, 2954.906, 3.5762787e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_202 = _this; - _this setDir -34.689266; - _this setPos [8282.7041, 2954.906, 3.5762787e-005]; -}; - -_vehicle_203 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8317.7783, 2938.0107, 0.00010919571]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_203 = _this; - _this setDir -230.14758; - _this setPos [8317.7783, 2938.0107, 0.00010919571]; -}; - -_vehicle_204 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree1" createVehicle [8302.3525, 2951.6304, 8.8214874e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_204 = _this; - _this setPos [8302.3525, 2951.6304, 8.8214874e-005]; -}; - -_vehicle_205 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree1" createVehicle [8340.2559, 2950.5364, -2.3365021e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_205 = _this; - _this setDir 62.629547; - _this setPos [8340.2559, 2950.5364, -2.3365021e-005]; -}; - -_vehicle_206 = objNull; -if (true) then -{ - _this = "MAP_t_pinusN2s" createVehicle [8279.958, 2944.3484, 0.00018405914]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_206 = _this; - _this setDir 147; - _this setPos [8279.958, 2944.3484, 0.00018405914]; -}; - -_vehicle_207 = objNull; -if (true) then -{ - _this = "MAP_t_pinusS2f" createVehicle [8298.5752, 2960.6387, 7.8201294e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_207 = _this; - _this setDir 146; - _this setPos [8298.5752, 2960.6387, 7.8201294e-005]; -}; - -_vehicle_208 = objNull; -if (true) then -{ - _this = "MAP_t_pinusN2s" createVehicle [8309.8828, 2952.9185, 8.5830688e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_208 = _this; - _this setDir 166; - _this setPos [8309.8828, 2952.9185, 8.5830688e-006]; -}; - -_vehicle_209 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8283.8867, 3034.9934, 3.0040741e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_209 = _this; - _this setDir 20.516634; - _this setPos [8283.8867, 3034.9934, 3.0040741e-005]; -}; - -_vehicle_210 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8279.9072, 3021.4434, -5.7220459e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_210 = _this; - _this setDir -57.049; - _this setPos [8279.9072, 3021.4434, -5.7220459e-006]; -}; - -_vehicle_211 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8283.1465, 3026.7241, -1.1920929e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_211 = _this; - _this setPos [8283.1465, 3026.7241, -1.1920929e-005]; -}; - -_vehicle_212 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8282.0889, 3008.4585, 1.4305115e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_212 = _this; - _this setPos [8282.0889, 3008.4585, 1.4305115e-005]; -}; - -_vehicle_213 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8401.6953, 2990.6226, 8.392334e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_213 = _this; - _this setDir 257; - _this setPos [8401.6953, 2990.6226, 8.392334e-005]; -}; - -_vehicle_214 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8409.0508, 2991.2036, 8.3446503e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_214 = _this; - _this setDir 31; - _this setPos [8409.0508, 2991.2036, 8.3446503e-005]; -}; - -_vehicle_215 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8401.6572, 2969.9194, 1.001358e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_215 = _this; - _this setDir 253; - _this setPos [8401.6572, 2969.9194, 1.001358e-005]; -}; - -_vehicle_216 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8405.6064, 2975.8008, 3.2901764e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_216 = _this; - _this setDir 142; - _this setPos [8405.6064, 2975.8008, 3.2901764e-005]; -}; - -_vehicle_217 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8380.9717, 2956.7144, -4.6253204e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_217 = _this; - _this setDir 313; - _this setPos [8380.9717, 2956.7144, -4.6253204e-005]; -}; - -_vehicle_218 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8423.9414, 2990.884, -2.6226044e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_218 = _this; - _this setDir 262; - _this setPos [8423.9414, 2990.884, -2.6226044e-005]; -}; - -_vehicle_219 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8409.1504, 2996.8979, 8.5353851e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_219 = _this; - _this setDir 201; - _this setPos [8409.1504, 2996.8979, 8.5353851e-005]; -}; - -_vehicle_220 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8413.1396, 2986.2559, 0.00010299683]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_220 = _this; - _this setDir 135; - _this setPos [8413.1396, 2986.2559, 0.00010299683]; -}; - -_vehicle_224 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8370.7031, 2965.468, 4.8160553e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_224 = _this; - _this setDir 40.217995; - _this setPos [8370.7031, 2965.468, 4.8160553e-005]; -}; - -_vehicle_225 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8368.3105, 2962.6553, 1.0967255e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_225 = _this; - _this setDir 40.427708; - _this setPos [8368.3105, 2962.6553, 1.0967255e-005]; -}; - -_vehicle_226 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8366.2031, 2959.9905, 6.6757202e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_226 = _this; - _this setDir 39.187256; - _this setPos [8366.2031, 2959.9905, 6.6757202e-006]; -}; - -_vehicle_227 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8364.0918, 2957.2773, 3.0994415e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_227 = _this; - _this setDir -142.82565; - _this setPos [8364.0918, 2957.2773, 3.0994415e-005]; -}; - -_vehicle_229 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8381.2871, 2977.698, 0.00010204315]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_229 = _this; - _this setDir 41.777649; - _this setPos [8381.2871, 2977.698, 0.00010204315]; -}; - -_vehicle_230 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8388.7539, 2986.158, 1.8119812e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_230 = _this; - _this setDir 40.972614; - _this setPos [8388.7539, 2986.158, 1.8119812e-005]; -}; - -_vehicle_231 = objNull; -if (true) then -{ - _this = "MAP_mud_1_1000" createVehicle [8397.0215, 2995.2275, -9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_231 = _this; - _this setDir 222.24431; - _this setPos [8397.0215, 2995.2275, -9.5367432e-006]; -}; - -_vehicle_232 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [8364.8926, 2958.3679, 2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_232 = _this; - _this setDir 206.49825; - _this setPos [8364.8926, 2958.3679, 2.2888184e-005]; -}; - -_vehicle_234 = objNull; -if (true) then -{ - _this = "MAP_Bridge_wood_25" createVehicle [8417.5791, 3014.366, 8.0108643e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_234 = _this; - _this setDir 52.510834; - _this setPos [8417.5791, 3014.366, 8.0108643e-005]; -}; - -_vehicle_237 = objNull; -if (true) then -{ - _this = "MAP_misc_amplion_conc" createVehicle [8435.1533, 3011.5964, -4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_237 = _this; - _this setDir -63.011841; - _this setPos [8435.1533, 3011.5964, -4.7683716e-006]; -}; - -_vehicle_240 = objNull; -if (true) then -{ - _this = "MAP_water_tank" createVehicle [8421.3223, 3032.6646, 3.4332275e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_240 = _this; - _this setDir 51.929375; - _this setPos [8421.3223, 3032.6646, 3.4332275e-005]; -}; - -_vehicle_242 = objNull; -if (true) then -{ - _this = "Land_Misc_Garb_Heap_EP1" createVehicle [8400.2666, 3007.6792, -1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_242 = _this; - _this setPos [8400.2666, 3007.6792, -1.9073486e-006]; -}; - -_vehicle_243 = objNull; -if (true) then -{ - _this = "Paleta2" createVehicle [8408.5156, 3004.8831, 5.1498413e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_243 = _this; - _this setDir 40.142441; - _this setPos [8408.5156, 3004.8831, 5.1498413e-005]; -}; - -_vehicle_244 = objNull; -if (true) then -{ - _this = "Land_wagon_box" createVehicle [8427.4453, 3014.2915, 1.9073486e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_244 = _this; - _this setDir -46.225819; - _this setPos [8427.4453, 3014.2915, 1.9073486e-005]; -}; - -_vehicle_245 = objNull; -if (true) then -{ - _this = "Land_wagon_flat" createVehicle [8418.6025, 3025.5176, 2.0980835e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_245 = _this; - _this setDir -36.269791; - _this setPos [8418.6025, 3025.5176, 2.0980835e-005]; -}; - -_vehicle_246 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8401.165, 3001.8022, 4.7683716e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_246 = _this; - _this setDir -20.193249; - _this setPos [8401.165, 3001.8022, 4.7683716e-005]; -}; - -_vehicle_247 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8415.9873, 3002.2751, 9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_247 = _this; - _this setDir -52.854927; - _this setPos [8415.9873, 3002.2751, 9.5367432e-006]; -}; - -_vehicle_248 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8424.749, 3029.0032, 5.1498413e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_248 = _this; - _this setDir -7.4567342; - _this setPos [8424.749, 3029.0032, 5.1498413e-005]; -}; - -_vehicle_249 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8389.2402, 2995.793, 6.3896179e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_249 = _this; - _this setDir 46.922226; - _this setPos [8389.2402, 2995.793, 6.3896179e-005]; -}; - -_vehicle_250 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8384.1514, 2996.1873, 5.1498413e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_250 = _this; - _this setDir 46.041183; - _this setPos [8384.1514, 2996.1873, 5.1498413e-005]; -}; - -_vehicle_251 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8326.5742, 2946.2173, 1.5735626e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_251 = _this; - _this setPos [8326.5742, 2946.2173, 1.5735626e-005]; -}; - -_vehicle_252 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8329.6514, 2945.1521, 6.4849854e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_252 = _this; - _this setPos [8329.6514, 2945.1521, 6.4849854e-005]; -}; - -_vehicle_253 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8362.4014, 2962.5095, 5.7220459e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_253 = _this; - _this setDir 24.539591; - _this setPos [8362.4014, 2962.5095, 5.7220459e-006]; -}; - -_vehicle_254 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8383.4258, 2967.2837, -2.8610229e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_254 = _this; - _this setDir 94.059364; - _this setPos [8383.4258, 2967.2837, -2.8610229e-006]; -}; - -_vehicle_255 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [8416.9551, 3027.416, 1.0228133]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_255 = _this; - _this setDir -29.920446; - _this setPos [8416.9551, 3027.416, 1.0228133]; -}; - -_vehicle_256 = objNull; -if (true) then -{ - _this = "hiluxWreck" createVehicle [8401.8008, 3018.0676, 4.9114227e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_256 = _this; - _this setDir 125.64024; - _this setPos [8401.8008, 3018.0676, 4.9114227e-005]; -}; - -_vehicle_257 = objNull; -if (true) then -{ - _this = "Rubbish5" createVehicle [8378.0508, 2980.5146, 4.9591064e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_257 = _this; - _this setDir 113.91769; - _this setPos [8378.0508, 2980.5146, 4.9591064e-005]; -}; - -_vehicle_258 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8417.084, 2993.4719, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_258 = _this; - _this setDir 288; - _this setPos [8417.084, 2993.4719, -3.0517578e-005]; -}; - -_vehicle_260 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8427.498, 2984.3269, 9.5367432e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_260 = _this; - _this setDir 3; - _this setPos [8427.498, 2984.3269, 9.5367432e-007]; -}; - -_vehicle_261 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8437.1299, 2987.5686]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_261 = _this; - _this setDir 176; - _this setPos [8437.1299, 2987.5686]; -}; - -_vehicle_262 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8456.7568, 2998.8474, 5.3405762e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_262 = _this; - _this setDir 209; - _this setPos [8456.7568, 2998.8474, 5.3405762e-005]; -}; - -_vehicle_263 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8436.2773, 3035.072, 2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_263 = _this; - _this setDir 1; - _this setPos [8436.2773, 3035.072, 2.2888184e-005]; -}; - -_vehicle_264 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8446.9883, 3008.3667, -2.2888184e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_264 = _this; - _this setDir 48; - _this setPos [8446.9883, 3008.3667, -2.2888184e-005]; -}; - -_vehicle_265 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8452.5615, 3004.6616, 0.00011444092]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_265 = _this; - _this setDir 331; - _this setPos [8452.5615, 3004.6616, 0.00011444092]; -}; - -_vehicle_266 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8454.0234, 3012.1646, 2.4795532e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_266 = _this; - _this setDir 287; - _this setPos [8454.0234, 3012.1646, 2.4795532e-005]; -}; - -_vehicle_267 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8442.9961, 3015.2117, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_267 = _this; - _this setDir 207; - _this setPos [8442.9961, 3015.2117, 6.1035156e-005]; -}; - -_vehicle_268 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8450.6543, 3017.989, 5.1021576e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_268 = _this; - _this setDir 61; - _this setPos [8450.6543, 3017.989, 5.1021576e-005]; -}; - -_vehicle_269 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8441.0146, 3023.2188, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_269 = _this; - _this setDir 263; - _this setPos [8441.0146, 3023.2188, 7.6293945e-006]; -}; - -_vehicle_270 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8448.0107, 3025.5442, -2.0503998e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_270 = _this; - _this setDir 334; - _this setPos [8448.0107, 3025.5442, -2.0503998e-005]; -}; - -_vehicle_271 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8433.2979, 3026.9541, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_271 = _this; - _this setDir 66; - _this setPos [8433.2979, 3026.9541, 3.0517578e-005]; -}; - -_vehicle_272 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8441.0244, 3029.4443, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_272 = _this; - _this setDir 2; - _this setPos [8441.0244, 3029.4443, 7.6293945e-006]; -}; - -_vehicle_273 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8430.1992, 3033.8435, 6.4849854e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_273 = _this; - _this setDir 2; - _this setPos [8430.1992, 3033.8435, 6.4849854e-005]; -}; - -_vehicle_274 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8419.1426, 3059.0906, -1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_274 = _this; - _this setDir 119; - _this setPos [8419.1426, 3059.0906, -1.1444092e-005]; -}; - -_vehicle_275 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8424.625, 3043.1777, 6.4849854e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_275 = _this; - _this setDir 81; - _this setPos [8424.625, 3043.1777, 6.4849854e-005]; -}; - -_vehicle_276 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8417.5146, 3051.2515, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_276 = _this; - _this setDir 151; - _this setPos [8417.5146, 3051.2515, 1.5258789e-005]; -}; - -_vehicle_277 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8410.8203, 3059.9736]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_277 = _this; - _this setDir 118; - _this setPos [8410.8203, 3059.9736]; -}; - -_vehicle_278 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8432.2041, 3040.6638, 8.392334e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_278 = _this; - _this setDir 44; - _this setPos [8432.2041, 3040.6638, 8.392334e-005]; -}; - -_vehicle_279 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8426.5137, 3049.4243, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_279 = _this; - _this setDir 282; - _this setPos [8426.5137, 3049.4243, -4.5776367e-005]; -}; - -_vehicle_280 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8413.7217, 3066.7048, 0.00011825562]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_280 = _this; - _this setDir 10; - _this setPos [8413.7217, 3066.7048, 0.00011825562]; -}; - -_vehicle_281 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8406.4219, 3065.9163, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_281 = _this; - _this setDir 146; - _this setPos [8406.4219, 3065.9163, 3.0517578e-005]; -}; - -_vehicle_282 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8408.5361, 3072.5942, 9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_282 = _this; - _this setDir 288; - _this setPos [8408.5361, 3072.5942, 9.5367432e-006]; -}; - -_vehicle_283 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8400.2539, 3076.9885, 2.7179718e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_283 = _this; - _this setDir 55; - _this setPos [8400.2539, 3076.9885, 2.7179718e-005]; -}; - -_vehicle_284 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8391.3232, 3084.3982, -4.2915344e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_284 = _this; - _this setDir 10; - _this setPos [8391.3232, 3084.3982, -4.2915344e-005]; -}; - -_vehicle_285 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8383.3066, 3098.0303, 8.2969666e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_285 = _this; - _this setDir 288; - _this setPos [8383.3066, 3098.0303, 8.2969666e-005]; -}; - -_vehicle_286 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8399.1299, 3083.8225, 3.528595e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_286 = _this; - _this setDir 281; - _this setPos [8399.1299, 3083.8225, 3.528595e-005]; -}; - -_vehicle_287 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8406.8311, 3080.1453, 4.196167e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_287 = _this; - _this setDir 340; - _this setPos [8406.8311, 3080.1453, 4.196167e-005]; -}; - -_vehicle_288 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8412.2031, 3077.0642, 6.9141388e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_288 = _this; - _this setDir 18; - _this setPos [8412.2031, 3077.0642, 6.9141388e-005]; -}; - -_vehicle_289 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8417.9033, 3072.4709, 7.6770782e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_289 = _this; - _this setDir 33; - _this setPos [8417.9033, 3072.4709, 7.6770782e-005]; -}; - -_vehicle_290 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8419.8535, 3065.4844, 3.4809113e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_290 = _this; - _this setDir 256; - _this setPos [8419.8535, 3065.4844, 3.4809113e-005]; -}; - -_vehicle_291 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8424.0869, 3055.2808, 7.8201294e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_291 = _this; - _this setDir 58; - _this setPos [8424.0869, 3055.2808, 7.8201294e-005]; -}; - -_vehicle_292 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8432.6006, 3051.8193, 0.0001335144]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_292 = _this; - _this setDir 199; - _this setPos [8432.6006, 3051.8193, 0.0001335144]; -}; - -_vehicle_293 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8436.4619, 3044.8909, 4.7683716e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_293 = _this; - _this setDir 267; - _this setPos [8436.4619, 3044.8909, 4.7683716e-005]; -}; - -_vehicle_294 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8365.5781, 3029.8196, -3.528595e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_294 = _this; - _this setDir 248; - _this setPos [8365.5781, 3029.8196, -3.528595e-005]; -}; - -_vehicle_295 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8357.7012, 3045.5706, 0.00010538101]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_295 = _this; - _this setDir 238; - _this setPos [8357.7012, 3045.5706, 0.00010538101]; -}; - -_vehicle_296 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8456.2334, 3026.4829, 8.8691711e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_296 = _this; - _this setDir 179; - _this setPos [8456.2334, 3026.4829, 8.8691711e-005]; -}; - -_vehicle_297 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8440.8027, 3034.7241, 5.9604645e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_297 = _this; - _this setDir 179; - _this setPos [8440.8027, 3034.7241, 5.9604645e-005]; -}; - -_vehicle_298 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8423.6309, 3061.4885, -1.0490417e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_298 = _this; - _this setDir 260; - _this setPos [8423.6309, 3061.4885, -1.0490417e-005]; -}; - -_vehicle_299 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8443.1475, 3069.2668, 2.0980835e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_299 = _this; - _this setDir 339; - _this setPos [8443.1475, 3069.2668, 2.0980835e-005]; -}; - -_vehicle_300 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8455.7139, 3054.2495, -5.0067902e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_300 = _this; - _this setDir 114; - _this setPos [8455.7139, 3054.2495, -5.0067902e-005]; -}; - -_vehicle_301 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8393.4199, 3090.4524, 5.3882599e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_301 = _this; - _this setDir 26; - _this setPos [8393.4199, 3090.4524, 5.3882599e-005]; -}; - -_vehicle_302 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8429.4688, 3077.0176, 5.9127808e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_302 = _this; - _this setDir 23; - _this setPos [8429.4688, 3077.0176, 5.9127808e-005]; -}; - -_vehicle_303 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8427.0361, 3063.1487, 3.3378601e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_303 = _this; - _this setDir 64; - _this setPos [8427.0361, 3063.1487, 3.3378601e-005]; -}; - -_vehicle_304 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8425.3262, 3072.4617, 8.5830688e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_304 = _this; - _this setDir 133; - _this setPos [8425.3262, 3072.4617, 8.5830688e-005]; -}; - -_vehicle_305 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8418.6943, 3078.0684, 6.9141388e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_305 = _this; - _this setDir 161; - _this setPos [8418.6943, 3078.0684, 6.9141388e-005]; -}; - -_vehicle_306 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8435.8311, 3061.2158, 0.00018978119]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_306 = _this; - _this setDir 82; - _this setPos [8435.8311, 3061.2158, 0.00018978119]; -}; - -_vehicle_307 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8434.9258, 3067.2559, 4.529953e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_307 = _this; - _this setDir 316; - _this setPos [8434.9258, 3067.2559, 4.529953e-005]; -}; - -_vehicle_308 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8436.8711, 3072.6721, 2.7656555e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_308 = _this; - _this setDir 146; - _this setPos [8436.8711, 3072.6721, 2.7656555e-005]; -}; - -_vehicle_309 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8430.041, 3057.2034, 0.00010204315]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_309 = _this; - _this setDir 36; - _this setPos [8430.041, 3057.2034, 0.00010204315]; -}; - -_vehicle_310 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8444.2383, 3050.7751, 1.0967255e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_310 = _this; - _this setDir 323; - _this setPos [8444.2383, 3050.7751, 1.0967255e-005]; -}; - -_vehicle_311 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8438.6426, 3054.5854, 0.00018692017]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_311 = _this; - _this setDir 250; - _this setPos [8438.6426, 3054.5854, 0.00018692017]; -}; - -_vehicle_312 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8443.9072, 3059.0181, 2.7179718e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_312 = _this; - _this setDir 273; - _this setPos [8443.9072, 3059.0181, 2.7179718e-005]; -}; - -_vehicle_313 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8440.0342, 3040.0193, 0.00021648407]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_313 = _this; - _this setDir 312; - _this setPos [8440.0342, 3040.0193, 0.00021648407]; -}; - -_vehicle_314 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8446.4463, 3033.7573, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_314 = _this; - _this setDir 345; - _this setPos [8446.4463, 3033.7573, 9.1552734e-005]; -}; - -_vehicle_315 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8447.6875, 3042.0986, 8.4877014e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_315 = _this; - _this setDir 57; - _this setPos [8447.6875, 3042.0986, 8.4877014e-005]; -}; - -_vehicle_316 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8386.6631, 3027.2332, 3.8146973e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_316 = _this; - _this setDir 87; - _this setPos [8386.6631, 3027.2332, 3.8146973e-005]; -}; - -_vehicle_317 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8422.7158, 3095.7778, -7.1525574e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_317 = _this; - _this setDir 147; - _this setPos [8422.7158, 3095.7778, -7.1525574e-006]; -}; - -_vehicle_318 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8419.2871, 3087.8433, -5.9127808e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_318 = _this; - _this setDir 135; - _this setPos [8419.2871, 3087.8433, -5.9127808e-005]; -}; - -_vehicle_319 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8412.166, 3089.3064, 0.00016021729]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_319 = _this; - _this setDir 144; - _this setPos [8412.166, 3089.3064, 0.00016021729]; -}; - -_vehicle_320 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8412.5156, 3100.55, 9.5844269e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_320 = _this; - _this setDir 355; - _this setPos [8412.5156, 3100.55, 9.5844269e-005]; -}; - -_vehicle_321 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8406.8047, 3094.6409, 8.0108643e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_321 = _this; - _this setDir 120; - _this setPos [8406.8047, 3094.6409, 8.0108643e-005]; -}; - -_vehicle_322 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8429.9658, 3086.6838, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_322 = _this; - _this setDir 249; - _this setPos [8429.9658, 3086.6838, 0.00012207031]; -}; - -_vehicle_323 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8440.6387, 3083.418, -3.9577484e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_323 = _this; - _this setDir 71; - _this setPos [8440.6387, 3083.418, -3.9577484e-005]; -}; - -_vehicle_324 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8452.0293, 3061.7297, 0.00011873245]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_324 = _this; - _this setDir 265; - _this setPos [8452.0293, 3061.7297, 0.00011873245]; -}; - -_vehicle_325 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8455.0283, 3047.6245, 4.1007996e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_325 = _this; - _this setDir 198; - _this setPos [8455.0283, 3047.6245, 4.1007996e-005]; -}; - -_vehicle_326 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8460.9795, 3037.2439, 9.059906e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_326 = _this; - _this setDir 119; - _this setPos [8460.9795, 3037.2439, 9.059906e-006]; -}; - -_vehicle_327 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8460.9971, 3015.7375, 1.9550323e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_327 = _this; - _this setDir 284; - _this setPos [8460.9971, 3015.7375, 1.9550323e-005]; -}; - -_vehicle_328 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8469.1123, 3066.8022, -3.1471252e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_328 = _this; - _this setDir 95; - _this setPos [8469.1123, 3066.8022, -3.1471252e-005]; -}; - -_vehicle_329 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8463.2588, 3084.8928, -3.2424927e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_329 = _this; - _this setDir 145; - _this setPos [8463.2588, 3084.8928, -3.2424927e-005]; -}; - -_vehicle_330 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8488.3633, 3060.9043, 9.059906e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_330 = _this; - _this setDir 353; - _this setPos [8488.3633, 3060.9043, 9.059906e-005]; -}; - -_vehicle_331 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8316.9961, 3054.3247, -9.5367432e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_331 = _this; - _this setDir -59.871033; - _this setPos [8316.9961, 3054.3247, -9.5367432e-007]; -}; - -_vehicle_332 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8309.0459, 3053.2366, 1.5735626e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_332 = _this; - _this setDir 109.07998; - _this setPos [8309.0459, 3053.2366, 1.5735626e-005]; -}; - -_vehicle_333 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8347.3594, 3073.9495, 5.531311e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_333 = _this; - _this setPos [8347.3594, 3073.9495, 5.531311e-005]; -}; - -_vehicle_334 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [8332.7568, 3073.3149, 0.00013208389]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_334 = _this; - _this setDir -87.67424; - _this setPos [8332.7568, 3073.3149, 0.00013208389]; -}; - -_vehicle_335 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree1" createVehicle [8334.5889, 3063.1741, 1.8596649e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_335 = _this; - _this setPos [8334.5889, 3063.1741, 1.8596649e-005]; -}; - -_vehicle_336 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8341.8848, 3068.8845, 1.9550323e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_336 = _this; - _this setPos [8341.8848, 3068.8845, 1.9550323e-005]; -}; - -_vehicle_337 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8340.3555, 3061.8494, -1.6212463e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_337 = _this; - _this setPos [8340.3555, 3061.8494, -1.6212463e-005]; -}; - -_vehicle_338 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8323.4219, 3057.5264, -9.4413757e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_338 = _this; - _this setPos [8323.4219, 3057.5264, -9.4413757e-005]; -}; - -_vehicle_339 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [8304.6895, 3052.3745, -1.3828278e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_339 = _this; - _this setPos [8304.6895, 3052.3745, -1.3828278e-005]; -}; - -_vehicle_342 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenSpruce" createVehicle [8325.7637, 3062.7468, 3.6716461e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_342 = _this; - _this setDir -61.213089; - _this setPos [8325.7637, 3062.7468, 3.6716461e-005]; -}; - -_vehicle_343 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenSpruce" createVehicle [8337.4092, 3078.6479, 3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_343 = _this; - _this setDir 62.961388; - _this setPos [8337.4092, 3078.6479, 3.8146973e-006]; -}; - -_vehicle_344 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8318.9414, 3062.6328, -4.7683716e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_344 = _this; - _this setPos [8318.9414, 3062.6328, -4.7683716e-007]; -}; - -_vehicle_345 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8353.7295, 3073.917, 7.7724457e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_345 = _this; - _this setPos [8353.7295, 3073.917, 7.7724457e-005]; -}; - -_vehicle_346 = objNull; -if (true) then -{ - _this = "MAP_Misc_trunk_water" createVehicle [8396.8096, 3097.7349, -0.00012350082]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_346 = _this; - _this setPos [8396.8096, 3097.7349, -0.00012350082]; -}; - -_vehicle_347 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8379.2881, 2943.2876, 5.9604645e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_347 = _this; - _this setDir 141; - _this setPos [8379.2881, 2943.2876, 5.9604645e-005]; -}; - -_vehicle_348 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8402.6006, 2963.0427, 1.4305115e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_348 = _this; - _this setDir 352; - _this setPos [8402.6006, 2963.0427, 1.4305115e-006]; -}; - -_vehicle_349 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8408.7686, 2968.7222, -6.6757202e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_349 = _this; - _this setDir 200; - _this setPos [8408.7686, 2968.7222, -6.6757202e-006]; -}; - -_vehicle_350 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8412.8701, 2974.814, 3.8146973e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_350 = _this; - _this setDir 277; - _this setPos [8412.8701, 2974.814, 3.8146973e-005]; -}; - -_vehicle_351 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8419.6445, 2984.4836, -5.865097e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_351 = _this; - _this setDir 118; - _this setPos [8419.6445, 2984.4836, -5.865097e-005]; -}; - -_vehicle_352 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8418.1465, 2967.4158, 5.1498413e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_352 = _this; - _this setDir 325; - _this setPos [8418.1465, 2967.4158, 5.1498413e-005]; -}; - -_vehicle_353 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8423.1826, 2975.532, 7.8678131e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_353 = _this; - _this setDir 290; - _this setPos [8423.1826, 2975.532, 7.8678131e-005]; -}; - -_vehicle_354 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8434.3164, 2981.2061, 1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_354 = _this; - _this setDir 350; - _this setPos [8434.3164, 2981.2061, 1.1444092e-005]; -}; - -_vehicle_355 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8434.2383, 2973.7041, 5.6743622e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_355 = _this; - _this setDir 61; - _this setPos [8434.2383, 2973.7041, 5.6743622e-005]; -}; - -_vehicle_356 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8462.2373, 2993.4438, 1.9073486e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_356 = _this; - _this setDir 182; - _this setPos [8462.2373, 2993.4438, 1.9073486e-005]; -}; - -_vehicle_357 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8468.6104, 3002.999, 0.00012254715]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_357 = _this; - _this setDir 86; - _this setPos [8468.6104, 3002.999, 0.00012254715]; -}; - -_vehicle_358 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8474.6387, 3015.1104, -1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_358 = _this; - _this setDir 172; - _this setPos [8474.6387, 3015.1104, -1.1444092e-005]; -}; - -_vehicle_359 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8492.4893, 3023.271, -4.2915344e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_359 = _this; - _this setDir 140; - _this setPos [8492.4893, 3023.271, -4.2915344e-005]; -}; - -_vehicle_360 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8459.9004, 3006.7383, 1.9073486e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_360 = _this; - _this setDir 53; - _this setPos [8459.9004, 3006.7383, 1.9073486e-005]; -}; - -_vehicle_361 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8482.5283, 3083.5828, 6.1511993e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_361 = _this; - _this setDir 141; - _this setPos [8482.5283, 3083.5828, 6.1511993e-005]; -}; - -_vehicle_362 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8493.5303, 3071.3372, 0.00012874603]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_362 = _this; - _this setDir 101; - _this setPos [8493.5303, 3071.3372, 0.00012874603]; -}; - -_vehicle_363 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8506.0596, 3083.8203, 0.00031280518]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_363 = _this; - _this setDir 121; - _this setPos [8506.0596, 3083.8203, 0.00031280518]; -}; - -_vehicle_364 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8524.1426, 3067.0916, 0.00032711029]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_364 = _this; - _this setDir 44; - _this setPos [8524.1426, 3067.0916, 0.00032711029]; -}; - -_vehicle_365 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [8505.0586, 3062.7087, -8.392334e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_365 = _this; - _this setDir 123; - _this setPos [8505.0586, 3062.7087, -8.392334e-005]; -}; - -_vehicle_366 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8359.4141, 2966.259, 4.6730042e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_366 = _this; - _this setDir 239; - _this setPos [8359.4141, 2966.259, 4.6730042e-005]; -}; - -_vehicle_367 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8352.4424, 2955.355, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_367 = _this; - _this setDir 198; - _this setPos [8352.4424, 2955.355, 9.1552734e-005]; -}; - -_vehicle_368 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8357.7129, 2959.4402, -1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_368 = _this; - _this setDir 180; - _this setPos [8357.7129, 2959.4402, -1.9073486e-006]; -}; - -_vehicle_369 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8365.9404, 2969.804, 3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_369 = _this; - _this setDir 334; - _this setPos [8365.9404, 2969.804, 3.8146973e-006]; -}; - -_vehicle_370 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8377.6309, 2986.512, 1.6212463e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_370 = _this; - _this setDir 330; - _this setPos [8377.6309, 2986.512, 1.6212463e-005]; -}; - -_vehicle_371 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8388.0713, 3001.0593, -1.2397766e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_371 = _this; - _this setDir 280; - _this setPos [8388.0713, 3001.0593, -1.2397766e-005]; -}; - -_vehicle_372 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [8393.7432, 3004.4409, 2.3841858e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_372 = _this; - _this setDir 108; - _this setPos [8393.7432, 3004.4409, 2.3841858e-006]; -}; - -_vehicle_373 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [8308.5449, 3040.8059, 2.4318695e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_373 = _this; - _this setDir -30.494673; - _this setPos [8308.5449, 3040.8059, 2.4318695e-005]; -}; - -_vehicle_374 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [8306.4453, 3040.2815, -6.0081482e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_374 = _this; - _this setPos [8306.4453, 3040.2815, -6.0081482e-005]; -}; - -_vehicle_375 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [8312.5654, 3036.915, -5.0544739e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_375 = _this; - _this setDir 72.53389; - _this setPos [8312.5654, 3036.915, -5.0544739e-005]; -}; - -_vehicle_376 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [8306.9395, 3036.6416, -3.3378601e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_376 = _this; - _this setPos [8306.9395, 3036.6416, -3.3378601e-006]; -}; - -_vehicle_377 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [8300.5029, 3044.5349, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_377 = _this; - _this setPos [8300.5029, 3044.5349, 0]; -}; - -_vehicle_378 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [8295.9268, 3044.8689, 1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_378 = _this; - _this setDir -132.61189; - _this setPos [8295.9268, 3044.8689, 1.9073486e-006]; -}; - -_vehicle_397 = objNull; -if (true) then -{ - _this = "BRDMWreck" createVehicle [8295.1846, 3038.5232, 2.3365021e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_397 = _this; - _this setDir -69.078674; - _this setPos [8295.1846, 3038.5232, 2.3365021e-005]; -}; - -_vehicle_399 = objNull; -if (true) then -{ - _this = "Land_Ind_Workshop01_01" createVehicle [8398.0586, 3012.748, 1.2397766e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_399 = _this; - _this setDir 98.278824; - _this setPos [8398.0586, 3012.748, 1.2397766e-005]; -}; +[[ + ["MAP_t_picea2s",[8374.1084,2992.9797,-1.3828278e-005],27], + ["MAP_t_picea2s",[8367.4912,2999.4746,1.4305115e-006],115], + ["MAP_t_picea2s",[8375.5654,3002.9851,3.7193298e-005],104], + ["MAP_t_picea3f",[8368.1514,3006.0754,-1.3828278e-005],182], + ["MAP_t_picea2s",[8360.3105,3007.457,-1.1920929e-005],341], + ["MAP_t_picea2s",[8324.2432,3006.7075,4.1484833e-005],256], + ["MAP_t_picea2s",[8335.7236,2997.5403,9.5844269e-005],92], + ["MAP_t_picea2s",[8342.4678,2991.863,0.00016832352],205], + ["MAP_t_picea2s",[8349.3223,2984.667,5.0544739e-005],213], + ["MAP_t_picea3f",[8329.9922,3000.8005,3.0994415e-005],127], + ["MAP_t_picea3f",[8344.3652,3026.6082,5.2452087e-006],255], + ["MAP_t_picea2s",[8325.8652,2998.8228,-0.00013780594],345], + ["MAP_t_picea2s",[8349.2969,3014.9563,-9.5367432e-006],194], + ["MAP_t_picea2s",[8356.1709,3013.1833,4.7683716e-005],335], + ["MAP_t_picea2s",[8365.8193,3010.967,-2.2411346e-005],41], + ["MAP_t_picea2s",[8372.5146,3010.2739,-1.001358e-005],287], + ["MAP_t_picea2s",[8339.6162,3024.0161,-5.2452087e-006],38], + ["MAP_t_picea2s",[8349.6475,3022.1182,2.5272369e-005],92], + ["MAP_t_picea3f",[8354.3623,3019.4683,-2.6226044e-005],80], + ["MAP_t_picea2s",[8334.9004,2990.9661,4.7683716e-006],86], + ["MAP_t_picea1s",[8330.7646,2995.2581,5.2452087e-006],290], + ["MAP_t_picea1s",[8319.6641,3010.3237,3.6239624e-005],143], + ["MAP_t_picea2s",[8342.0684,2985.0317,-7.8678131e-005],291], + ["MAP_t_picea2s",[8335.4746,2983.8818,1.9550323e-005],307], + ["MAP_t_picea2s",[8354.9092,2979.2861,9.059906e-006],281], + ["MAP_t_picea2s",[8345.6475,2977.5107,-1.9073486e-005],47], + ["MAP_t_picea2s",[8337.1436,2976.5764,3.3855438e-005],256], + ["MAP_t_picea2s",[8331.9688,3028.6682,5.3882599e-005],189], + ["MAP_t_picea2s",[8326.0078,3034.9595,-8.5830688e-006],219], + ["MAP_t_picea2s",[8320.1416,3038.6501,-0.00011301041],27], + ["MAP_t_picea2s",[8311.3613,3018.5193,-5.9127808e-005],209], + ["MAP_t_picea2s",[8304.54,3023.0964,4.9114227e-005],312], + ["MAP_t_picea2s",[8315.1924,3011.3325,5.0544739e-005],352], + ["MAP_t_picea2s",[8318.0791,3004.4722,4.5776367e-005],129], + ["MAP_t_picea2s",[8308.5615,3012.7195,6.6757202e-005],8], + ["MAP_t_picea2s",[8301.3828,3017.0095,1.5258789e-005],233], + ["MAP_t_picea2s",[8332.458,3036.3906,0.00010156631],34], + ["MAP_t_picea2s",[8339.2764,3030.8428,1.5735626e-005],252], + ["MAP_t_picea2s",[8347.2959,3028.9395,2.2888184e-005],17], + ["MAP_t_picea2s",[8343.8115,3018.7363,5.7697296e-005],251], + ["MAP_t_picea2s",[8357.4756,3019.6348,3.194809e-005],279], + ["MAP_t_picea2s",[8361.1982,3002.3828,9.5367432e-007],79], + ["MAP_t_picea2s",[8380.084,2998.1199,3.9577484e-005],1], + ["MAP_t_picea2s",[8327.6084,2990.6194,4.3392181e-005],98], + ["MAP_t_picea2s",[8320.4727,2996.5691,4.7683716e-005],227], + ["MAP_t_picea2s",[8311.2236,3005.0393,-4.7683716e-006],148], + ["MAP_t_picea2s",[8290.1934,3036.1836,1.335144e-005],145], + ["MAP_t_picea2s",[8295.7578,3029.7461,5.2452087e-006],324], + ["MAP_t_picea2s",[8289.0322,3028.5151,1.6689301e-005],286], + ["MAP_t_picea2s",[8302.0781,3027.2917,2.2411346e-005],16], + ["MAP_t_picea2s",[8296.7686,3023.0215,0.00012397766],127], + ["MAP_t_picea2s",[8302.3252,3009.8862,0.00016593933],49], + ["MAP_t_picea2s",[8295.3916,3015.5476,9.5367432e-006],16], + ["MAP_t_picea2s",[8289.8447,3020.5537,0.00014352798],341], + ["MAP_t_picea2s",[8312.9014,2998.6064,5.1498413e-005],157], + ["MAP_t_picea2s",[8320.5898,2990.0151,5.0544739e-005],274], + ["MAP_t_picea2s",[8327.5713,2984.302,-2.1457672e-005],128], + ["MAP_t_picea2s",[8343.2061,2970.5376,7.0095062e-005],342], + ["MAP_t_picea2s",[8351.3672,2972.5308,3.4332275e-005],107], + ["MAP_t_picea2s",[8360.6699,2974.8535,7.6293945e-006],133], + ["MAP_t_picea2s",[8313.5166,3042.1011,2.5272369e-005],61], + ["MAP_t_picea2s",[8319.6191,3044.9377,-4.0054321e-005],151], + ["MAP_t_picea2s",[8363.4619,3015.9182,4.7683716e-006],116], + ["MAP_t_picea3f",[8353.6533,3026.426,6.7710876e-005],136], + ["MAP_t_picea3f",[8325.6875,3040.1899,1.6689301e-005],336], + ["MAP_t_picea3f",[8332.8477,2978.8247,6.3419342e-005],55], + ["MAP_t_picea3f",[8351.9277,3047.147,-5.3405762e-005],16], + ["MAP_t_picea3f",[8387.9004,3031.4431,-1.5735626e-005],311], + ["MAP_t_picea3f",[8335.2236,3055.9009,-4.9591064e-005],258], + ["MAP_t_picea3f",[8358.5244,3062.5132,4.0054321e-005],225], + ["MAP_t_picea3f",[8370.6104,3039.8354,2.0503998e-005],100], + ["MAP_t_picea3f",[8387.2168,3005.4438,1.1920929e-005],297], + ["MAP_t_picea3f",[8376.6631,3056.2424,5.0067902e-005],335], + ["MAP_t_picea3f",[8372.0146,3029.3923,1.0490417e-005],286], + ["MAP_t_picea2s",[8381.874,3006.4099,3.1471252e-005],28], + ["MAP_t_picea2s",[8379.0771,3012.7131,-0.00017309189],257], + ["MAP_t_picea2s",[8369.5684,3016.3491,5.7220459e-006],165], + ["MAP_t_picea2s",[8375.6934,3018.9282,5.5789948e-005],343], + ["MAP_t_picea2s",[8359.1016,3027.2422,9.059906e-006],356], + ["MAP_t_picea2s",[8369.6035,3024.0635,2.2888184e-005],134], + ["MAP_t_picea2s",[8341.2939,3054.1707,-4.2915344e-006],272], + ["MAP_t_picea2s",[8335.3438,3048.0002,8.4400177e-005],142], + ["MAP_t_picea2s",[8335.7705,3040.657,-2.1457672e-005],93], + ["MAP_t_picea2s",[8341.3555,3036.3518,1.3828278e-005],255], + ["MAP_t_picea2s",[8354.3828,3032.3359,4.1484833e-005],252], + ["MAP_t_picea2s",[8348.2881,3035.4565,-2.6226044e-005],296], + ["MAP_t_picea2s",[8341.8643,3046.4958,-2.7179718e-005],316], + ["MAP_t_picea2s",[8344.0537,3041.271,1.8119812e-005],268], + ["MAP_t_picea2s",[8328.7598,3043.6758,9.8228455e-005],83], + ["MAP_t_picea2s",[8328.3105,3050.7827,5.7697296e-005],291], + ["MAP_t_picea2s",[8362.085,3070.0769,0.00011539459],266], + ["MAP_t_picea2s",[8354.7412,3065.4475,6.1511993e-005],318], + ["MAP_t_picea2s",[8347.7207,3060.8008,0.00016069412],37], + ["MAP_t_picea2s",[8347.8643,3052.4048,-7.1525574e-006],252], + ["MAP_t_picea2s",[8353.7354,3057.7947,2.1457672e-005],61], + ["MAP_t_picea2s",[8352.082,3042.2791,-5.2452087e-005],177], + ["MAP_t_picea2s",[8358.2871,3038.5503,2.4795532e-005],102], + ["MAP_t_picea1s",[8363.2881,3023.4106,-7.1525574e-006],283], + ["MAP_t_picea1s",[8363.5068,3055.887,6.4373016e-005],246], + ["MAP_t_picea1s",[8371.2852,3044.207,0.00011253357],63], + ["MAP_t_picea1s",[8393.7471,3017.5837,2.4795532e-005],281], + ["MAP_t_picea1s",[8391.21,3036.2163,-2.3841858e-005],242], + ["MAP_t_picea1s",[8382.9512,3021.5007,-2.7656555e-005],272], + ["MAP_t_picea1s",[8332.3145,2971.6072,9.5367432e-007],132], + ["MAP_t_picea1s",[8348.8174,2966.2979,6.6757202e-005],353], + ["MAP_t_picea1s",[8353.1592,3008.2664,2.0027161e-005],28], + ["MAP_t_picea2s",[8385.333,3047.8713,1.2874603e-005],292], + ["MAP_t_picea2s",[8380.3887,3037.8037,0.00010061264],23], + ["MAP_t_picea2s",[8399.2168,3023.7378,-8.9645386e-005],270], + ["MAP_t_picea2s",[8392.1133,3024.2642,-6.2465668e-005],214], + ["MAP_t_picea2s",[8388.0898,3010.9275,-3.9100647e-005],329], + ["MAP_t_picea2s",[8386.9814,3019.27,7.5340271e-005],292], + ["MAP_t_picea2s",[8378.6494,3026.2344,8.9168549e-005],315], + ["MAP_t_picea2s",[8373.4072,3034.0032,-6.7710876e-005],34], + ["MAP_t_picea2s",[8369.4004,3053.8101,8.5353851e-005],265], + ["MAP_t_picea2s",[8356.7588,3051.1743,0.00012636185],128], + ["MAP_t_picea2s",[8363.8643,3049.407,7.2479248e-005],234], + ["MAP_t_picea2s",[8361.8838,3034.9668,-2.9563904e-005],281], + ["MAP_t_picea2s",[8374.6533,3046.0508,0.00013256073],289], + ["MAP_t_picea2s",[8380.2734,3044.4497,-3.8146973e-006],172], + ["MAP_t_picea2s",[8364.7539,3042.5144,2.2411346e-005],222], + ["MAP_t_picea2s",[8362.1914,3061.9292,4.3869019e-005],53], + ["MAP_t_picea2s",[8371.2676,3060.8711,0.0001616478],50], + ["MAP_t_picea2s",[8379.2402,3053.2058,-1.1444092e-005],351], + ["MAP_t_picea2s",[8382.1729,3031.7893,2.5272369e-005],288], + ["MAP_t_picea2s",[8393.6787,3030.147,0.0001912117],99], + ["MAP_t_picea2s",[8387.1973,3038.4426,-1.2874603e-005],276], + ["MAP_t_picea2s",[8398.0811,3036.6772,3.0517578e-005],294], + ["MAP_t_picea2s",[8393.6035,3043.3064,5.7220459e-005],339], + ["MAP_t_picea2s",[8404.416,3030.3401,0.0001373291],90], + ["MAP_t_picea2s",[8389.6455,2978.394,1.5735626e-005],262], + ["MAP_t_picea2s",[8395.1406,2969.668,3.1471252e-005],308], + ["MAP_t_picea2s",[8396.8701,2983.0527,7.1525574e-006],207], + ["MAP_t_picea2s",[8399.748,2977.9617,-1.0967255e-005],241], + ["MAP_t_picea2s",[8375.2012,2961.0181,-3.1471252e-005],178], + ["MAP_t_picea2s",[8353.458,2965.6736,-4.196167e-005],267], + ["MAP_t_picea2s",[8369.4355,2954.9197,3.6716461e-005],336], + ["MAP_t_picea2s",[8375.4238,2955.2461,4.0531158e-005],166], + ["MAP_t_picea2s",[8384.5664,2950.9524,5.0067902e-005],17], + ["MAP_t_picea2s",[8375.7773,2948.3875,1.2397766e-005],305], + ["MAP_t_picea2s",[8367.1162,2949.5178,2.3841858e-005],25], + ["MAP_t_picea2s",[8369.8916,2943.7825,3.7193298e-005],183], + ["MAP_t_picea2s",[8361.9854,2942.3115,7.0095062e-005],335], + ["MAP_t_picea2s",[8347.9414,2962.5781,0],121], + ["MAP_t_picea2s",[8340.4492,2963.3047,1.5258789e-005],220], + ["MAP_t_picea2s",[8336.4424,2970.5178,2.3841858e-006],294], + ["MAP_t_picea2s",[8303.9775,3002.9829,-1.5258789e-005],20], + ["MAP_t_picea2s",[8295.0889,3008.6887,0],266], + ["MAP_t_picea2s",[8286.6846,3013.9929,6.8664551e-005],35], + ["MAP_t_picea2s",[8289.2109,3006.8022,-4.0054321e-005],78], + ["MAP_t_picea2s",[8285.9736,2999.3464,-5.9127808e-005],24], + ["MAP_t_picea2s",[8296.8291,3003.0767,-0.00010871887],230], + ["MAP_t_picea2s",[8305.9268,2995.6772,-7.2479248e-005],292], + ["MAP_t_picea2s",[8320.918,2983.749,0.00014305115],289], + ["MAP_t_picea3f",[8315.5625,2994.7371,2.3841858e-005],200], + ["MAP_t_picea3f",[8300.2607,2998.0469,4.2915344e-005],113], + ["MAP_t_picea2s",[8292.6846,2992.8042,2.4318695e-005],176], + ["MAP_t_picea2s",[8299.4014,2993.7622,-5.8174133e-005],229], + ["MAP_t_picea2s",[8312.1064,2990.948,7.1048737e-005],170], + ["MAP_t_picea2s",[8314.5352,2982.4656,5.9604645e-005],173], + ["MAP_t_picea2s",[8328.3945,2977.1936,-3.8146973e-006],150], + ["MAP_misc_FallenTree2",[8308.7178,2962.926,-6.1988831e-006],-115.64439], + ["MAP_misc_FallenTree2",[8329.6055,2958.5837,5.7697296e-005],0], + ["MAP_misc_FallenTree2",[8321.1777,2969.3103,3.3855438e-005],-27.713123], + ["MAP_misc_FallenTree2",[8305.1953,2984.0193,4.863739e-005],74.532455], + ["MAP_misc_FallenTree2",[8305.6504,2973.2217,9.5367432e-007],28.343618], + ["MAP_misc_FallenTree2",[8276.8701,2996.4805,2.0980835e-005],0], + ["MAP_misc_FallenTree2",[8287.6826,2985.7219,-1.335144e-005],153.4949], + ["MAP_misc_stub1",[8280.4932,2990.8032,3.862381e-005],0], + ["MAP_misc_stub1",[8284.2773,2980.856,8.72612e-005],0], + ["MAP_misc_stub1",[8285.3379,2987.5627,-1.1920929e-005],0], + ["MAP_misc_stub1",[8294.9336,2985.9783,6.1988831e-006],0], + ["MAP_misc_stub1",[8303.7754,2988.4644,3.2424927e-005],0], + ["MAP_misc_stub1",[8301.6992,2978.2649,-1.5258789e-005],0], + ["MAP_misc_stub1",[8314.9023,2960.688,4.2438507e-005],0], + ["MAP_misc_stub1",[8325.3506,2970.9453,1.9073486e-006],0], + ["MAP_Misc_trunk_torzo",[8287.334,2972.6567,-1.1444092e-005],0], + ["MAP_Misc_trunk_water",[8301.0947,2973.8215,5.4836273e-005],0], + ["MAP_Misc_trunk_water",[8298.1406,2980.2729,6.8187714e-005],0], + ["MAP_Misc_trunk_water",[8280.4492,2978.7996,2.0503998e-005],0], + ["MAP_Misc_trunk_water",[8285.4277,2961.2744,7.5817108e-005],0], + ["MAP_Misc_trunk_water",[8292.7842,2953.9924,5.3405762e-005],0], + ["MAP_Misc_trunk_water",[8324.7568,2957.9919,5.0067902e-005],0], + ["MAP_Misc_trunk_water",[8321.5801,2945.6758,9.5367432e-006],0], + ["MAP_Misc_trunk_water",[8315.1777,2951.6606,2.7179718e-005],0], + ["MAP_Misc_trunk_water",[8294.6133,2939.1448,6.6757202e-006],0], + ["MAP_misc_stub1",[8304.9102,2950.873,1.0490417e-005],0], + ["MAP_misc_stub2",[8293.0889,2963.2114,-1.3828278e-005],0], + ["MAP_misc_stub2",[8310.7803,2945.6826,3.4332275e-005],0], + ["MAP_misc_stub2",[8289.7568,2946.5486,-2.8610229e-005],0], + ["MAP_misc_stub2",[8276.6553,2979.6633,-1.1444092e-005],0], + ["MAP_misc_stub2",[8295.0127,2977.6084,-1.4781952e-005],0], + ["MAP_misc_stub2",[8312.3926,2971.4011,6.6757202e-006],0], + ["MAP_misc_stub2",[8307.585,2932.189,7.7724457e-005],0], + ["MAP_misc_stub2",[8305.8516,2944.5723,2.3365021e-005],0], + ["MAP_misc_stub2",[8335.3369,2955.3474,1.0967255e-005],0], + ["MAP_misc_FallenSpruce",[8282.7041,2954.906,3.5762787e-005],-34.689266], + ["MAP_misc_FallenTree2",[8317.7783,2938.0107,0.00010919571],-230.14758], + ["MAP_misc_FallenTree1",[8302.3525,2951.6304,8.8214874e-005],0], + ["MAP_misc_FallenTree1",[8340.2559,2950.5364,-2.3365021e-005],62.629547], + ["MAP_t_pinusN2s",[8279.958,2944.3484,0.00018405914],147], + ["MAP_t_pinusS2f",[8298.5752,2960.6387,7.8201294e-005],146], + ["MAP_t_pinusN2s",[8309.8828,2952.9185,8.5830688e-006],166], + ["MAP_misc_FallenTree2",[8283.8867,3034.9934,3.0040741e-005],20.516634], + ["MAP_misc_FallenTree2",[8279.9072,3021.4434,-5.7220459e-006],-57.049], + ["MAP_misc_stub2",[8283.1465,3026.7241,-1.1920929e-005],0], + ["MAP_misc_stub2",[8282.0889,3008.4585,1.4305115e-005],0], + ["MAP_t_picea2s",[8401.6953,2990.6226,8.392334e-005],257], + ["MAP_t_picea2s",[8409.0508,2991.2036,8.3446503e-005],31], + ["MAP_t_picea2s",[8401.6572,2969.9194,1.001358e-005],253], + ["MAP_t_picea2s",[8405.6064,2975.8008,3.2901764e-005],142], + ["MAP_t_picea2s",[8380.9717,2956.7144,-4.6253204e-005],313], + ["MAP_t_picea2s",[8423.9414,2990.884,-2.6226044e-005],262], + ["MAP_t_picea2s",[8409.1504,2996.8979,8.5353851e-005],201], + ["MAP_t_picea2s",[8413.1396,2986.2559,0.00010299683],135], + ["MAP_mud_1_1000",[8370.7031,2965.468,4.8160553e-005],40.217995], + ["MAP_mud_1_1000",[8368.3105,2962.6553,1.0967255e-005],40.427708], + ["MAP_mud_1_1000",[8366.2031,2959.9905,6.6757202e-006],39.187256], + ["MAP_mud_1_1000",[8364.0918,2957.2773,3.0994415e-005],-142.82565], + ["MAP_mud_1_1000",[8381.2871,2977.698,0.00010204315],41.777649], + ["MAP_mud_1_1000",[8388.7539,2986.158,1.8119812e-005],40.972614], + ["MAP_mud_1_1000",[8397.0215,2995.2275,-9.5367432e-006],222.24431], + ["UralWreck",[8364.8926,2958.3679,2.2888184e-005],206.49825], + ["MAP_Bridge_wood_25",[8417.5791,3014.366,8.0108643e-005],52.510834], + ["MAP_misc_amplion_conc",[8435.1533,3011.5964,-4.7683716e-006],-63.011841], + ["MAP_water_tank",[8421.3223,3032.6646,3.4332275e-005],51.929375], + ["Land_Misc_Garb_Heap_EP1",[8400.2666,3007.6792,-1.9073486e-006],0], + ["Paleta2",[8408.5156,3004.8831,5.1498413e-005],40.142441], + ["Land_wagon_box",[8427.4453,3014.2915,1.9073486e-005],-46.225819], + ["Land_wagon_flat",[8418.6025,3025.5176,2.0980835e-005],-36.269791], + ["Land_Ind_Timbers",[8401.165,3001.8022,4.7683716e-005],-20.193249], + ["Land_Ind_Timbers",[8415.9873,3002.2751,9.5367432e-006],-52.854927], + ["Land_Ind_Timbers",[8424.749,3029.0032,5.1498413e-005],-7.4567342], + ["Land_Ind_Timbers",[8389.2402,2995.793,6.3896179e-005],46.922226], + ["Land_Ind_Timbers",[8384.1514,2996.1873,5.1498413e-005],46.041183], + ["Land_Ind_Timbers",[8326.5742,2946.2173,1.5735626e-005],0], + ["Land_Ind_Timbers",[8329.6514,2945.1521,6.4849854e-005],0], + ["Land_Ind_Timbers",[8362.4014,2962.5095,5.7220459e-006],24.539591], + ["Land_Ind_Timbers",[8383.4258,2967.2837,-2.8610229e-006],94.059364], + ["Land_Ind_Timbers",[8416.9551,3027.416,1.0228133],-29.920446], + ["hiluxWreck",[8401.8008,3018.0676,4.9114227e-005],125.64024], + ["Rubbish5",[8378.0508,2980.5146,4.9591064e-005],113.91769], + ["MAP_t_picea2s",[8417.084,2993.4719,-3.0517578e-005],288], + ["MAP_t_picea2s",[8427.498,2984.3269,9.5367432e-007],3], + ["MAP_t_picea2s",[8437.1299,2987.5686],176], + ["MAP_t_picea2s",[8456.7568,2998.8474,5.3405762e-005],209], + ["MAP_t_picea2s",[8436.2773,3035.072,2.2888184e-005],1], + ["MAP_t_picea2s",[8446.9883,3008.3667,-2.2888184e-005],48], + ["MAP_t_picea2s",[8452.5615,3004.6616,0.00011444092],331], + ["MAP_t_picea2s",[8454.0234,3012.1646,2.4795532e-005],287], + ["MAP_t_picea2s",[8442.9961,3015.2117,6.1035156e-005],207], + ["MAP_t_picea2s",[8450.6543,3017.989,5.1021576e-005],61], + ["MAP_t_picea2s",[8441.0146,3023.2188,7.6293945e-006],263], + ["MAP_t_picea2s",[8448.0107,3025.5442,-2.0503998e-005],334], + ["MAP_t_picea2s",[8433.2979,3026.9541,3.0517578e-005],66], + ["MAP_t_picea2s",[8441.0244,3029.4443,7.6293945e-006],2], + ["MAP_t_picea2s",[8430.1992,3033.8435,6.4849854e-005],2], + ["MAP_t_picea2s",[8419.1426,3059.0906,-1.1444092e-005],119], + ["MAP_t_picea2s",[8424.625,3043.1777,6.4849854e-005],81], + ["MAP_t_picea2s",[8417.5146,3051.2515,1.5258789e-005],151], + ["MAP_t_picea2s",[8410.8203,3059.9736],118], + ["MAP_t_picea2s",[8432.2041,3040.6638,8.392334e-005],44], + ["MAP_t_picea2s",[8426.5137,3049.4243,-4.5776367e-005],282], + ["MAP_t_picea2s",[8413.7217,3066.7048,0.00011825562],10], + ["MAP_t_picea2s",[8406.4219,3065.9163,3.0517578e-005],146], + ["MAP_t_picea2s",[8408.5361,3072.5942,9.5367432e-006],288], + ["MAP_t_picea2s",[8400.2539,3076.9885,2.7179718e-005],55], + ["MAP_t_picea2s",[8391.3232,3084.3982,-4.2915344e-005],10], + ["MAP_t_picea2s",[8383.3066,3098.0303,8.2969666e-005],288], + ["MAP_t_picea2s",[8399.1299,3083.8225,3.528595e-005],281], + ["MAP_t_picea2s",[8406.8311,3080.1453,4.196167e-005],340], + ["MAP_t_picea2s",[8412.2031,3077.0642,6.9141388e-005],18], + ["MAP_t_picea2s",[8417.9033,3072.4709,7.6770782e-005],33], + ["MAP_t_picea2s",[8419.8535,3065.4844,3.4809113e-005],256], + ["MAP_t_picea2s",[8424.0869,3055.2808,7.8201294e-005],58], + ["MAP_t_picea2s",[8432.6006,3051.8193,0.0001335144],199], + ["MAP_t_picea2s",[8436.4619,3044.8909,4.7683716e-005],267], + ["MAP_t_picea2s",[8365.5781,3029.8196,-3.528595e-005],248], + ["MAP_t_picea2s",[8357.7012,3045.5706,0.00010538101],238], + ["MAP_t_picea3f",[8456.2334,3026.4829,8.8691711e-005],179], + ["MAP_t_picea3f",[8440.8027,3034.7241,5.9604645e-005],179], + ["MAP_t_picea3f",[8423.6309,3061.4885,-1.0490417e-005],260], + ["MAP_t_picea3f",[8443.1475,3069.2668,2.0980835e-005],339], + ["MAP_t_picea3f",[8455.7139,3054.2495,-5.0067902e-005],114], + ["MAP_t_picea3f",[8393.4199,3090.4524,5.3882599e-005],26], + ["MAP_t_picea2s",[8429.4688,3077.0176,5.9127808e-005],23], + ["MAP_t_picea2s",[8427.0361,3063.1487,3.3378601e-005],64], + ["MAP_t_picea2s",[8425.3262,3072.4617,8.5830688e-005],133], + ["MAP_t_picea2s",[8418.6943,3078.0684,6.9141388e-005],161], + ["MAP_t_picea2s",[8435.8311,3061.2158,0.00018978119],82], + ["MAP_t_picea2s",[8434.9258,3067.2559,4.529953e-005],316], + ["MAP_t_picea2s",[8436.8711,3072.6721,2.7656555e-005],146], + ["MAP_t_picea2s",[8430.041,3057.2034,0.00010204315],36], + ["MAP_t_picea2s",[8444.2383,3050.7751,1.0967255e-005],323], + ["MAP_t_picea2s",[8438.6426,3054.5854,0.00018692017],250], + ["MAP_t_picea2s",[8443.9072,3059.0181,2.7179718e-005],273], + ["MAP_t_picea2s",[8440.0342,3040.0193,0.00021648407],312], + ["MAP_t_picea2s",[8446.4463,3033.7573,9.1552734e-005],345], + ["MAP_t_picea2s",[8447.6875,3042.0986,8.4877014e-005],57], + ["MAP_t_picea2s",[8386.6631,3027.2332,3.8146973e-005],87], + ["MAP_t_picea2s",[8422.7158,3095.7778,-7.1525574e-006],147], + ["MAP_t_picea2s",[8419.2871,3087.8433,-5.9127808e-005],135], + ["MAP_t_picea2s",[8412.166,3089.3064,0.00016021729],144], + ["MAP_t_picea2s",[8412.5156,3100.55,9.5844269e-005],355], + ["MAP_t_picea2s",[8406.8047,3094.6409,8.0108643e-005],120], + ["MAP_t_picea2s",[8429.9658,3086.6838,0.00012207031],249], + ["MAP_t_picea2s",[8440.6387,3083.418,-3.9577484e-005],71], + ["MAP_t_picea2s",[8452.0293,3061.7297,0.00011873245],265], + ["MAP_t_picea2s",[8455.0283,3047.6245,4.1007996e-005],198], + ["MAP_t_picea2s",[8460.9795,3037.2439,9.059906e-006],119], + ["MAP_t_picea2s",[8460.9971,3015.7375,1.9550323e-005],284], + ["MAP_t_picea2s",[8469.1123,3066.8022,-3.1471252e-005],95], + ["MAP_t_picea2s",[8463.2588,3084.8928,-3.2424927e-005],145], + ["MAP_t_picea2s",[8488.3633,3060.9043,9.059906e-005],353], + ["MAP_misc_FallenTree2",[8316.9961,3054.3247,-9.5367432e-007],-59.871033], + ["MAP_misc_FallenTree2",[8309.0459,3053.2366,1.5735626e-005],109.07998], + ["MAP_misc_FallenTree2",[8347.3594,3073.9495,5.531311e-005],0], + ["MAP_misc_FallenTree2",[8332.7568,3073.3149,0.00013208389],-87.67424], + ["MAP_misc_FallenTree1",[8334.5889,3063.1741,1.8596649e-005],0], + ["MAP_misc_stub2",[8341.8848,3068.8845,1.9550323e-005],0], + ["MAP_misc_stub2",[8340.3555,3061.8494,-1.6212463e-005],0], + ["MAP_misc_stub2",[8323.4219,3057.5264,-9.4413757e-005],0], + ["MAP_misc_stub2",[8304.6895,3052.3745,-1.3828278e-005],0], + ["MAP_misc_FallenSpruce",[8325.7637,3062.7468,3.6716461e-005],-61.213089], + ["MAP_misc_FallenSpruce",[8337.4092,3078.6479,3.8146973e-006],62.961388], + ["MAP_Misc_trunk_water",[8318.9414,3062.6328,-4.7683716e-007],0], + ["MAP_Misc_trunk_water",[8353.7295,3073.917,7.7724457e-005],0], + ["MAP_Misc_trunk_water",[8396.8096,3097.7349,-0.00012350082],0], + ["MAP_t_picea2s",[8379.2881,2943.2876,5.9604645e-005],141], + ["MAP_t_picea2s",[8402.6006,2963.0427,1.4305115e-006],352], + ["MAP_t_picea2s",[8408.7686,2968.7222,-6.6757202e-006],200], + ["MAP_t_picea2s",[8412.8701,2974.814,3.8146973e-005],277], + ["MAP_t_picea2s",[8419.6445,2984.4836,-5.865097e-005],118], + ["MAP_t_picea2s",[8418.1465,2967.4158,5.1498413e-005],325], + ["MAP_t_picea2s",[8423.1826,2975.532,7.8678131e-005],290], + ["MAP_t_picea2s",[8434.3164,2981.2061,1.1444092e-005],350], + ["MAP_t_picea2s",[8434.2383,2973.7041,5.6743622e-005],61], + ["MAP_t_picea2s",[8462.2373,2993.4438,1.9073486e-005],182], + ["MAP_t_picea2s",[8468.6104,3002.999,0.00012254715],86], + ["MAP_t_picea2s",[8474.6387,3015.1104,-1.1444092e-005],172], + ["MAP_t_picea2s",[8492.4893,3023.271,-4.2915344e-005],140], + ["MAP_t_picea3f",[8459.9004,3006.7383,1.9073486e-005],53], + ["MAP_t_picea3f",[8482.5283,3083.5828,6.1511993e-005],141], + ["MAP_t_picea3f",[8493.5303,3071.3372,0.00012874603],101], + ["MAP_t_picea3f",[8506.0596,3083.8203,0.00031280518],121], + ["MAP_t_picea3f",[8524.1426,3067.0916,0.00032711029],44], + ["MAP_t_picea3f",[8505.0586,3062.7087,-8.392334e-005],123], + ["MAP_t_picea2s",[8359.4141,2966.259,4.6730042e-005],239], + ["MAP_t_picea2s",[8352.4424,2955.355,9.1552734e-005],198], + ["MAP_t_picea2s",[8357.7129,2959.4402,-1.9073486e-006],180], + ["MAP_t_picea2s",[8365.9404,2969.804,3.8146973e-006],334], + ["MAP_t_picea2s",[8377.6309,2986.512,1.6212463e-005],330], + ["MAP_t_picea2s",[8388.0713,3001.0593,-1.2397766e-005],280], + ["MAP_t_picea2s",[8393.7432,3004.4409,2.3841858e-006],108], + ["HMMWVWreck",[8308.5449,3040.8059,2.4318695e-005],-30.494673], + ["Body2",[8306.4453,3040.2815,-6.0081482e-005],0], + ["Body2",[8312.5654,3036.915,-5.0544739e-005],72.53389], + ["Body1",[8306.9395,3036.6416,-3.3378601e-006],0], + ["Body1",[8300.5029,3044.5349,0],0], + ["Body2",[8295.9268,3044.8689,1.9073486e-006],-132.61189], + ["BRDMWreck",[8295.1846,3038.5232,2.3365021e-005],-69.078674], + ["Land_Ind_Workshop01_01",[8398.0586,3012.748,1.2397766e-005],98.278824] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/DevilsFarm.sqf b/SQF/dayz_code/system/mission/chernarus/poi/DevilsFarm.sqf index cbfa68b70..42ec770b6 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/DevilsFarm.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/DevilsFarm.sqf @@ -1,4186 +1,405 @@ -//Devils Farm DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_27 = objNull; -if (true) then -{ - _this = "MAP_asf3_12" createVehicle [1984.9187, 11712.01, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_27 = _this; - _this setDir -87.957932; - _this setPos [1984.9187, 11712.01, 3.0517578e-005]; -}; - -_vehicle_28 = objNull; -if (true) then -{ - _this = "MAP_asf3_0_2000" createVehicle [2002.1959, 11711.578, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_28 = _this; - _this setDir -88.27459; - _this setPos [2002.1959, 11711.578, -7.6293945e-005]; -}; - -_vehicle_29 = objNull; -if (true) then -{ - _this = "MAP_asf3_6konec" createVehicle [2008.3251, 11711.512, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_29 = _this; - _this setDir -89.265335; - _this setPos [2008.3251, 11711.512, -1.5258789e-005]; -}; - -_vehicle_30 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1972.451, 11712.452]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_30 = _this; - _this setDir -87.905663; - _this setPos [1972.451, 11712.452]; -}; - -_vehicle_32 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [1941.998, 11712.555]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_32 = _this; - _this setDir 82.539734; - _this setPos [1941.998, 11712.555]; -}; - -_vehicle_33 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [1942.1244, 11712.463]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_33 = _this; - _this setDir -96.258011; - _this setPos [1942.1244, 11712.463]; -}; - -_vehicle_34 = objNull; -if (true) then -{ - _this = "MAP_asf3_15_75" createVehicle [1929.1057, 11712.034, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_34 = _this; - _this setDir -86.258156; - _this setPos [1929.1057, 11712.034, 3.0517578e-005]; -}; - -_vehicle_35 = objNull; -if (true) then -{ - _this = "MAP_asf3_60_10" createVehicle [1893.4742, 11715.37, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_35 = _this; - _this setDir 47.016041; - _this setPos [1893.4742, 11715.37, 3.0517578e-005]; -}; - -_vehicle_36 = objNull; -if (true) then -{ - _this = "MAP_asf3_12" createVehicle [1913.6475, 11714.381]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_36 = _this; - _this setDir -73.279716; - _this setPos [1913.6475, 11714.381]; -}; - -_vehicle_37 = objNull; -if (true) then -{ - _this = "MAP_asf3_12" createVehicle [1884.4944, 11706.747, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_37 = _this; - _this setDir 46.756504; - _this setPos [1884.4944, 11706.747, 1.5258789e-005]; -}; - -_vehicle_38 = objNull; -if (true) then -{ - _this = "MAP_asf3_12" createVehicle [1875.4884, 11698.179, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_38 = _this; - _this setDir 46.532982; - _this setPos [1875.4884, 11698.179, 0.00012207031]; -}; - -_vehicle_39 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1863.0055, 11686.327, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_39 = _this; - _this setDir 45.856564; - _this setPos [1863.0055, 11686.327, 1.5258789e-005]; -}; - -_vehicle_43 = objNull; -if (true) then -{ - _this = "MAP_asf3_60_10" createVehicle [1863.1049, 11686.322, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_43 = _this; - _this setDir -133.37495; - _this setPos [1863.1049, 11686.322, -1.5258789e-005]; -}; - -_vehicle_44 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1853.6176, 11683.976, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_44 = _this; - _this setDir -73.769394; - _this setPos [1853.6176, 11683.976, -1.5258789e-005]; -}; - -_vehicle_47 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_100" createVehicle [1836.9906, 11688.811]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_47 = _this; - _this setDir -73.365013; - _this setPos [1836.9906, 11688.811]; -}; - -_vehicle_58 = objNull; -if (true) then -{ - _this = "MAP_pond_big_42_04" createVehicle [1802.7939, 11696.994, 0.27322203]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_58 = _this; - _this setPos [1802.7939, 11696.994, 0.27322203]; -}; -_vehicle_58bis = objNull; -if (true) then -{ - _this = "waterHoleProxy" createVehicle [1802.7939, 11696.994, 0.27322203]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_58bis = _this; - _this setPos [1802.7939, 11696.994, 0.27322203]; -}; - -_vehicle_61 = objNull; -if (true) then -{ - _this = "MAP_R2_RockWall" createVehicle [1804.7111, 11673.503, -28.283916]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_61 = _this; - _this setDir -65.804031; - _this setPos [1804.7111, 11673.503, -28.283916]; -}; - -_vehicle_62 = objNull; -if (true) then -{ - _this = "MAP_R2_RockWall" createVehicle [1828.6597, 11723.607, -24.94239]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_62 = _this; - _this setDir 103.62435; - _this setPos [1828.6597, 11723.607, -24.94239]; -}; - -_vehicle_63 = objNull; -if (true) then -{ - _this = "MAP_R2_RockWall" createVehicle [1808.7726, 11723.291, -31.437239]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_63 = _this; - _this setDir 156.08258; - _this setPos [1808.7726, 11723.291, -31.437239]; -}; - -_vehicle_64 = objNull; -if (true) then -{ - _this = "MAP_R2_Rock1" createVehicle [1791.749, 11674.111, -21.365698]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_64 = _this; - _this setDir 33.776997; - _this setPos [1791.749, 11674.111, -21.365698]; -}; - -_vehicle_65 = objNull; -if (true) then -{ - _this = "MAP_Bridge_wood_25" createVehicle [1805.6094, 11702.166, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_65 = _this; - _this setDir 24.970881; - _this setPos [1805.6094, 11702.166, 1.5258789e-005]; -}; - -_vehicle_66 = objNull; -if (true) then -{ - _this = "MAP_R2_Boulder1" createVehicle [1820.0166, 11698.858, -0.026716888]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_66 = _this; - _this setDir -102.68056; - _this setPos [1820.0166, 11698.858, -0.026716888]; -}; - -_vehicle_69 = objNull; -if (true) then -{ - _this = "MAP_R2_Boulder1" createVehicle [1816.3378, 11693.163, 0.27310959]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_69 = _this; - _this setDir 72.806061; - _this setPos [1816.3378, 11693.163, 0.27310959]; -}; - -_vehicle_70 = objNull; -if (true) then -{ - _this = "MAP_asf3_0_2000" createVehicle [1791.3824, 11708.735, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_70 = _this; - _this setDir -64.689804; - _this setPos [1791.3824, 11708.735, -1.5258789e-005]; -}; - -_vehicle_71 = objNull; -if (true) then -{ - _this = "ClutterCutter_small_EP1" createVehicle [1802.2479, 11691.153, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_71 = _this; - _this setPos [1802.2479, 11691.153, 0]; -}; - -_vehicle_72 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [1807.9299, 11693.847, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_72 = _this; - _this setPos [1807.9299, 11693.847, 1.5258789e-005]; -}; - -_vehicle_73 = objNull; -if (true) then -{ - _this = "ClutterCutter_small_EP1" createVehicle [1788.1415, 11710.126, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_73 = _this; - _this setPos [1788.1415, 11710.126, 3.0517578e-005]; -}; - -_vehicle_74 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [1824.0846, 11692.684, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_74 = _this; - _this setPos [1824.0846, 11692.684, 3.0517578e-005]; -}; - -_vehicle_75 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1775.7607, 11716.232, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_75 = _this; - _this setDir -63.971947; - _this setPos [1775.7607, 11716.232, -4.5776367e-005]; -}; - -_vehicle_76 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1760.2611, 11723.933, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_76 = _this; - _this setDir -62.566067; - _this setPos [1760.2611, 11723.933, 3.0517578e-005]; -}; - -_vehicle_77 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1744.8807, 11732.19, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_77 = _this; - _this setDir -62.272873; - _this setPos [1744.8807, 11732.19, 6.1035156e-005]; -}; - -_vehicle_78 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [1729.678, 11740.413]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_78 = _this; - _this setDir -60.928402; - _this setPos [1729.678, 11740.413]; -}; - -_vehicle_79 = objNull; -if (true) then -{ - _this = "MAP_asf3_6konec" createVehicle [1709.1453, 11752.14, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_79 = _this; - _this setDir 119.6788; - _this setPos [1709.1453, 11752.14, -4.5776367e-005]; -}; - -_vehicle_82 = objNull; -if (true) then -{ - _this = "MAP_R_HouseV_2L" createVehicle [1723.8802, 11762.272, -19.685225]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_82 = _this; - _this setDir -58.260632; - _this setPos [1723.8802, 11762.272, -19.685225]; -}; - -_vehicle_88 = objNull; -if (true) then -{ - _this = "MAP_R_HouseV2_03B" createVehicle [1698.0996, 11759.021, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_88 = _this; - _this setDir 29.547768; - _this setPos [1698.0996, 11759.021, -3.0517578e-005]; -}; - -_vehicle_93 = objNull; -if (true) then -{ - _this = "MAP_Barn_W_02_ruins" createVehicle [1707.6729, 11729.523, 0.00019836426]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_93 = _this; - _this setDir 121.25789; - _this setPos [1707.6729, 11729.523, 0.00019836426]; -}; - -_vehicle_97 = objNull; -if (true) then -{ - _this = "MAP_Shed_M02_ruins" createVehicle [1779.2935, 11721.693, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_97 = _this; - _this setDir 37.449184; - _this setPos [1779.2935, 11721.693, 7.6293945e-005]; -}; - -_vehicle_99 = objNull; -if (true) then -{ - _this = "MAP_Shed_M01_ruins" createVehicle [1747.9758, 11721.98]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_99 = _this; - _this setDir 30.947336; - _this setPos [1747.9758, 11721.98]; -}; - -_vehicle_100 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [1792.848, 11699.03, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_100 = _this; - _this setDir -34.449684; - _this setPos [1792.848, 11699.03, 0.00018310547]; -}; - -_vehicle_101 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [1771.1575, 11715.51, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_101 = _this; - _this setDir 93.814789; - _this setPos [1771.1575, 11715.51, 1.5258789e-005]; -}; - -_vehicle_102 = objNull; -if (true) then -{ - _this = "MAP_Farm_Cowshed_a" createVehicle [1728.5366, 11725.269, 0.00022888184]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_102 = _this; - _this setDir 93.851532; - _this setPos [1728.5366, 11725.269, 0.00022888184]; -}; - -_vehicle_104 = objNull; -if (true) then -{ - _this = "Land_Ind_SawMill" createVehicle [1747.4368, 11757.14, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_104 = _this; - _this setDir 30.271875; - _this setPos [1747.4368, 11757.14, 9.1552734e-005]; -}; - -_vehicle_105 = objNull; -if (true) then -{ - _this = "Land_Ind_SawMillPen" createVehicle [1764.7755, 11744.41, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_105 = _this; - _this setDir 31.224991; - _this setPos [1764.7755, 11744.41, 3.0517578e-005]; -}; - -_vehicle_107 = objNull; -if (true) then -{ - _this = "Land_Ind_Workshop01_01" createVehicle [1880.9644, 11690.132, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_107 = _this; - _this setDir 316.25232; - _this setPos [1880.9644, 11690.132, 3.0517578e-005]; -}; - -_vehicle_108 = objNull; -if (true) then -{ - _this = "MASH_EP1" createVehicle [1750.0703, 11701.407, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_108 = _this; - _this setDir -304.14282; - _this setPos [1750.0703, 11701.407, 7.6293945e-005]; -}; - -_vehicle_109 = objNull; -if (true) then -{ - _this = "MASH_EP1" createVehicle [1746.2828, 11706.929, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_109 = _this; - _this setDir 56.605083; - _this setPos [1746.2828, 11706.929, 7.6293945e-005]; -}; - -_vehicle_111 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [1755.4991, 11693.352, 0.00019836426]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_111 = _this; - _this setDir 208.48862; - _this setPos [1755.4991, 11693.352, 0.00019836426]; -}; - -_vehicle_112 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [1763.5485, 11688.976, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_112 = _this; - _this setDir 208.972; - _this setPos [1763.5485, 11688.976, -3.0517578e-005]; -}; - -_vehicle_113 = objNull; -if (true) then -{ - _this = "Misc_Cargo1Bo_military" createVehicle [1769.1373, 11702.974, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_113 = _this; - _this setDir 90.935242; - _this setPos [1769.1373, 11702.974, 3.0517578e-005]; -}; - -_vehicle_114 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1757.7006, 11736.37, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_114 = _this; - _this setPos [1757.7006, 11736.37, 3.0517578e-005]; -}; - -_vehicle_115 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1759.0682, 11736.326, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_115 = _this; - _this setPos [1759.0682, 11736.326, 1.5258789e-005]; -}; - -_vehicle_116 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1760.723, 11736.299, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_116 = _this; - _this setPos [1760.723, 11736.299, -1.5258789e-005]; -}; - -_vehicle_117 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1762.4061, 11736.274, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_117 = _this; - _this setPos [1762.4061, 11736.274, 1.5258789e-005]; -}; - -_vehicle_118 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1759.105, 11739.66, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_118 = _this; - _this setPos [1759.105, 11739.66, 1.5258789e-005]; -}; - -_vehicle_119 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1760.6445, 11739.379, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_119 = _this; - _this setPos [1760.6445, 11739.379, -3.0517578e-005]; -}; - -_vehicle_120 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1762.3646, 11739.411, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_120 = _this; - _this setPos [1762.3646, 11739.411, -1.5258789e-005]; -}; - -_vehicle_121 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1764.2596, 11739.04, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_121 = _this; - _this setPos [1764.2596, 11739.04, -1.5258789e-005]; -}; - -_vehicle_122 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1760.6523, 11742.989, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_122 = _this; - _this setPos [1760.6523, 11742.989, 1.5258789e-005]; -}; - -_vehicle_123 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1762.4423, 11742.709, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_123 = _this; - _this setPos [1762.4423, 11742.709, 1.5258789e-005]; -}; - -_vehicle_124 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1764.2177, 11742.704, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_124 = _this; - _this setPos [1764.2177, 11742.704, -1.5258789e-005]; -}; - -_vehicle_125 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1766.0786, 11742.517, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_125 = _this; - _this setPos [1766.0786, 11742.517, 1.5258789e-005]; -}; - -_vehicle_126 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1762.5627, 11746.312]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_126 = _this; - _this setPos [1762.5627, 11746.312]; -}; - -_vehicle_127 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1764.3641, 11746.244, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_127 = _this; - _this setPos [1764.3641, 11746.244, -3.0517578e-005]; -}; - -_vehicle_128 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1766.1538, 11746.084]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_128 = _this; - _this setPos [1766.1538, 11746.084]; -}; - -_vehicle_129 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1768.0387, 11745.889]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_129 = _this; - _this setPos [1768.0387, 11745.889]; -}; - -_vehicle_130 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1770.2762, 11749.419, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_130 = _this; - _this setPos [1770.2762, 11749.419, -6.1035156e-005]; -}; - -_vehicle_131 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1768.114, 11749.472, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_131 = _this; - _this setPos [1768.114, 11749.472, 3.0517578e-005]; -}; - -_vehicle_132 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1766.2771, 11749.629, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_132 = _this; - _this setPos [1766.2771, 11749.629, 1.5258789e-005]; -}; - -_vehicle_133 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1764.4037, 11749.53, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_133 = _this; - _this setPos [1764.4037, 11749.53, -3.0517578e-005]; -}; - -_vehicle_134 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1724.1654, 11737.608, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_134 = _this; - _this setDir 29.616356; - _this setPos [1724.1654, 11737.608, 0.00010681152]; -}; - -_vehicle_135 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1722.9143, 11738.433, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_135 = _this; - _this setDir 25.478025; - _this setPos [1722.9143, 11738.433, 0.00012207031]; -}; - -_vehicle_136 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1721.5681, 11739.186, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_136 = _this; - _this setDir 26.433308; - _this setPos [1721.5681, 11739.186, 0.0001373291]; -}; - -_vehicle_137 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1720.2083, 11740.069, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_137 = _this; - _this setDir 29.268167; - _this setPos [1720.2083, 11740.069, 0.0001373291]; -}; - -_vehicle_138 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1725.4467, 11736.869, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_138 = _this; - _this setDir 28.882954; - _this setPos [1725.4467, 11736.869, 1.5258789e-005]; -}; - -_vehicle_139 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1726.9121, 11736.062, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_139 = _this; - _this setDir 30.537571; - _this setPos [1726.9121, 11736.062, 7.6293945e-005]; -}; - -_vehicle_140 = objNull; -if (true) then -{ - _this = "Body" createVehicle [1728.3807, 11735.187, 0.00021362305]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_140 = _this; - _this setDir 27.741898; - _this setPos [1728.3807, 11735.187, 0.00021362305]; -}; - -_vehicle_141 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Large" createVehicle [1753.5286, 11712.48, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_141 = _this; - _this setPos [1753.5286, 11712.48, 4.5776367e-005]; -}; - -_vehicle_142 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Medium" createVehicle [1754.4924, 11713.708, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_142 = _this; - _this setDir -108.6438; - _this setPos [1754.4924, 11713.708, 4.5776367e-005]; -}; - -_vehicle_144 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1769.6257, 11683.91, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_144 = _this; - _this setDir -66.487633; - _this setPos [1769.6257, 11683.91, 6.1035156e-005]; -}; - -_vehicle_145 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1770.8148, 11686.578, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_145 = _this; - _this setDir -64.527924; - _this setPos [1770.8148, 11686.578, 7.6293945e-005]; -}; - -_vehicle_146 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1772.084, 11689.342, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_146 = _this; - _this setDir -66.378868; - _this setPos [1772.084, 11689.342, 9.1552734e-005]; -}; - -_vehicle_147 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1773.2328, 11692.024, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_147 = _this; - _this setDir -67.031334; - _this setPos [1773.2328, 11692.024, 0.00018310547]; -}; - -_vehicle_148 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1774.3792, 11694.753, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_148 = _this; - _this setDir -67.347664; - _this setPos [1774.3792, 11694.753, 7.6293945e-005]; -}; - -_vehicle_149 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1775.4854, 11697.461, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_149 = _this; - _this setDir -68.176559; - _this setPos [1775.4854, 11697.461, -1.5258789e-005]; -}; - -_vehicle_150 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1776.6003, 11700.206, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_150 = _this; - _this setDir -68.824898; - _this setPos [1776.6003, 11700.206, 1.5258789e-005]; -}; - -_vehicle_151 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1777.7183, 11702.917, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_151 = _this; - _this setDir -68.663048; - _this setPos [1777.7183, 11702.917, 0.00012207031]; -}; - -_vehicle_152 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1778.8997, 11705.713, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_152 = _this; - _this setDir -67.856056; - _this setPos [1778.8997, 11705.713, 4.5776367e-005]; -}; - -_vehicle_153 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1780.0229, 11708.425, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_153 = _this; - _this setDir -67.61171; - _this setPos [1780.0229, 11708.425, 0.00016784668]; -}; - -_vehicle_154 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1783.9249, 11717.544, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_154 = _this; - _this setDir -66.749901; - _this setPos [1783.9249, 11717.544, 0.0001373291]; -}; - -_vehicle_155 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1785.0416, 11720.148, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_155 = _this; - _this setDir -67.153412; - _this setPos [1785.0416, 11720.148, 0.00010681152]; -}; - -_vehicle_156 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [1786.2275, 11722.918, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_156 = _this; - _this setDir -67.444763; - _this setPos [1786.2275, 11722.918, 0.0001373291]; -}; - -_vehicle_157 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_corner" createVehicle [1786.5177, 11726.571, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_157 = _this; - _this setDir 201.91515; - _this setPos [1786.5177, 11726.571, 9.1552734e-005]; -}; - -_vehicle_158 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_corner" createVehicle [1767.8385, 11681.27, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_158 = _this; - _this setDir -67.489479; - _this setPos [1767.8385, 11681.27, 4.5776367e-005]; -}; - -_vehicle_159 = objNull; -if (true) then -{ - _this = "Fort_RazorWire" createVehicle [1786.0699, 11719.021, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_159 = _this; - _this setDir -66.315384; - _this setPos [1786.0699, 11719.021, -3.0517578e-005]; -}; - -_vehicle_160 = objNull; -if (true) then -{ - _this = "Fort_RazorWire" createVehicle [1779.7745, 11703.974, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_160 = _this; - _this setDir -66.543167; - _this setPos [1779.7745, 11703.974, 4.5776367e-005]; -}; - -_vehicle_161 = objNull; -if (true) then -{ - _this = "Fort_RazorWire" createVehicle [1776.6421, 11696.184, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_161 = _this; - _this setDir -68.657242; - _this setPos [1776.6421, 11696.184, -1.5258789e-005]; -}; - -_vehicle_163 = objNull; -if (true) then -{ - _this = "MAP_R2_RockWall" createVehicle [1734.8632, 11659.609, -17.923616]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_163 = _this; - _this setDir -199.58272; - _this setPos [1734.8632, 11659.609, -17.923616]; -}; - -_vehicle_164 = objNull; -if (true) then -{ - _this = "MAP_R2_RockWall" createVehicle [1719.538, 11803.077, -19.767447]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_164 = _this; - _this setPos [1719.538, 11803.077, -19.767447]; -}; - -_vehicle_184 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1708.0996, 11712.291, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_184 = _this; - _this setPos [1708.0996, 11712.291, 7.6293945e-005]; -}; - -_vehicle_186 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1708.0406, 11707.755, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_186 = _this; - _this setPos [1708.0406, 11707.755, 0.00010681152]; -}; - -_vehicle_187 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1701.1199, 11712.554, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_187 = _this; - _this setPos [1701.1199, 11712.554, -1.5258789e-005]; -}; - -_vehicle_188 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1699.3159, 11705.964, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_188 = _this; - _this setPos [1699.3159, 11705.964, 0.00012207031]; -}; - -_vehicle_189 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1703.9541, 11698.854, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_189 = _this; - _this setPos [1703.9541, 11698.854, 3.0517578e-005]; -}; - -_vehicle_190 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1730.8362, 11785.251, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_190 = _this; - _this setPos [1730.8362, 11785.251, 6.1035156e-005]; -}; - -_vehicle_191 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1721.535, 11782.772]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_191 = _this; - _this setPos [1721.535, 11782.772]; -}; - -_vehicle_192 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1711.4562, 11788.058, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_192 = _this; - _this setPos [1711.4562, 11788.058, 0.00016784668]; -}; - -_vehicle_193 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1715.343, 11778.118, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_193 = _this; - _this setPos [1715.343, 11778.118, 6.1035156e-005]; -}; - -_vehicle_194 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1748.7883, 11809.227, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_194 = _this; - _this setPos [1748.7883, 11809.227, 0.00012207031]; -}; - -_vehicle_195 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1769.0259, 11766.633, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_195 = _this; - _this setPos [1769.0259, 11766.633, 1.5258789e-005]; -}; - -_vehicle_196 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1765.6106, 11773.438, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_196 = _this; - _this setPos [1765.6106, 11773.438, 0.00018310547]; -}; - -_vehicle_197 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1776.5638, 11770.77, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_197 = _this; - _this setPos [1776.5638, 11770.77, 0.00010681152]; -}; - -_vehicle_198 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1777.7548, 11761.786, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_198 = _this; - _this setPos [1777.7548, 11761.786, 0.00010681152]; -}; - -_vehicle_199 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1783.1877, 11767.782, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_199 = _this; - _this setPos [1783.1877, 11767.782, 3.0517578e-005]; -}; - -_vehicle_200 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1786.0691, 11760.089, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_200 = _this; - _this setPos [1786.0691, 11760.089, 3.0517578e-005]; -}; - -_vehicle_201 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1796.0404, 11730.627, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_201 = _this; - _this setPos [1796.0404, 11730.627, 4.5776367e-005]; -}; - -_vehicle_202 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1788.6328, 11731.446, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_202 = _this; - _this setPos [1788.6328, 11731.446, 0.00010681152]; -}; - -_vehicle_203 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1801.8285, 11734.453, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_203 = _this; - _this setPos [1801.8285, 11734.453, 0.00016784668]; -}; - -_vehicle_204 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1794.614, 11736.238, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_204 = _this; - _this setPos [1794.614, 11736.238, 6.1035156e-005]; -}; - -_vehicle_205 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1822.1718, 11681.094, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_205 = _this; - _this setPos [1822.1718, 11681.094, 3.0517578e-005]; -}; - -_vehicle_206 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1822.657, 11686.977, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_206 = _this; - _this setPos [1822.657, 11686.977, 0]; -}; - -_vehicle_207 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1828.8997, 11680.479, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_207 = _this; - _this setPos [1828.8997, 11680.479, 7.6293945e-005]; -}; - -_vehicle_208 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1759.1609, 11657.606, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_208 = _this; - _this setPos [1759.1609, 11657.606, 7.6293945e-005]; -}; - -_vehicle_209 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1749.874, 11656.442, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_209 = _this; - _this setPos [1749.874, 11656.442, 6.1035156e-005]; -}; - -_vehicle_210 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1757.594, 11668.55, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_210 = _this; - _this setPos [1757.594, 11668.55, 0.00018310547]; -}; - -_vehicle_211 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1762.1592, 11665.067, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_211 = _this; - _this setPos [1762.1592, 11665.067, 3.0517578e-005]; -}; - -_vehicle_212 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1763.4108, 11673.655, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_212 = _this; - _this setPos [1763.4108, 11673.655, 0.00012207031]; -}; - -_vehicle_213 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1767.9163, 11670.904, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_213 = _this; - _this setPos [1767.9163, 11670.904, 7.6293945e-005]; -}; - -_vehicle_214 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1768.2374, 11665.728, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_214 = _this; - _this setPos [1768.2374, 11665.728, 9.1552734e-005]; -}; - -_vehicle_215 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1770.4441, 11677.615, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_215 = _this; - _this setPos [1770.4441, 11677.615, -1.5258789e-005]; -}; - -_vehicle_216 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1712.1829, 11667.416, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_216 = _this; - _this setPos [1712.1829, 11667.416, 9.1552734e-005]; -}; - -_vehicle_217 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1706.2999, 11668.541, 0.00022888184]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_217 = _this; - _this setPos [1706.2999, 11668.541, 0.00022888184]; -}; - -_vehicle_218 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1706.8826, 11676.414, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_218 = _this; - _this setPos [1706.8826, 11676.414, 0.00018310547]; -}; - -_vehicle_219 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1701.1501, 11671.833, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_219 = _this; - _this setPos [1701.1501, 11671.833, 4.5776367e-005]; -}; - -_vehicle_220 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1700.7295, 11665.481, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_220 = _this; - _this setPos [1700.7295, 11665.481, 0.00015258789]; -}; - -_vehicle_221 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1706.9185, 11661.559, 0.00022888184]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_221 = _this; - _this setPos [1706.9185, 11661.559, 0.00022888184]; -}; - -_vehicle_222 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1743.3141, 11648.917, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_222 = _this; - _this setPos [1743.3141, 11648.917, 4.5776367e-005]; -}; - -_vehicle_223 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1750.1553, 11649.468, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_223 = _this; - _this setPos [1750.1553, 11649.468, 3.0517578e-005]; -}; - -_vehicle_224 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1758.0492, 11649.808, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_224 = _this; - _this setPos [1758.0492, 11649.808, 0.00016784668]; -}; - -_vehicle_225 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1794.7102, 11664.943, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_225 = _this; - _this setPos [1794.7102, 11664.943, 0.00010681152]; -}; - -_vehicle_227 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1796.1796, 11658.953, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_227 = _this; - _this setPos [1796.1796, 11658.953, 9.1552734e-005]; -}; - -_vehicle_228 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1788.369, 11659.815, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_228 = _this; - _this setPos [1788.369, 11659.815, 0.00016784668]; -}; - -_vehicle_229 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1828.9491, 11674.704, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_229 = _this; - _this setPos [1828.9491, 11674.704, 3.0517578e-005]; -}; - -_vehicle_230 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1835.6296, 11676.209, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_230 = _this; - _this setPos [1835.6296, 11676.209, 7.6293945e-005]; -}; - -_vehicle_231 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1836.6669, 11668.347, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_231 = _this; - _this setPos [1836.6669, 11668.347, 6.1035156e-005]; -}; - -_vehicle_232 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1841.505, 11673.708, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_232 = _this; - _this setPos [1841.505, 11673.708, 0.0001373291]; -}; - -_vehicle_233 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1847.2189, 11668.215, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_233 = _this; - _this setPos [1847.2189, 11668.215, 6.1035156e-005]; -}; - -_vehicle_234 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1875.011, 11684.652, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_234 = _this; - _this setPos [1875.011, 11684.652, 1.5258789e-005]; -}; - -_vehicle_235 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1869.9547, 11681.963, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_235 = _this; - _this setPos [1869.9547, 11681.963, 7.6293945e-005]; -}; - -_vehicle_236 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1875.72, 11677.441, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_236 = _this; - _this setPos [1875.72, 11677.441, -3.0517578e-005]; -}; - -_vehicle_237 = objNull; -if (true) then -{ - _this = "Land_Fire_DZ" createVehicle [1689.3069, 11754.54, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_237 = _this; - _this setPos [1689.3069, 11754.54, -4.5776367e-005]; -}; - -_vehicle_238 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1698.0286, 11751.336, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_238 = _this; - _this setPos [1698.0286, 11751.336, 9.1552734e-005]; -}; - -_vehicle_239 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1700.7842, 11732.964, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_239 = _this; - _this setPos [1700.7842, 11732.964, 4.5776367e-005]; -}; - -_vehicle_240 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1713.9777, 11724.616]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_240 = _this; - _this setPos [1713.9777, 11724.616]; -}; - -_vehicle_241 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1709.389, 11727.408, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_241 = _this; - _this setPos [1709.389, 11727.408, 1.5258789e-005]; -}; - -_vehicle_242 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1705.9205, 11728.884, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_242 = _this; - _this setPos [1705.9205, 11728.884, -9.1552734e-005]; -}; - -_vehicle_243 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1746.264, 11721.658]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_243 = _this; - _this setPos [1746.264, 11721.658]; -}; - -_vehicle_244 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1704.9423, 11761.148, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_244 = _this; - _this setPos [1704.9423, 11761.148, 3.0517578e-005]; -}; - -_vehicle_245 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1693.145, 11750.366, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_245 = _this; - _this setPos [1693.145, 11750.366, -1.5258789e-005]; -}; - -_vehicle_246 = objNull; -if (true) then -{ - _this = "Fort_Barricade" createVehicle [1785.677, 11711.391]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_246 = _this; - _this setDir -70.637123; - _this setPos [1785.677, 11711.391]; -}; - -_vehicle_260 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo1" createVehicle [1707.9996, 11747.64, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_260 = _this; - _this setDir -59.406433; - _this setPos [1707.9996, 11747.64, 6.1035156e-005]; -}; - -_vehicle_262 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo3" createVehicle [1710.6086, 11764.796, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_262 = _this; - _this setDir 29.27306; - _this setPos [1710.6086, 11764.796, 7.6293945e-005]; -}; - -_vehicle_263 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo_sloupek" createVehicle [1711.0493, 11764.675, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_263 = _this; - _this setDir 29.301178; - _this setPos [1711.0493, 11764.675, 9.1552734e-005]; -}; - -_vehicle_264 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo1_branka" createVehicle [1710.2302, 11751.818]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_264 = _this; - _this setDir 120.98058; - _this setPos [1710.2302, 11751.818]; -}; - -_vehicle_265 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo1" createVehicle [1712.1309, 11755.127, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_265 = _this; - _this setDir 120.6221; - _this setPos [1712.1309, 11755.127, 6.1035156e-005]; -}; - -_vehicle_266 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo1" createVehicle [1714.1527, 11758.39, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_266 = _this; - _this setDir 121.63365; - _this setPos [1714.1527, 11758.39, 4.5776367e-005]; -}; - -_vehicle_267 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo_sloupek" createVehicle [1702.861, 11745.85, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_267 = _this; - _this setDir 30.580776; - _this setPos [1702.861, 11745.85, -4.5776367e-005]; -}; - -_vehicle_268 = objNull; -if (true) then -{ - _this = "MAP_plot_zboreny" createVehicle [1712.3214, 11764.05, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_268 = _this; - _this setDir 209.23892; - _this setPos [1712.3214, 11764.05, -1.5258789e-005]; -}; - -_vehicle_269 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo1" createVehicle [1716.087, 11761.622, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_269 = _this; - _this setDir 121.37959; - _this setPos [1716.087, 11761.622, 4.5776367e-005]; -}; - -_vehicle_270 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo1" createVehicle [1706.1078, 11744.326, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_270 = _this; - _this setDir -59.787006; - _this setPos [1706.1078, 11744.326, 3.0517578e-005]; -}; - -_vehicle_273 = objNull; -if (true) then -{ - _this = "MAP_plot_zed_drevo3" createVehicle [1705.6776, 11744.141, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_273 = _this; - _this setDir 30.628857; - _this setPos [1705.6776, 11744.141, 4.5776367e-005]; -}; - -_vehicle_274 = objNull; -if (true) then -{ - _this = "Land_Misc_Garb_Heap_EP1" createVehicle [1709.4761, 11743.834, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_274 = _this; - _this setPos [1709.4761, 11743.834, 0.0001373291]; -}; - -_vehicle_275 = objNull; -if (true) then -{ - _this = "Garbage_container" createVehicle [1709.2693, 11742.217, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_275 = _this; - _this setPos [1709.2693, 11742.217, 9.1552734e-005]; -}; - -_vehicle_276 = objNull; -if (true) then -{ - _this = "Garbage_container" createVehicle [1711.2416, 11742.056, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_276 = _this; - _this setDir -90.763466; - _this setPos [1711.2416, 11742.056, 3.0517578e-005]; -}; - -_vehicle_277 = objNull; -if (true) then -{ - _this = "Land_Misc_IronPipes_EP1" createVehicle [1752.5741, 11744.548, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_277 = _this; - _this setDir -22.570091; - _this setPos [1752.5741, 11744.548, 3.0517578e-005]; -}; - -_vehicle_278 = objNull; -if (true) then -{ - _this = "Paleta2" createVehicle [1731.0017, 11741.056, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_278 = _this; - _this setDir -14.452979; - _this setPos [1731.0017, 11741.056, 3.0517578e-005]; -}; - -_vehicle_279 = objNull; -if (true) then -{ - _this = "Pile_of_wood" createVehicle [1737.0198, 11752.13, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_279 = _this; - _this setDir 28.837755; - _this setPos [1737.0198, 11752.13, 4.5776367e-005]; -}; - -_vehicle_281 = objNull; -if (true) then -{ - _this = "Land_Ind_TankSmall" createVehicle [1734.4464, 11719.356, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_281 = _this; - _this setDir 94.121185; - _this setPos [1734.4464, 11719.356, 4.5776367e-005]; -}; - -_vehicle_282 = objNull; -if (true) then -{ - _this = "Land_Table_EP1" createVehicle [1710.5129, 11759.646, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_282 = _this; - _this setDir -86.252785; - _this setPos [1710.5129, 11759.646, 0.0001373291]; -}; - -_vehicle_283 = objNull; -if (true) then -{ - _this = "Land_Bench_EP1" createVehicle [1709.86, 11758.041, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_283 = _this; - _this setDir -59.123962; - _this setPos [1709.86, 11758.041, 9.1552734e-005]; -}; - -_vehicle_285 = objNull; -if (true) then -{ - _this = "FoldTable" createVehicle [1758.9523, 11706.042, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_285 = _this; - _this setDir -66.983597; - _this setPos [1758.9523, 11706.042, 6.1035156e-005]; -}; - -_vehicle_287 = objNull; -if (true) then -{ - _this = "FoldChair" createVehicle [1757.2609, 11705.792, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_287 = _this; - _this setDir -89.222832; - _this setPos [1757.2609, 11705.792, 0.00012207031]; -}; - -_vehicle_288 = objNull; -if (true) then -{ - _this = "FoldChair" createVehicle [1757.9318, 11707.078, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_288 = _this; - _this setDir -48.781147; - _this setPos [1757.9318, 11707.078, 3.0517578e-005]; -}; - -_vehicle_289 = objNull; -if (true) then -{ - _this = "FoldChair" createVehicle [1760.4084, 11706.505, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_289 = _this; - _this setDir 98.154198; - _this setPos [1760.4084, 11706.505, 9.1552734e-005]; -}; - -_vehicle_290 = objNull; -if (true) then -{ - _this = "FoldChair" createVehicle [1758.212, 11704.379, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_290 = _this; - _this setDir 205.50815; - _this setPos [1758.212, 11704.379, 0.00018310547]; -}; - -_vehicle_291 = objNull; -if (true) then -{ - _this = "Land_Bag_EP1" createVehicle [1755.3564, 11712.34, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_291 = _this; - _this setPos [1755.3564, 11712.34, 0.00018310547]; -}; - -_vehicle_293 = objNull; -if (true) then -{ - _this = "Land_Shed_M01" createVehicle [1771.2965, 11756.081, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_293 = _this; - _this setDir 32.618229; - _this setPos [1771.2965, 11756.081, 0.00015258789]; -}; - -_vehicle_294 = objNull; -if (true) then -{ - _this = "Land_fort_artillery_nest" createVehicle [1795.4894, 11750.955, -0.27388555]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_294 = _this; - _this setDir 72.356056; - _this setPos [1795.4894, 11750.955, -0.27388555]; -}; - -_vehicle_295 = objNull; -if (true) then -{ - _this = "MAP_b_pmugo" createVehicle [1798.3049, 11744.786]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_295 = _this; - _this setPos [1798.3049, 11744.786]; -}; - -_vehicle_297 = objNull; -if (true) then -{ - _this = "MAP_b_craet2" createVehicle [1792.3464, 11757.987, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_297 = _this; - _this setDir -18.898199; - _this setPos [1792.3464, 11757.987, 3.0517578e-005]; -}; - -_vehicle_298 = objNull; -if (true) then -{ - _this = "MAP_b_craet1" createVehicle [1795.364, 11757.459, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_298 = _this; - _this setPos [1795.364, 11757.459, -3.0517578e-005]; -}; - -_vehicle_299 = objNull; -if (true) then -{ - _this = "MAP_b_craet2" createVehicle [1795.6638, 11741.604, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_299 = _this; - _this setDir -44.770836; - _this setPos [1795.6638, 11741.604, 1.5258789e-005]; -}; - -_vehicle_302 = objNull; -if (true) then -{ - _this = "MAP_b_pmugo" createVehicle [1799.016, 11753.596, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_302 = _this; - _this setPos [1799.016, 11753.596, -3.0517578e-005]; -}; - -_vehicle_303 = objNull; -if (true) then -{ - _this = "MAP_b_pmugo" createVehicle [1799.3264, 11747.723, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_303 = _this; - _this setDir -135.60785; - _this setPos [1799.3264, 11747.723, -1.5258789e-005]; -}; - -_vehicle_304 = objNull; -if (true) then -{ - _this = "MAP_b_pmugo" createVehicle [1799.2179, 11745.7, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_304 = _this; - _this setPos [1799.2179, 11745.7, 1.5258789e-005]; -}; - -_vehicle_305 = objNull; -if (true) then -{ - _this = "MAP_b_pmugo" createVehicle [1800.3281, 11746.753]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_305 = _this; - _this setDir -77.773277; - _this setPos [1800.3281, 11746.753]; -}; - -_vehicle_306 = objNull; -if (true) then -{ - _this = "MAP_b_corylus2s" createVehicle [1736.3763, 11702.939]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_306 = _this; - _this setDir -36.332321; - _this setPos [1736.3763, 11702.939]; -}; - -_vehicle_307 = objNull; -if (true) then -{ - _this = "MAP_b_corylus2s" createVehicle [1698.1608, 11743.954, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_307 = _this; - _this setPos [1698.1608, 11743.954, -1.5258789e-005]; -}; - -_vehicle_308 = objNull; -if (true) then -{ - _this = "MAP_b_corylus2s" createVehicle [1693.4736, 11739.703, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_308 = _this; - _this setPos [1693.4736, 11739.703, -6.1035156e-005]; -}; - -_vehicle_309 = objNull; -if (true) then -{ - _this = "MAP_b_corylus2s" createVehicle [1826.6665, 11701.473, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_309 = _this; - _this setPos [1826.6665, 11701.473, 6.1035156e-005]; -}; - -_vehicle_310 = objNull; -if (true) then -{ - _this = "MAP_b_corylus" createVehicle [1830.8893, 11714.203, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_310 = _this; - _this setPos [1830.8893, 11714.203, 1.5258789e-005]; -}; - -_vehicle_312 = objNull; -if (true) then -{ - _this = "Rubbish1" createVehicle [1768.0225, 11696.404, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_312 = _this; - _this setPos [1768.0225, 11696.404, -3.0517578e-005]; -}; - -_vehicle_313 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Large" createVehicle [1771.0812, 11695.067, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_313 = _this; - _this setPos [1771.0812, 11695.067, 6.1035156e-005]; -}; - -_vehicle_314 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Large" createVehicle [1789.9847, 11753.014, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_314 = _this; - _this setDir -148.08163; - _this setPos [1789.9847, 11753.014, 7.6293945e-005]; -}; - -_vehicle_315 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Medium" createVehicle [1791.7251, 11752.817, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_315 = _this; - _this setDir -28.609703; - _this setPos [1791.7251, 11752.817, 3.0517578e-005]; -}; - -_vehicle_316 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Small" createVehicle [1790.5393, 11751.663, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_316 = _this; - _this setPos [1790.5393, 11751.663, 4.5776367e-005]; -}; - -_vehicle_319 = objNull; -if (true) then -{ - _this = "Barrels" createVehicle [1784.3082, 11752.366, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_319 = _this; - _this setPos [1784.3082, 11752.366, 3.0517578e-005]; -}; - -_vehicle_320 = objNull; -if (true) then -{ - _this = "Land_Misc_Cargo2E_EP1" createVehicle [1769.6725, 11734.484, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_320 = _this; - _this setDir 17.811895; - _this setPos [1769.6725, 11734.484, -6.1035156e-005]; -}; - -_vehicle_321 = objNull; -if (true) then -{ - _this = "Notice_board_EP1" createVehicle [1759.0591, 11708.798, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_321 = _this; - _this setDir -17.506258; - _this setPos [1759.0591, 11708.798, 3.0517578e-005]; -}; - -_vehicle_322 = objNull; -if (true) then -{ - _this = "Paleta2" createVehicle [1788.1893, 11742.232, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_322 = _this; - _this setPos [1788.1893, 11742.232, 3.0517578e-005]; -}; - -_vehicle_323 = objNull; -if (true) then -{ - _this = "Land_Misc_Cargo1E_EP1" createVehicle [1772.9535, 11734.484]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_323 = _this; - _this setDir 13.032956; - _this setPos [1772.9535, 11734.484]; -}; - -_vehicle_324 = objNull; -if (true) then -{ - _this = "Misc_Cargo1B_military" createVehicle [1773.1691, 11739.554, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_324 = _this; - _this setDir -70.169487; - _this setPos [1773.1691, 11739.554, 6.1035156e-005]; -}; - -_vehicle_325 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1818.3773, 11734.924, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_325 = _this; - _this setPos [1818.3773, 11734.924, 3.0517578e-005]; -}; - -_vehicle_326 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1811.2561, 11737.608, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_326 = _this; - _this setPos [1811.2561, 11737.608, 6.1035156e-005]; -}; - -_vehicle_327 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1815.5593, 11668.482, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_327 = _this; - _this setPos [1815.5593, 11668.482, 7.6293945e-005]; -}; - -_vehicle_328 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1821.8439, 11672.263, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_328 = _this; - _this setPos [1821.8439, 11672.263, 1.5258789e-005]; -}; - -_vehicle_329 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1775.0565, 11659.313, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_329 = _this; - _this setPos [1775.0565, 11659.313, 7.6293945e-005]; -}; - -_vehicle_330 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1778.6378, 11668.132, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_330 = _this; - _this setPos [1778.6378, 11668.132, 0]; -}; - -_vehicle_331 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1782.369, 11662.898, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_331 = _this; - _this setPos [1782.369, 11662.898, 1.5258789e-005]; -}; - -_vehicle_332 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1776.2426, 11673.526, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_332 = _this; - _this setPos [1776.2426, 11673.526, 1.5258789e-005]; -}; - -_vehicle_333 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1781.9351, 11673.039, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_333 = _this; - _this setPos [1781.9351, 11673.039, -1.5258789e-005]; -}; - -_vehicle_334 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1785.3544, 11668.778, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_334 = _this; - _this setPos [1785.3544, 11668.778, 0.0001373291]; -}; - -_vehicle_335 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1716.2144, 11698.987, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_335 = _this; - _this setPos [1716.2144, 11698.987, 3.0517578e-005]; -}; - -_vehicle_336 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1715.2286, 11695.379, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_336 = _this; - _this setPos [1715.2286, 11695.379, -3.0517578e-005]; -}; - -_vehicle_337 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1719.2367, 11695.09, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_337 = _this; - _this setPos [1719.2367, 11695.09, -1.5258789e-005]; -}; - -_vehicle_338 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1817.7792, 11644.645, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_338 = _this; - _this setPos [1817.7792, 11644.645, -6.1035156e-005]; -}; - -_vehicle_339 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1826.9309, 11644.036, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_339 = _this; - _this setPos [1826.9309, 11644.036, 7.6293945e-005]; -}; - -_vehicle_340 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1819.8135, 11650.418, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_340 = _this; - _this setPos [1819.8135, 11650.418, 1.5258789e-005]; -}; - -_vehicle_341 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1805.455, 11655.158, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_341 = _this; - _this setPos [1805.455, 11655.158, -7.6293945e-005]; -}; - -_vehicle_342 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1811.9998, 11658.955, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_342 = _this; - _this setPos [1811.9998, 11658.955, 0]; -}; - -_vehicle_343 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1813.3572, 11650.894, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_343 = _this; - _this setPos [1813.3572, 11650.894, 6.1035156e-005]; -}; - -_vehicle_344 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1818.2813, 11657.446, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_344 = _this; - _this setPos [1818.2813, 11657.446, 3.0517578e-005]; -}; - -_vehicle_345 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1820.9965, 11664.805, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_345 = _this; - _this setPos [1820.9965, 11664.805, 0]; -}; - -_vehicle_346 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1806.1724, 11647.095, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_346 = _this; - _this setPos [1806.1724, 11647.095, -1.5258789e-005]; -}; - -_vehicle_347 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1799.3335, 11651.37, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_347 = _this; - _this setPos [1799.3335, 11651.37, 3.0517578e-005]; -}; - -_vehicle_348 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1828.424, 11666.68, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_348 = _this; - _this setPos [1828.424, 11666.68, 7.6293945e-005]; -}; - -_vehicle_349 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1827.1429, 11658.434, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_349 = _this; - _this setPos [1827.1429, 11658.434, -1.5258789e-005]; -}; - -_vehicle_350 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1834.257, 11660.806, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_350 = _this; - _this setPos [1834.257, 11660.806, 7.6293945e-005]; -}; - -_vehicle_351 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1842.5028, 11664.276, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_351 = _this; - _this setPos [1842.5028, 11664.276, -6.1035156e-005]; -}; - -_vehicle_352 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1853.5725, 11670.329, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_352 = _this; - _this setPos [1853.5725, 11670.329, 6.1035156e-005]; -}; - -_vehicle_353 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1852.7408, 11663.604, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_353 = _this; - _this setPos [1852.7408, 11663.604, 0]; -}; - -_vehicle_354 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1846.7953, 11659.949, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_354 = _this; - _this setPos [1846.7953, 11659.949, 0]; -}; - -_vehicle_355 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1839.5594, 11656.809, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_355 = _this; - _this setPos [1839.5594, 11656.809, 1.5258789e-005]; -}; - -_vehicle_356 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1699.8507, 11657.333, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_356 = _this; - _this setPos [1699.8507, 11657.333, -3.0517578e-005]; -}; - -_vehicle_357 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1693.0599, 11668.095, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_357 = _this; - _this setPos [1693.0599, 11668.095, 3.0517578e-005]; -}; - -_vehicle_358 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1692.6597, 11660.395, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_358 = _this; - _this setPos [1692.6597, 11660.395, 7.6293945e-005]; -}; - -_vehicle_359 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1685.8239, 11664.753, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_359 = _this; - _this setPos [1685.8239, 11664.753, 7.6293945e-005]; -}; - -_vehicle_360 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1685.7426, 11656.082, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_360 = _this; - _this setPos [1685.7426, 11656.082, 0]; -}; - -_vehicle_361 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1694.1979, 11651.563, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_361 = _this; - _this setPos [1694.1979, 11651.563, 0]; -}; - -_vehicle_362 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1702.875, 11648.814, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_362 = _this; - _this setPos [1702.875, 11648.814, 0]; -}; - -_vehicle_363 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1712.1531, 11643.84, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_363 = _this; - _this setPos [1712.1531, 11643.84, 3.0517578e-005]; -}; - -_vehicle_364 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1731.766, 11648.952, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_364 = _this; - _this setPos [1731.766, 11648.952, 6.1035156e-005]; -}; - -_vehicle_365 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1772.4023, 11777.735, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_365 = _this; - _this setPos [1772.4023, 11777.735, 3.0517578e-005]; -}; - -_vehicle_366 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [1732.5569, 11695.86, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_366 = _this; - _this setDir 107.07949; - _this setPos [1732.5569, 11695.86, -7.6293945e-005]; -}; - -_vehicle_367 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1741.5575, 11735.501]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_367 = _this; - _this setDir -79.108429; - _this setPos [1741.5575, 11735.501]; -}; - -_vehicle_368 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1782.0217, 11715.149, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_368 = _this; - _this setPos [1782.0217, 11715.149, 9.1552734e-005]; -}; - -_vehicle_369 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1777.9645, 11715.237, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_369 = _this; - _this setPos [1777.9645, 11715.237, 0]; -}; - -_vehicle_370 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1781.8473, 11712.026, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_370 = _this; - _this setDir -123.27325; - _this setPos [1781.8473, 11712.026, 7.6293945e-005]; -}; - -_vehicle_371 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1753.484, 11726.446, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_371 = _this; - _this setPos [1753.484, 11726.446, 3.0517578e-005]; -}; - -_vehicle_372 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1711.7731, 11749.046, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_372 = _this; - _this setDir 22.487579; - _this setPos [1711.7731, 11749.046, 0.00012207031]; -}; - -_vehicle_373 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1725.6572, 11742.825, 0.00030517578]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_373 = _this; - _this setPos [1725.6572, 11742.825, 0.00030517578]; -}; - -_vehicle_374 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1719.2198, 11748.196, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_374 = _this; - _this setDir -102.5114; - _this setPos [1719.2198, 11748.196, 7.6293945e-005]; -}; - -_vehicle_375 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1754.0944, 11715.765]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_375 = _this; - _this setDir 104.09085; - _this setPos [1754.0944, 11715.765]; -}; - -_vehicle_376 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1768.7404, 11717.692, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_376 = _this; - _this setDir -92.47834; - _this setPos [1768.7404, 11717.692, 0.00012207031]; -}; - -_vehicle_377 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1772.468, 11717.166, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_377 = _this; - _this setDir 154.51218; - _this setPos [1772.468, 11717.166, 9.1552734e-005]; -}; - -_vehicle_378 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1751.5055, 11717.046, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_378 = _this; - _this setPos [1751.5055, 11717.046, 9.1552734e-005]; -}; - -_vehicle_379 = objNull; -if (true) then -{ - _this = "USMC_WarfareBVehicleServicePoint" createVehicle [1742.7795, 11678.495, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_379 = _this; - _this setDir 93.374069; - _this setPos [1742.7795, 11678.495, -3.0517578e-005]; -}; - -_vehicle_381 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [1730.3744, 11758.889, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_381 = _this; - _this setDir -162.58514; - _this setPos [1730.3744, 11758.889, 1.5258789e-005]; -}; - -_vehicle_398 = objNull; -if (true) then -{ - _this = "Hanged_MD" createVehicle [1740.3192, 11710.013, 2.841176]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_398 = _this; - _this setDir -161.32813; - _this setPos [1740.3192, 11710.013, 2.841176]; -}; - -_vehicle_399 = objNull; -if (true) then -{ - _this = "Hanged" createVehicle [1890.8689, 11707.069, 5.25244]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_399 = _this; - _this setPos [1890.8689, 11707.069, 5.25244]; -}; - -_vehicle_400 = objNull; -if (true) then -{ - _this = "Hanged" createVehicle [1885.812, 11699.524, 5.1738005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_400 = _this; - _this setDir 139.2079; - _this setPos [1885.812, 11699.524, 5.1738005]; -}; - -_vehicle_402 = objNull; -if (true) then -{ - _this = "MAP_ruiny_kopa_big" createVehicle [1723.8173, 11768.755, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_402 = _this; - _this setDir 30.030685; - _this setPos [1723.8173, 11768.755, 1.5258789e-005]; -}; - -_vehicle_404 = objNull; -if (true) then -{ - _this = "Axe_woodblock" createVehicle [1733.6243, 11752.101, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_404 = _this; - _this setPos [1733.6243, 11752.101, 3.0517578e-005]; -}; - -_vehicle_405 = objNull; -if (true) then -{ - _this = "Land_Ind_Timbers" createVehicle [1734.9487, 11747.116, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_405 = _this; - _this setDir -50.073788; - _this setPos [1734.9487, 11747.116, 6.1035156e-005]; -}; - -_vehicle_406 = objNull; -if (true) then -{ - _this = "Land_transport_cart_EP1" createVehicle [1753.8369, 11734.076, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_406 = _this; - _this setDir -40.849697; - _this setPos [1753.8369, 11734.076, -7.6293945e-005]; -}; - -_vehicle_407 = objNull; -if (true) then -{ - _this = "Land_transport_cart_EP1" createVehicle [1761.5515, 11733.089, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_407 = _this; - _this setDir 58.268723; - _this setPos [1761.5515, 11733.089, 3.0517578e-005]; -}; - -_vehicle_411 = objNull; -if (true) then -{ - _this = "MAP_sara_domek_vilka_ruins" createVehicle [1726.9601, 11728.266, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_411 = _this; - _this setDir -87.186462; - _this setPos [1726.9601, 11728.266, -3.0517578e-005]; -}; - -_vehicle_412 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1731.9874, 11728.467, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_412 = _this; - _this setPos [1731.9874, 11728.467, 1.5258789e-005]; -}; - -_vehicle_413 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1729.1211, 11729.173, -0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_413 = _this; - _this setPos [1729.1211, 11729.173, -0.00010681152]; -}; - -_vehicle_414 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1725.5961, 11729.712]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_414 = _this; - _this setPos [1725.5961, 11729.712]; -}; - -_vehicle_415 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1727.0978, 11727.643, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_415 = _this; - _this setPos [1727.0978, 11727.643, -1.5258789e-005]; -}; - -_vehicle_416 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [1724.3705, 11729.141, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_416 = _this; - _this setPos [1724.3705, 11729.141, 7.6293945e-005]; -}; - -_vehicle_417 = objNull; -if (true) then -{ - _this = "Land_Fire_DZ" createVehicle [1730.9259, 11729.666, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_417 = _this; - _this setPos [1730.9259, 11729.666, 1.5258789e-005]; -}; - -_vehicle_418 = objNull; -if (true) then -{ - _this = "Land_Fire_DZ" createVehicle [1728.1578, 11729.909]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_418 = _this; - _this setPos [1728.1578, 11729.909]; -}; - -_vehicle_419 = objNull; -if (true) then -{ - _this = "Land_Fire_DZ" createVehicle [1727.3409, 11724.06, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_419 = _this; - _this setPos [1727.3409, 11724.06, 7.6293945e-005]; -}; - -_vehicle_420 = objNull; -if (true) then -{ - _this = "Land_Fire_barrel" createVehicle [1782.3253, 11754.595, -3.0517578e-005]; //Land_Fire_barrel_burning -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_420 = _this; - _this setPos [1782.3253, 11754.595, -3.0517578e-005]; -}; - -_vehicle_421 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Large" createVehicle [1723.9607, 11706.66, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_421 = _this; - _this setDir -114.6309; - _this setPos [1723.9607, 11706.66, 1.5258789e-005]; -}; - -_vehicle_422 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Medium" createVehicle [1725.2511, 11706.527, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_422 = _this; - _this setDir 36.930569; - _this setPos [1725.2511, 11706.527, 1.5258789e-005]; -}; - -_vehicle_424 = objNull; -if (true) then -{ - _this = "AmmoCrate_NoInteractive_" createVehicle [1728.3799, 11706.581, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_424 = _this; - _this setDir -161.33557; - _this setPos [1728.3799, 11706.581, 1.5258789e-005]; -}; - -_vehicle_425 = objNull; -if (true) then -{ - _this = "AmmoCrate_NoInteractive_" createVehicle [1727.4064, 11706.175, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_425 = _this; - _this setDir -18.341053; - _this setPos [1727.4064, 11706.175, -1.5258789e-005]; -}; - -_vehicle_429 = objNull; -if (true) then -{ - _this = "Land_CamoNetVar_NATO" createVehicle [1758.9871, 11706.935]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_429 = _this; - _this setDir -69.174316; - _this setPos [1758.9871, 11706.935]; -}; - -_vehicle_430 = objNull; -if (true) then -{ - _this = "Rubbish4" createVehicle [1758.5311, 11724.679, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_430 = _this; - _this setPos [1758.5311, 11724.679, 1.5258789e-005]; -}; - -_vehicle_431 = objNull; -if (true) then -{ - _this = "Rubbish5" createVehicle [1752.8125, 11721.767, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_431 = _this; - _this setDir 130.58769; - _this setPos [1752.8125, 11721.767, -3.0517578e-005]; -}; - -_vehicle_432 = objNull; -if (true) then -{ - _this = "Rubbish3" createVehicle [1764.8436, 11722.652, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_432 = _this; - _this setPos [1764.8436, 11722.652, -3.0517578e-005]; -}; - -_vehicle_433 = objNull; -if (true) then -{ - _this = "Rubbish2" createVehicle [1703.2294, 11748.844, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_433 = _this; - _this setDir -40.280521; - _this setPos [1703.2294, 11748.844, -3.0517578e-005]; -}; - -_vehicle_434 = objNull; -if (true) then -{ - _this = "Rubbish3" createVehicle [1734.4928, 11736.971, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_434 = _this; - _this setPos [1734.4928, 11736.971, -1.5258789e-005]; -}; - -_vehicle_441 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1773.0649, 11715.46, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_441 = _this; - _this setDir 54.238064; - _this setPos [1773.0649, 11715.46, 1.5258789e-005]; -}; - -_vehicle_442 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1777.5896, 11718.415, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_442 = _this; - _this setDir -101.74825; - _this setPos [1777.5896, 11718.415, 6.1035156e-005]; -}; - -_vehicle_443 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1760.6509, 11720.699, -0.022119835]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_443 = _this; - _this setDir -34.465755; - _this setPos [1760.6509, 11720.699, -0.022119835]; -}; - -_vehicle_444 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1771.2118, 11719.023, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_444 = _this; - _this setDir -2.5688567; - _this setPos [1771.2118, 11719.023, 1.5258789e-005]; -}; - -_vehicle_445 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1774.1366, 11712.969, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_445 = _this; - _this setDir -2.7098234; - _this setPos [1774.1366, 11712.969, 4.5776367e-005]; -}; - -_vehicle_446 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1776.0974, 11715.178, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_446 = _this; - _this setDir -48.150352; - _this setPos [1776.0974, 11715.178, 3.0517578e-005]; -}; - -_vehicle_447 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1778.2152, 11711.796, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_447 = _this; - _this setDir 113.23923; - _this setPos [1778.2152, 11711.796, 9.1552734e-005]; -}; - -_vehicle_448 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1777.3236, 11713.607, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_448 = _this; - _this setDir -160.15511; - _this setPos [1777.3236, 11713.607, 6.1035156e-005]; -}; - -_vehicle_449 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [1780.332, 11713.689, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_449 = _this; - _this setPos [1780.332, 11713.689, 0.00010681152]; -}; - -_vehicle_450 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [1758.3058, 11726.226, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_450 = _this; - _this setDir -44.517025; - _this setPos [1758.3058, 11726.226, 6.1035156e-005]; -}; - -_vehicle_451 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1691.908, 11779.879, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_451 = _this; - _this setPos [1691.908, 11779.879, 0]; -}; - -_vehicle_452 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1699.468, 11783.096, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_452 = _this; - _this setPos [1699.468, 11783.096, 0]; -}; - -_vehicle_453 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1701.0255, 11791.403, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_453 = _this; - _this setPos [1701.0255, 11791.403, 6.1035156e-005]; -}; - -_vehicle_454 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1692.9945, 11788.762, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_454 = _this; - _this setPos [1692.9945, 11788.762, 4.5776367e-005]; -}; - -_vehicle_455 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1684.9795, 11775.215, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_455 = _this; - _this setPos [1684.9795, 11775.215, 1.5258789e-005]; -}; - -_vehicle_456 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1686.9609, 11784.324, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_456 = _this; - _this setPos [1686.9609, 11784.324, -1.5258789e-005]; -}; - -_vehicle_457 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1676.4802, 11778.749, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_457 = _this; - _this setPos [1676.4802, 11778.749, 6.1035156e-005]; -}; - -_vehicle_458 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1680.7467, 11783.769, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_458 = _this; - _this setPos [1680.7467, 11783.769, -1.5258789e-005]; -}; - -_vehicle_459 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1682.2053, 11767.948, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_459 = _this; - _this setPos [1682.2053, 11767.948, -1.5258789e-005]; -}; - -_vehicle_460 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1676.91, 11770.669, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_460 = _this; - _this setPos [1676.91, 11770.669, 4.5776367e-005]; -}; - -_vehicle_461 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1668.7789, 11772.893, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_461 = _this; - _this setPos [1668.7789, 11772.893, 3.0517578e-005]; -}; - -_vehicle_462 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1856.4415, 11691.763, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_462 = _this; - _this setPos [1856.4415, 11691.763, -3.0517578e-005]; -}; - -_vehicle_463 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1848.0262, 11693.281, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_463 = _this; - _this setPos [1848.0262, 11693.281, -1.5258789e-005]; -}; - -_vehicle_464 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1862.3777, 11697.473, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_464 = _this; - _this setPos [1862.3777, 11697.473, -4.5776367e-005]; -}; - -_vehicle_465 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1855.7241, 11698.531, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_465 = _this; - _this setPos [1855.7241, 11698.531, 4.5776367e-005]; -}; - -_vehicle_466 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1845.3132, 11701.044, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_466 = _this; - _this setPos [1845.3132, 11701.044, 6.1035156e-005]; -}; - -_vehicle_467 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1839.9762, 11695.527, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_467 = _this; - _this setPos [1839.9762, 11695.527, 7.6293945e-005]; -}; - -_vehicle_468 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1835.9882, 11701.401, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_468 = _this; - _this setPos [1835.9882, 11701.401, 6.1035156e-005]; -}; - -_vehicle_469 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1829.6879, 11704.675, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_469 = _this; - _this setPos [1829.6879, 11704.675, 3.0517578e-005]; -}; - -_vehicle_470 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1831.7963, 11697.417, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_470 = _this; - _this setPos [1831.7963, 11697.417, -9.1552734e-005]; -}; - -_vehicle_471 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1850.6438, 11704.818, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_471 = _this; - _this setPos [1850.6438, 11704.818, 1.5258789e-005]; -}; - -_vehicle_472 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1841.4565, 11707.11, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_472 = _this; - _this setPos [1841.4565, 11707.11, -3.0517578e-005]; -}; - -_vehicle_473 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1834.8107, 11713.058, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_473 = _this; - _this setPos [1834.8107, 11713.058, 0]; -}; - -_vehicle_474 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1844.1619, 11713.108, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_474 = _this; - _this setPos [1844.1619, 11713.108, 1.5258789e-005]; -}; - -_vehicle_475 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1858.288, 11705.881, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_475 = _this; - _this setPos [1858.288, 11705.881, 9.1552734e-005]; -}; - -_vehicle_476 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1868.3269, 11702.277, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_476 = _this; - _this setPos [1868.3269, 11702.277, -3.0517578e-005]; -}; - -_vehicle_477 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1864.3794, 11708.302, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_477 = _this; - _this setPos [1864.3794, 11708.302, 1.5258789e-005]; -}; - -_vehicle_478 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1850.5186, 11712.063, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_478 = _this; - _this setPos [1850.5186, 11712.063, 1.5258789e-005]; -}; - -_vehicle_479 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1857.1821, 11712.275, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_479 = _this; - _this setPos [1857.1821, 11712.275, 4.5776367e-005]; -}; - -_vehicle_480 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1835.2003, 11682.677, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_480 = _this; - _this setPos [1835.2003, 11682.677, -1.5258789e-005]; -}; - -_vehicle_481 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1841.9657, 11680.122]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_481 = _this; - _this setPos [1841.9657, 11680.122]; -}; - -_vehicle_482 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1847.7783, 11676.99, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_482 = _this; - _this setPos [1847.7783, 11676.99, 4.5776367e-005]; -}; - -_vehicle_483 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1854.608, 11676.529, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_483 = _this; - _this setPos [1854.608, 11676.529, 6.1035156e-005]; -}; - -_vehicle_484 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1761.8528, 11780.8, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_484 = _this; - _this setPos [1761.8528, 11780.8, -6.1035156e-005]; -}; - -_vehicle_485 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1768.349, 11784.168, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_485 = _this; - _this setPos [1768.349, 11784.168, 4.5776367e-005]; -}; - -_vehicle_486 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1763.7542, 11796.919, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_486 = _this; - _this setPos [1763.7542, 11796.919, 4.5776367e-005]; -}; - -_vehicle_487 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1776.1328, 11784.221, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_487 = _this; - _this setPos [1776.1328, 11784.221, 9.1552734e-005]; -}; - -_vehicle_488 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1770.5709, 11792.384, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_488 = _this; - _this setPos [1770.5709, 11792.384, -7.6293945e-005]; -}; - -_vehicle_489 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1759.3026, 11789.009, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_489 = _this; - _this setPos [1759.3026, 11789.009, -6.1035156e-005]; -}; - -_vehicle_490 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1754.4037, 11796.335, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_490 = _this; - _this setPos [1754.4037, 11796.335, -6.1035156e-005]; -}; - -_vehicle_491 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1746.2495, 11792.926, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_491 = _this; - _this setPos [1746.2495, 11792.926, 6.1035156e-005]; -}; - -_vehicle_492 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1753.4333, 11803.065, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_492 = _this; - _this setPos [1753.4333, 11803.065, -3.0517578e-005]; -}; - -_vehicle_493 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1759.913, 11802.813, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_493 = _this; - _this setPos [1759.913, 11802.813, 0.00016784668]; -}; - -_vehicle_494 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1779.2607, 11776.724, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_494 = _this; - _this setPos [1779.2607, 11776.724, 6.1035156e-005]; -}; - -_vehicle_495 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1764.5327, 11788.477, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_495 = _this; - _this setPos [1764.5327, 11788.477, 0.0001373291]; -}; - -_vehicle_496 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1741.1433, 11809.904, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_496 = _this; - _this setPos [1741.1433, 11809.904, -3.0517578e-005]; -}; - -_vehicle_497 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1693.8593, 11711.429, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_497 = _this; - _this setPos [1693.8593, 11711.429, -3.0517578e-005]; -}; - -_vehicle_498 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1697.4626, 11699.363, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_498 = _this; - _this setPos [1697.4626, 11699.363, 1.5258789e-005]; -}; - -_vehicle_499 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1696.1613, 11797.104, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_499 = _this; - _this setPos [1696.1613, 11797.104, 1.5258789e-005]; -}; - -_vehicle_500 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1685.2531, 11791.32, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_500 = _this; - _this setPos [1685.2531, 11791.32, 9.1552734e-005]; -}; - -_vehicle_501 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1672.1652, 11784.813, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_501 = _this; - _this setPos [1672.1652, 11784.813, 0.00012207031]; -}; - -_vehicle_502 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1663.6592, 11778.568, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_502 = _this; - _this setPos [1663.6592, 11778.568, 0.00015258789]; -}; - -_vehicle_503 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1767.1655, 11658.552, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_503 = _this; - _this setPos [1767.1655, 11658.552, 7.6293945e-005]; -}; - -_vehicle_504 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1764.712, 11649.983, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_504 = _this; - _this setPos [1764.712, 11649.983, -1.5258789e-005]; -}; - -_vehicle_505 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1772.953, 11652.125, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_505 = _this; - _this setPos [1772.953, 11652.125, 0.0001373291]; -}; - -_vehicle_506 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1784.0044, 11654.614, 0.0002746582]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_506 = _this; - _this setPos [1784.0044, 11654.614, 0.0002746582]; -}; - -_vehicle_507 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1791.4675, 11652.742, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_507 = _this; - _this setPos [1791.4675, 11652.742, 3.0517578e-005]; -}; - -_vehicle_508 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1704.9604, 11639.906, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_508 = _this; - _this setPos [1704.9604, 11639.906, 4.5776367e-005]; -}; - -_vehicle_509 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1697.2915, 11644.601, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_509 = _this; - _this setPos [1697.2915, 11644.601, -4.5776367e-005]; -}; - -_vehicle_510 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1686.9954, 11649.279, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_510 = _this; - _this setPos [1686.9954, 11649.279, 4.5776367e-005]; -}; - -_vehicle_511 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [1874.8612, 11707.525, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_511 = _this; - _this setPos [1874.8612, 11707.525, 3.0517578e-005]; -}; - -_vehicle_512 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [1877.3389, 11682.198, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_512 = _this; - _this setPos [1877.3389, 11682.198, 1.5258789e-005]; -}; - -_vehicle_513 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1881.3235, 11721.305, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_513 = _this; - _this setPos [1881.3235, 11721.305, 4.5776367e-005]; -}; - -_vehicle_514 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1884.6448, 11713.97, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_514 = _this; - _this setPos [1884.6448, 11713.97, -6.1035156e-005]; -}; - -_vehicle_515 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1877.8523, 11714.619, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_515 = _this; - _this setPos [1877.8523, 11714.619, 6.1035156e-005]; -}; - -_vehicle_516 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1874.8912, 11727.201, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_516 = _this; - _this setPos [1874.8912, 11727.201, 0.00010681152]; -}; - -_vehicle_517 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1873.2201, 11719.78, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_517 = _this; - _this setPos [1873.2201, 11719.78, 0.00010681152]; -}; - -_vehicle_518 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1872.5229, 11731.38, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_518 = _this; - _this setPos [1872.5229, 11731.38, 0.00016784668]; -}; - -_vehicle_519 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1884.8596, 11727.392, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_519 = _this; - _this setPos [1884.8596, 11727.392, 9.1552734e-005]; -}; - -_vehicle_520 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1868.6838, 11713.784, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_520 = _this; - _this setPos [1868.6838, 11713.784, 1.5258789e-005]; -}; - -_vehicle_521 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1867.6802, 11720.395, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_521 = _this; - _this setPos [1867.6802, 11720.395, 3.0517578e-005]; -}; - -_vehicle_522 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1869.1489, 11724.458, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_522 = _this; - _this setPos [1869.1489, 11724.458, 0]; -}; - -_vehicle_523 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1865.9983, 11731.604, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_523 = _this; - _this setPos [1865.9983, 11731.604, 0.00016784668]; -}; - -_vehicle_524 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1860.6592, 11667.146, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_524 = _this; - _this setPos [1860.6592, 11667.146, 3.0517578e-005]; -}; - -_vehicle_525 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1865.2036, 11658.021, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_525 = _this; - _this setPos [1865.2036, 11658.021, 4.5776367e-005]; -}; - -_vehicle_526 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1871.8246, 11661.26, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_526 = _this; - _this setPos [1871.8246, 11661.26, 6.1035156e-005]; -}; - -_vehicle_527 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1866.5234, 11673.063]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_527 = _this; - _this setPos [1866.5234, 11673.063]; -}; - -_vehicle_528 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1870.442, 11668.318, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_528 = _this; - _this setPos [1870.442, 11668.318, 6.1035156e-005]; -}; - -_vehicle_529 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1877.5996, 11658.888, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_529 = _this; - _this setPos [1877.5996, 11658.888, 0.00016784668]; -}; - -_vehicle_530 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1878.2373, 11665.856, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_530 = _this; - _this setPos [1878.2373, 11665.856, 0.00016784668]; -}; - -_vehicle_531 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1878.4214, 11672.343, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_531 = _this; - _this setPos [1878.4214, 11672.343, 0.00012207031]; -}; - -_vehicle_532 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1879.7574, 11650.737, 0.00024414063]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_532 = _this; - _this setPos [1879.7574, 11650.737, 0.00024414063]; -}; - -_vehicle_533 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1870.8713, 11653.611, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_533 = _this; - _this setPos [1870.8713, 11653.611, 0.00016784668]; -}; - -_vehicle_534 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1683.8202, 11671.608, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_534 = _this; - _this setPos [1683.8202, 11671.608, 6.1035156e-005]; -}; - -_vehicle_535 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1694.0057, 11678.759, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_535 = _this; - _this setPos [1694.0057, 11678.759, 3.0517578e-005]; -}; - -_vehicle_536 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1682.21, 11687.101, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_536 = _this; - _this setPos [1682.21, 11687.101, 3.0517578e-005]; -}; - -_vehicle_537 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1695.7676, 11688.408, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_537 = _this; - _this setPos [1695.7676, 11688.408, 9.1552734e-005]; -}; - -_vehicle_538 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1681.5935, 11697.468, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_538 = _this; - _this setPos [1681.5935, 11697.468, -7.6293945e-005]; -}; - -_vehicle_539 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1678.7792, 11716.734, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_539 = _this; - _this setPos [1678.7792, 11716.734, 6.1035156e-005]; -}; - -_vehicle_540 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1682.0953, 11725.604, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_540 = _this; - _this setPos [1682.0953, 11725.604, -1.5258789e-005]; -}; - -_vehicle_541 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1688.4164, 11720.368, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_541 = _this; - _this setPos [1688.4164, 11720.368, 7.6293945e-005]; -}; - -_vehicle_542 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1686.7047, 11732.851, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_542 = _this; - _this setPos [1686.7047, 11732.851, 3.0517578e-005]; -}; - -_vehicle_543 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1784.7362, 11809.722, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_543 = _this; - _this setPos [1784.7362, 11809.722, 0.00012207031]; -}; - -_vehicle_544 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1778.1505, 11818.789, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_544 = _this; - _this setPos [1778.1505, 11818.789, 3.0517578e-005]; -}; - -_vehicle_545 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1740.1563, 11708.694, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_545 = _this; - _this setPos [1740.1563, 11708.694, 6.1035156e-005]; -}; - -_vehicle_547 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [1720.7556, 11643.052, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_547 = _this; - _this setPos [1720.7556, 11643.052, 0.00010681152]; -}; - -_vehicle_1235 = objNull; -if (true) then -{ - _this = "Mi8Wreck" createVehicle [1726.4069, 11681.369, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_1235 = _this; - _this setDir -120.01289; - _this setPos [1726.4069, 11681.369, -3.0517578e-005]; -}; - -_vehicle_1237 = objNull; -if (true) then -{ - _this = "Axe_woodblock" createVehicle [1760.7675, 11721.288, -0.48907313]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_1237 = _this; - _this setDir -139.52458; - _this setPos [1760.7675, 11721.288, -0.48907313]; -}; +[[ + ["MAP_asf3_12",[1984.9187,11712.01,3.0517578e-005],-87.957932], + ["MAP_asf3_0_2000",[2002.1959,11711.578,-7.6293945e-005],-88.27459], + ["MAP_asf3_6konec",[2008.3251,11711.512,-1.5258789e-005],-89.265335], + ["MAP_asf3_1_1000",[1972.451,11712.452],-87.905663], + ["MAP_asf3_10_75",[1941.998,11712.555],82.539734], + ["MAP_asf3_10_75",[1942.1244,11712.463],-96.258011], + ["MAP_asf3_15_75",[1929.1057,11712.034,3.0517578e-005],-86.258156], + ["MAP_asf3_60_10",[1893.4742,11715.37,3.0517578e-005],47.016041], + ["MAP_asf3_12",[1913.6475,11714.381],-73.279716], + ["MAP_asf3_12",[1884.4944,11706.747,1.5258789e-005],46.756504], + ["MAP_asf3_12",[1875.4884,11698.179,0.00012207031],46.532982], + ["MAP_asf3_1_1000",[1863.0055,11686.327,1.5258789e-005],45.856564], + ["MAP_asf3_60_10",[1863.1049,11686.322,-1.5258789e-005],-133.37495], + ["MAP_asf3_1_1000",[1853.6176,11683.976,-1.5258789e-005],-73.769394], + ["MAP_asf3_10_100",[1836.9906,11688.811],-73.365013], + ["MAP_pond_big_42_04",[1802.7939,11696.994,0.27322203],0], + ["MAP_R2_RockWall",[1804.7111,11673.503,-28.283916],-65.804031], + ["MAP_R2_RockWall",[1828.6597,11723.607,-24.94239],103.62435], + ["MAP_R2_RockWall",[1808.7726,11723.291,-31.437239],156.08258], + ["MAP_R2_Rock1",[1791.749,11674.111,-21.365698],33.776997], + ["MAP_Bridge_wood_25",[1805.6094,11702.166,1.5258789e-005],24.970881], + ["MAP_R2_Boulder1",[1820.0166,11698.858,-0.026716888],-102.68056], + ["MAP_R2_Boulder1",[1816.3378,11693.163,0.27310959],72.806061], + ["MAP_asf3_0_2000",[1791.3824,11708.735,-1.5258789e-005],-64.689804], + ["ClutterCutter_small_EP1",[1802.2479,11691.153,0],0], + ["ClutterCutter_EP1",[1807.9299,11693.847,1.5258789e-005],0], + ["ClutterCutter_small_EP1",[1788.1415,11710.126,3.0517578e-005],0], + ["ClutterCutter_EP1",[1824.0846,11692.684,3.0517578e-005],0], + ["MAP_asf3_1_1000",[1775.7607,11716.232,-4.5776367e-005],-63.971947], + ["MAP_asf3_1_1000",[1760.2611,11723.933,3.0517578e-005],-62.566067], + ["MAP_asf3_1_1000",[1744.8807,11732.19,6.1035156e-005],-62.272873], + ["MAP_asf3_1_1000",[1729.678,11740.413],-60.928402], + ["MAP_asf3_6konec",[1709.1453,11752.14,-4.5776367e-005],119.6788], + ["MAP_R_HouseV_2L",[1723.8802,11762.272,-19.685225],-58.260632], + ["MAP_R_HouseV2_03B",[1698.0996,11759.021,-3.0517578e-005],29.547768], + ["MAP_Barn_W_02_ruins",[1707.6729,11729.523,0.00019836426],121.25789], + ["MAP_Shed_M02_ruins",[1779.2935,11721.693,7.6293945e-005],37.449184], + ["MAP_Shed_M01_ruins",[1747.9758,11721.98],30.947336], + ["UralWreck",[1792.848,11699.03,0.00018310547],-34.449684], + ["HMMWVWreck",[1771.1575,11715.51,1.5258789e-005],93.814789], + ["MAP_Farm_Cowshed_a",[1728.5366,11725.269,0.00022888184],93.851532], + ["Land_Ind_SawMill",[1747.4368,11757.14,9.1552734e-005],30.271875], + ["Land_Ind_SawMillPen",[1764.7755,11744.41,3.0517578e-005],31.224991], + ["Land_Ind_Workshop01_01",[1880.9644,11690.132,3.0517578e-005],316.25232], + ["MASH_EP1",[1750.0703,11701.407,7.6293945e-005],-304.14282], + ["MASH_EP1",[1746.2828,11706.929,7.6293945e-005],56.605083], + ["CampEast",[1755.4991,11693.352,0.00019836426],208.48862], + ["CampEast",[1763.5485,11688.976,-3.0517578e-005],208.972], + ["Misc_Cargo1Bo_military",[1769.1373,11702.974,3.0517578e-005],90.935242], + ["Body",[1757.7006,11736.37,3.0517578e-005],0], + ["Body",[1759.0682,11736.326,1.5258789e-005],0], + ["Body",[1760.723,11736.299,-1.5258789e-005],0], + ["Body",[1762.4061,11736.274,1.5258789e-005],0], + ["Body",[1759.105,11739.66,1.5258789e-005],0], + ["Body",[1760.6445,11739.379,-3.0517578e-005],0], + ["Body",[1762.3646,11739.411,-1.5258789e-005],0], + ["Body",[1764.2596,11739.04,-1.5258789e-005],0], + ["Body",[1760.6523,11742.989,1.5258789e-005],0], + ["Body",[1762.4423,11742.709,1.5258789e-005],0], + ["Body",[1764.2177,11742.704,-1.5258789e-005],0], + ["Body",[1766.0786,11742.517,1.5258789e-005],0], + ["Body",[1762.5627,11746.312],0], + ["Body",[1764.3641,11746.244,-3.0517578e-005],0], + ["Body",[1766.1538,11746.084],0], + ["Body",[1768.0387,11745.889],0], + ["Body",[1770.2762,11749.419,-6.1035156e-005],0], + ["Body",[1768.114,11749.472,3.0517578e-005],0], + ["Body",[1766.2771,11749.629,1.5258789e-005],0], + ["Body",[1764.4037,11749.53,-3.0517578e-005],0], + ["Body",[1724.1654,11737.608,0.00010681152],29.616356], + ["Body",[1722.9143,11738.433,0.00012207031],25.478025], + ["Body",[1721.5681,11739.186,0.0001373291],26.433308], + ["Body",[1720.2083,11740.069,0.0001373291],29.268167], + ["Body",[1725.4467,11736.869,1.5258789e-005],28.882954], + ["Body",[1726.9121,11736.062,7.6293945e-005],30.537571], + ["Body",[1728.3807,11735.187,0.00021362305],27.741898], + ["AmmoCrates_NoInteractive_Large",[1753.5286,11712.48,4.5776367e-005],0], + ["AmmoCrates_NoInteractive_Medium",[1754.4924,11713.708,4.5776367e-005],-108.6438], + ["Land_fort_bagfence_long",[1769.6257,11683.91,6.1035156e-005],-66.487633], + ["Land_fort_bagfence_long",[1770.8148,11686.578,7.6293945e-005],-64.527924], + ["Land_fort_bagfence_long",[1772.084,11689.342,9.1552734e-005],-66.378868], + ["Land_fort_bagfence_long",[1773.2328,11692.024,0.00018310547],-67.031334], + ["Land_fort_bagfence_long",[1774.3792,11694.753,7.6293945e-005],-67.347664], + ["Land_fort_bagfence_long",[1775.4854,11697.461,-1.5258789e-005],-68.176559], + ["Land_fort_bagfence_long",[1776.6003,11700.206,1.5258789e-005],-68.824898], + ["Land_fort_bagfence_long",[1777.7183,11702.917,0.00012207031],-68.663048], + ["Land_fort_bagfence_long",[1778.8997,11705.713,4.5776367e-005],-67.856056], + ["Land_fort_bagfence_long",[1780.0229,11708.425,0.00016784668],-67.61171], + ["Land_fort_bagfence_long",[1783.9249,11717.544,0.0001373291],-66.749901], + ["Land_fort_bagfence_long",[1785.0416,11720.148,0.00010681152],-67.153412], + ["Land_fort_bagfence_long",[1786.2275,11722.918,0.0001373291],-67.444763], + ["Land_fort_bagfence_corner",[1786.5177,11726.571,9.1552734e-005],201.91515], + ["Land_fort_bagfence_corner",[1767.8385,11681.27,4.5776367e-005],-67.489479], + ["Fort_RazorWire",[1786.0699,11719.021,-3.0517578e-005],-66.315384], + ["Fort_RazorWire",[1779.7745,11703.974,4.5776367e-005],-66.543167], + ["Fort_RazorWire",[1776.6421,11696.184,-1.5258789e-005],-68.657242], + ["MAP_R2_RockWall",[1734.8632,11659.609,-17.923616],-199.58272], + ["MAP_R2_RockWall",[1719.538,11803.077,-19.767447],0], + ["MAP_t_picea3f",[1708.0996,11712.291,7.6293945e-005],0], + ["MAP_t_picea2s",[1708.0406,11707.755,0.00010681152],0], + ["MAP_t_picea2s",[1701.1199,11712.554,-1.5258789e-005],0], + ["MAP_t_picea2s",[1699.3159,11705.964,0.00012207031],0], + ["MAP_t_picea2s",[1703.9541,11698.854,3.0517578e-005],0], + ["MAP_t_picea2s",[1730.8362,11785.251,6.1035156e-005],0], + ["MAP_t_picea2s",[1721.535,11782.772],0], + ["MAP_t_picea2s",[1711.4562,11788.058,0.00016784668],0], + ["MAP_t_picea2s",[1715.343,11778.118,6.1035156e-005],0], + ["MAP_t_picea2s",[1748.7883,11809.227,0.00012207031],0], + ["MAP_t_picea2s",[1769.0259,11766.633,1.5258789e-005],0], + ["MAP_t_picea2s",[1765.6106,11773.438,0.00018310547],0], + ["MAP_t_picea2s",[1776.5638,11770.77,0.00010681152],0], + ["MAP_t_picea2s",[1777.7548,11761.786,0.00010681152],0], + ["MAP_t_picea2s",[1783.1877,11767.782,3.0517578e-005],0], + ["MAP_t_picea2s",[1786.0691,11760.089,3.0517578e-005],0], + ["MAP_t_picea2s",[1796.0404,11730.627,4.5776367e-005],0], + ["MAP_t_picea2s",[1788.6328,11731.446,0.00010681152],0], + ["MAP_t_picea2s",[1801.8285,11734.453,0.00016784668],0], + ["MAP_t_picea2s",[1794.614,11736.238,6.1035156e-005],0], + ["MAP_t_picea2s",[1822.1718,11681.094,3.0517578e-005],0], + ["MAP_t_picea2s",[1822.657,11686.977,0],0], + ["MAP_t_picea2s",[1828.8997,11680.479,7.6293945e-005],0], + ["MAP_t_picea2s",[1759.1609,11657.606,7.6293945e-005],0], + ["MAP_t_picea2s",[1749.874,11656.442,6.1035156e-005],0], + ["MAP_t_picea2s",[1757.594,11668.55,0.00018310547],0], + ["MAP_t_picea2s",[1762.1592,11665.067,3.0517578e-005],0], + ["MAP_t_picea2s",[1763.4108,11673.655,0.00012207031],0], + ["MAP_t_picea2s",[1767.9163,11670.904,7.6293945e-005],0], + ["MAP_t_picea2s",[1768.2374,11665.728,9.1552734e-005],0], + ["MAP_t_picea2s",[1770.4441,11677.615,-1.5258789e-005],0], + ["MAP_t_picea2s",[1712.1829,11667.416,9.1552734e-005],0], + ["MAP_t_picea2s",[1706.2999,11668.541,0.00022888184],0], + ["MAP_t_picea2s",[1706.8826,11676.414,0.00018310547],0], + ["MAP_t_picea2s",[1701.1501,11671.833,4.5776367e-005],0], + ["MAP_t_picea2s",[1700.7295,11665.481,0.00015258789],0], + ["MAP_t_picea2s",[1706.9185,11661.559,0.00022888184],0], + ["MAP_t_picea2s",[1743.3141,11648.917,4.5776367e-005],0], + ["MAP_t_picea2s",[1750.1553,11649.468,3.0517578e-005],0], + ["MAP_t_picea2s",[1758.0492,11649.808,0.00016784668],0], + ["MAP_t_picea2s",[1794.7102,11664.943,0.00010681152],0], + ["MAP_t_picea2s",[1796.1796,11658.953,9.1552734e-005],0], + ["MAP_t_picea2s",[1788.369,11659.815,0.00016784668],0], + ["MAP_t_picea2s",[1828.9491,11674.704,3.0517578e-005],0], + ["MAP_t_picea2s",[1835.6296,11676.209,7.6293945e-005],0], + ["MAP_t_picea2s",[1836.6669,11668.347,6.1035156e-005],0], + ["MAP_t_picea2s",[1841.505,11673.708,0.0001373291],0], + ["MAP_t_picea2s",[1847.2189,11668.215,6.1035156e-005],0], + ["MAP_t_picea3f",[1875.011,11684.652,1.5258789e-005],0], + ["MAP_t_picea3f",[1869.9547,11681.963,7.6293945e-005],0], + ["MAP_t_picea3f",[1875.72,11677.441,-3.0517578e-005],0], + ["Land_Fire_DZ",[1689.3069,11754.54,-4.5776367e-005],0], + ["Land_Camp_Fire_DZ",[1698.0286,11751.336,9.1552734e-005],0], + ["Land_Camp_Fire_DZ",[1700.7842,11732.964,4.5776367e-005],0], + ["Land_Camp_Fire_DZ",[1713.9777,11724.616],0], + ["Land_Camp_Fire_DZ",[1709.389,11727.408,1.5258789e-005],0], + ["Land_Camp_Fire_DZ",[1705.9205,11728.884,-9.1552734e-005],0], + ["Land_Camp_Fire_DZ",[1746.264,11721.658],0], + ["Land_Camp_Fire_DZ",[1704.9423,11761.148,3.0517578e-005],0], + ["Land_Camp_Fire_DZ",[1693.145,11750.366,-1.5258789e-005],0], + ["Fort_Barricade",[1785.677,11711.391],-70.637123], + ["MAP_plot_zed_drevo1",[1707.9996,11747.64,6.1035156e-005],-59.406433], + ["MAP_plot_zed_drevo3",[1710.6086,11764.796,7.6293945e-005],29.27306], + ["MAP_plot_zed_drevo_sloupek",[1711.0493,11764.675,9.1552734e-005],29.301178], + ["MAP_plot_zed_drevo1_branka",[1710.2302,11751.818],120.98058], + ["MAP_plot_zed_drevo1",[1712.1309,11755.127,6.1035156e-005],120.6221], + ["MAP_plot_zed_drevo1",[1714.1527,11758.39,4.5776367e-005],121.63365], + ["MAP_plot_zed_drevo_sloupek",[1702.861,11745.85,-4.5776367e-005],30.580776], + ["MAP_plot_zboreny",[1712.3214,11764.05,-1.5258789e-005],209.23892], + ["MAP_plot_zed_drevo1",[1716.087,11761.622,4.5776367e-005],121.37959], + ["MAP_plot_zed_drevo1",[1706.1078,11744.326,3.0517578e-005],-59.787006], + ["MAP_plot_zed_drevo3",[1705.6776,11744.141,4.5776367e-005],30.628857], + ["Land_Misc_Garb_Heap_EP1",[1709.4761,11743.834,0.0001373291],0], + ["Garbage_container",[1709.2693,11742.217,9.1552734e-005],0], + ["Garbage_container",[1711.2416,11742.056,3.0517578e-005],-90.763466], + ["Land_Misc_IronPipes_EP1",[1752.5741,11744.548,3.0517578e-005],-22.570091], + ["Paleta2",[1731.0017,11741.056,3.0517578e-005],-14.452979], + ["Pile_of_wood",[1737.0198,11752.13,4.5776367e-005],28.837755], + ["Land_Ind_TankSmall",[1734.4464,11719.356,4.5776367e-005],94.121185], + ["Land_Table_EP1",[1710.5129,11759.646,0.0001373291],-86.252785], + ["Land_Bench_EP1",[1709.86,11758.041,9.1552734e-005],-59.123962], + ["FoldTable",[1758.9523,11706.042,6.1035156e-005],-66.983597], + ["FoldChair",[1757.2609,11705.792,0.00012207031],-89.222832], + ["FoldChair",[1757.9318,11707.078,3.0517578e-005],-48.781147], + ["FoldChair",[1760.4084,11706.505,9.1552734e-005],98.154198], + ["FoldChair",[1758.212,11704.379,0.00018310547],205.50815], + ["Land_Bag_EP1",[1755.3564,11712.34,0.00018310547],0], + ["Land_Shed_M01",[1771.2965,11756.081,0.00015258789],32.618229], + ["Land_fort_artillery_nest",[1795.4894,11750.955,-0.27388555],72.356056], + ["MAP_b_pmugo",[1798.3049,11744.786],0], + ["MAP_b_craet2",[1792.3464,11757.987,3.0517578e-005],-18.898199], + ["MAP_b_craet1",[1795.364,11757.459,-3.0517578e-005],0], + ["MAP_b_craet2",[1795.6638,11741.604,1.5258789e-005],-44.770836], + ["MAP_b_pmugo",[1799.016,11753.596,-3.0517578e-005],0], + ["MAP_b_pmugo",[1799.3264,11747.723,-1.5258789e-005],-135.60785], + ["MAP_b_pmugo",[1799.2179,11745.7,1.5258789e-005],0], + ["MAP_b_pmugo",[1800.3281,11746.753],-77.773277], + ["MAP_b_corylus2s",[1736.3763,11702.939],-36.332321], + ["MAP_b_corylus2s",[1698.1608,11743.954,-1.5258789e-005],0], + ["MAP_b_corylus2s",[1693.4736,11739.703,-6.1035156e-005],0], + ["MAP_b_corylus2s",[1826.6665,11701.473,6.1035156e-005],0], + ["MAP_b_corylus",[1830.8893,11714.203,1.5258789e-005],0], + ["Rubbish1",[1768.0225,11696.404,-3.0517578e-005],0], + ["AmmoCrates_NoInteractive_Large",[1771.0812,11695.067,6.1035156e-005],0], + ["AmmoCrates_NoInteractive_Large",[1789.9847,11753.014,7.6293945e-005],-148.08163], + ["AmmoCrates_NoInteractive_Medium",[1791.7251,11752.817,3.0517578e-005],-28.609703], + ["AmmoCrates_NoInteractive_Small",[1790.5393,11751.663,4.5776367e-005],0], + ["Barrels",[1784.3082,11752.366,3.0517578e-005],0], + ["Land_Misc_Cargo2E_EP1",[1769.6725,11734.484,-6.1035156e-005],17.811895], + ["Notice_board_EP1",[1759.0591,11708.798,3.0517578e-005],-17.506258], + ["Paleta2",[1788.1893,11742.232,3.0517578e-005],0], + ["Land_Misc_Cargo1E_EP1",[1772.9535,11734.484],13.032956], + ["Misc_Cargo1B_military",[1773.1691,11739.554,6.1035156e-005],-70.169487], + ["MAP_t_picea2s",[1818.3773,11734.924,3.0517578e-005],0], + ["MAP_t_picea2s",[1811.2561,11737.608,6.1035156e-005],0], + ["MAP_t_picea2s",[1815.5593,11668.482,7.6293945e-005],0], + ["MAP_t_picea2s",[1821.8439,11672.263,1.5258789e-005],0], + ["MAP_t_picea2s",[1775.0565,11659.313,7.6293945e-005],0], + ["MAP_t_picea2s",[1778.6378,11668.132,0],0], + ["MAP_t_picea2s",[1782.369,11662.898,1.5258789e-005],0], + ["MAP_t_picea2s",[1776.2426,11673.526,1.5258789e-005],0], + ["MAP_t_picea1s",[1781.9351,11673.039,-1.5258789e-005],0], + ["MAP_t_picea1s",[1785.3544,11668.778,0.0001373291],0], + ["MAP_t_picea1s",[1716.2144,11698.987,3.0517578e-005],0], + ["MAP_t_picea1s",[1715.2286,11695.379,-3.0517578e-005],0], + ["MAP_t_picea1s",[1719.2367,11695.09,-1.5258789e-005],0], + ["MAP_t_picea1s",[1817.7792,11644.645,-6.1035156e-005],0], + ["MAP_t_picea1s",[1826.9309,11644.036,7.6293945e-005],0], + ["MAP_t_picea1s",[1819.8135,11650.418,1.5258789e-005],0], + ["MAP_t_picea2s",[1805.455,11655.158,-7.6293945e-005],0], + ["MAP_t_picea2s",[1811.9998,11658.955,0],0], + ["MAP_t_picea2s",[1813.3572,11650.894,6.1035156e-005],0], + ["MAP_t_picea2s",[1818.2813,11657.446,3.0517578e-005],0], + ["MAP_t_picea2s",[1820.9965,11664.805,0],0], + ["MAP_t_picea2s",[1806.1724,11647.095,-1.5258789e-005],0], + ["MAP_t_picea2s",[1799.3335,11651.37,3.0517578e-005],0], + ["MAP_t_picea2s",[1828.424,11666.68,7.6293945e-005],0], + ["MAP_t_picea2s",[1827.1429,11658.434,-1.5258789e-005],0], + ["MAP_t_picea2s",[1834.257,11660.806,7.6293945e-005],0], + ["MAP_t_picea2s",[1842.5028,11664.276,-6.1035156e-005],0], + ["MAP_t_picea2s",[1853.5725,11670.329,6.1035156e-005],0], + ["MAP_t_picea2s",[1852.7408,11663.604,0],0], + ["MAP_t_picea2s",[1846.7953,11659.949,0],0], + ["MAP_t_picea2s",[1839.5594,11656.809,1.5258789e-005],0], + ["MAP_t_picea2s",[1699.8507,11657.333,-3.0517578e-005],0], + ["MAP_t_picea2s",[1693.0599,11668.095,3.0517578e-005],0], + ["MAP_t_picea2s",[1692.6597,11660.395,7.6293945e-005],0], + ["MAP_t_picea2s",[1685.8239,11664.753,7.6293945e-005],0], + ["MAP_t_picea2s",[1685.7426,11656.082,0],0], + ["MAP_t_picea2s",[1694.1979,11651.563,0],0], + ["MAP_t_picea2s",[1702.875,11648.814,0],0], + ["MAP_t_picea2s",[1712.1531,11643.84,3.0517578e-005],0], + ["MAP_t_picea2s",[1731.766,11648.952,6.1035156e-005],0], + ["MAP_t_picea2s",[1772.4023,11777.735,3.0517578e-005],0], + ["UralWreck",[1732.5569,11695.86,-7.6293945e-005],107.07949], + ["Body2",[1741.5575,11735.501],-79.108429], + ["Body2",[1782.0217,11715.149,9.1552734e-005],0], + ["Body1",[1777.9645,11715.237,0],0], + ["Body2",[1781.8473,11712.026,7.6293945e-005],-123.27325], + ["Body1",[1753.484,11726.446,3.0517578e-005],0], + ["Body2",[1711.7731,11749.046,0.00012207031],22.487579], + ["Body1",[1725.6572,11742.825,0.00030517578],0], + ["Body2",[1719.2198,11748.196,7.6293945e-005],-102.5114], + ["Body2",[1754.0944,11715.765],104.09085], + ["Body1",[1768.7404,11717.692,0.00012207031],-92.47834], + ["Body2",[1772.468,11717.166,9.1552734e-005],154.51218], + ["Body1",[1751.5055,11717.046,9.1552734e-005],0], + ["USMC_WarfareBVehicleServicePoint",[1742.7795,11678.495,-3.0517578e-005],93.374069], + ["UralWreck",[1730.3744,11758.889,1.5258789e-005],-162.58514], + ["Hanged_MD",[1740.3192,11710.013,2.841176],-161.32813], + ["Hanged",[1890.8689,11707.069,5.25244],0], + ["Hanged",[1885.812,11699.524,5.1738005],139.2079], + ["MAP_ruiny_kopa_big",[1723.8173,11768.755,1.5258789e-005],30.030685], + ["Axe_woodblock",[1733.6243,11752.101,3.0517578e-005],0], + ["Land_Ind_Timbers",[1734.9487,11747.116,6.1035156e-005],-50.073788], + ["Land_transport_cart_EP1",[1753.8369,11734.076,-7.6293945e-005],-40.849697], + ["Land_transport_cart_EP1",[1761.5515,11733.089,3.0517578e-005],58.268723], + ["MAP_sara_domek_vilka_ruins",[1726.9601,11728.266,-3.0517578e-005],-87.186462], + ["Land_Camp_Fire_DZ",[1731.9874,11728.467,1.5258789e-005],0], + ["Land_Camp_Fire_DZ",[1729.1211,11729.173,-0.00010681152],0], + ["Land_Camp_Fire_DZ",[1725.5961,11729.712],0], + ["Land_Camp_Fire_DZ",[1727.0978,11727.643,-1.5258789e-005],0], + ["Land_Camp_Fire_DZ",[1724.3705,11729.141,7.6293945e-005],0], + ["Land_Fire_DZ",[1730.9259,11729.666,1.5258789e-005],0], + ["Land_Fire_DZ",[1728.1578,11729.909],0], + ["Land_Fire_DZ",[1727.3409,11724.06,7.6293945e-005],0], + ["Land_Fire_barrel",[1782.3253,11754.595,-3.0517578e-005],0], + ["AmmoCrates_NoInteractive_Large",[1723.9607,11706.66,1.5258789e-005],-114.6309], + ["AmmoCrates_NoInteractive_Medium",[1725.2511,11706.527,1.5258789e-005],36.930569], + ["AmmoCrate_NoInteractive_",[1728.3799,11706.581,1.5258789e-005],-161.33557], + ["AmmoCrate_NoInteractive_",[1727.4064,11706.175,-1.5258789e-005],-18.341053], + ["Land_CamoNetVar_NATO",[1758.9871,11706.935],-69.174316], + ["Rubbish4",[1758.5311,11724.679,1.5258789e-005],0], + ["Rubbish5",[1752.8125,11721.767,-3.0517578e-005],130.58769], + ["Rubbish3",[1764.8436,11722.652,-3.0517578e-005],0], + ["Rubbish2",[1703.2294,11748.844,-3.0517578e-005],-40.280521], + ["Rubbish3",[1734.4928,11736.971,-1.5258789e-005],0], + ["Body2",[1773.0649,11715.46,1.5258789e-005],54.238064], + ["Body2",[1777.5896,11718.415,6.1035156e-005],-101.74825], + ["Body2",[1760.6509,11720.699,-0.022119835],-34.465755], + ["Body1",[1771.2118,11719.023,1.5258789e-005],-2.5688567], + ["Body1",[1774.1366,11712.969,4.5776367e-005],-2.7098234], + ["Body2",[1776.0974,11715.178,3.0517578e-005],-48.150352], + ["Body2",[1778.2152,11711.796,9.1552734e-005],113.23923], + ["Body2",[1777.3236,11713.607,6.1035156e-005],-160.15511], + ["Body1",[1780.332,11713.689,0.00010681152],0], + ["Body2",[1758.3058,11726.226,6.1035156e-005],-44.517025], + ["MAP_t_picea2s",[1691.908,11779.879,0],0], + ["MAP_t_picea2s",[1699.468,11783.096,0],0], + ["MAP_t_picea2s",[1701.0255,11791.403,6.1035156e-005],0], + ["MAP_t_picea2s",[1692.9945,11788.762,4.5776367e-005],0], + ["MAP_t_picea2s",[1684.9795,11775.215,1.5258789e-005],0], + ["MAP_t_picea2s",[1686.9609,11784.324,-1.5258789e-005],0], + ["MAP_t_picea2s",[1676.4802,11778.749,6.1035156e-005],0], + ["MAP_t_picea2s",[1680.7467,11783.769,-1.5258789e-005],0], + ["MAP_t_picea2s",[1682.2053,11767.948,-1.5258789e-005],0], + ["MAP_t_picea2s",[1676.91,11770.669,4.5776367e-005],0], + ["MAP_t_picea2s",[1668.7789,11772.893,3.0517578e-005],0], + ["MAP_t_picea2s",[1856.4415,11691.763,-3.0517578e-005],0], + ["MAP_t_picea2s",[1848.0262,11693.281,-1.5258789e-005],0], + ["MAP_t_picea2s",[1862.3777,11697.473,-4.5776367e-005],0], + ["MAP_t_picea2s",[1855.7241,11698.531,4.5776367e-005],0], + ["MAP_t_picea2s",[1845.3132,11701.044,6.1035156e-005],0], + ["MAP_t_picea2s",[1839.9762,11695.527,7.6293945e-005],0], + ["MAP_t_picea2s",[1835.9882,11701.401,6.1035156e-005],0], + ["MAP_t_picea2s",[1829.6879,11704.675,3.0517578e-005],0], + ["MAP_t_picea2s",[1831.7963,11697.417,-9.1552734e-005],0], + ["MAP_t_picea2s",[1850.6438,11704.818,1.5258789e-005],0], + ["MAP_t_picea2s",[1841.4565,11707.11,-3.0517578e-005],0], + ["MAP_t_picea2s",[1834.8107,11713.058,0],0], + ["MAP_t_picea2s",[1844.1619,11713.108,1.5258789e-005],0], + ["MAP_t_picea2s",[1858.288,11705.881,9.1552734e-005],0], + ["MAP_t_picea2s",[1868.3269,11702.277,-3.0517578e-005],0], + ["MAP_t_picea2s",[1864.3794,11708.302,1.5258789e-005],0], + ["MAP_t_picea2s",[1850.5186,11712.063,1.5258789e-005],0], + ["MAP_t_picea2s",[1857.1821,11712.275,4.5776367e-005],0], + ["MAP_t_picea2s",[1835.2003,11682.677,-1.5258789e-005],0], + ["MAP_t_picea2s",[1841.9657,11680.122],0], + ["MAP_t_picea2s",[1847.7783,11676.99,4.5776367e-005],0], + ["MAP_t_picea2s",[1854.608,11676.529,6.1035156e-005],0], + ["MAP_t_picea2s",[1761.8528,11780.8,-6.1035156e-005],0], + ["MAP_t_picea2s",[1768.349,11784.168,4.5776367e-005],0], + ["MAP_t_picea2s",[1763.7542,11796.919,4.5776367e-005],0], + ["MAP_t_picea2s",[1776.1328,11784.221,9.1552734e-005],0], + ["MAP_t_picea2s",[1770.5709,11792.384,-7.6293945e-005],0], + ["MAP_t_picea2s",[1759.3026,11789.009,-6.1035156e-005],0], + ["MAP_t_picea2s",[1754.4037,11796.335,-6.1035156e-005],0], + ["MAP_t_picea2s",[1746.2495,11792.926,6.1035156e-005],0], + ["MAP_t_picea2s",[1753.4333,11803.065,-3.0517578e-005],0], + ["MAP_t_picea2s",[1759.913,11802.813,0.00016784668],0], + ["MAP_t_picea2s",[1779.2607,11776.724,6.1035156e-005],0], + ["MAP_t_picea2s",[1764.5327,11788.477,0.0001373291],0], + ["MAP_t_picea2s",[1741.1433,11809.904,-3.0517578e-005],0], + ["MAP_t_picea2s",[1693.8593,11711.429,-3.0517578e-005],0], + ["MAP_t_picea2s",[1697.4626,11699.363,1.5258789e-005],0], + ["MAP_t_picea2s",[1696.1613,11797.104,1.5258789e-005],0], + ["MAP_t_picea2s",[1685.2531,11791.32,9.1552734e-005],0], + ["MAP_t_picea2s",[1672.1652,11784.813,0.00012207031],0], + ["MAP_t_picea2s",[1663.6592,11778.568,0.00015258789],0], + ["MAP_t_picea2s",[1767.1655,11658.552,7.6293945e-005],0], + ["MAP_t_picea2s",[1764.712,11649.983,-1.5258789e-005],0], + ["MAP_t_picea2s",[1772.953,11652.125,0.0001373291],0], + ["MAP_t_picea2s",[1784.0044,11654.614,0.0002746582],0], + ["MAP_t_picea2s",[1791.4675,11652.742,3.0517578e-005],0], + ["MAP_t_picea2s",[1704.9604,11639.906,4.5776367e-005],0], + ["MAP_t_picea2s",[1697.2915,11644.601,-4.5776367e-005],0], + ["MAP_t_picea2s",[1686.9954,11649.279,4.5776367e-005],0], + ["MAP_t_picea2s",[1874.8612,11707.525,3.0517578e-005],0], + ["MAP_t_picea1s",[1877.3389,11682.198,1.5258789e-005],0], + ["MAP_t_picea3f",[1881.3235,11721.305,4.5776367e-005],0], + ["MAP_t_picea3f",[1884.6448,11713.97,-6.1035156e-005],0], + ["MAP_t_picea3f",[1877.8523,11714.619,6.1035156e-005],0], + ["MAP_t_picea3f",[1874.8912,11727.201,0.00010681152],0], + ["MAP_t_picea3f",[1873.2201,11719.78,0.00010681152],0], + ["MAP_t_picea3f",[1872.5229,11731.38,0.00016784668],0], + ["MAP_t_picea3f",[1884.8596,11727.392,9.1552734e-005],0], + ["MAP_t_picea3f",[1868.6838,11713.784,1.5258789e-005],0], + ["MAP_t_picea3f",[1867.6802,11720.395,3.0517578e-005],0], + ["MAP_t_picea3f",[1869.1489,11724.458,0],0], + ["MAP_t_picea3f",[1865.9983,11731.604,0.00016784668],0], + ["MAP_t_picea3f",[1860.6592,11667.146,3.0517578e-005],0], + ["MAP_t_picea3f",[1865.2036,11658.021,4.5776367e-005],0], + ["MAP_t_picea3f",[1871.8246,11661.26,6.1035156e-005],0], + ["MAP_t_picea3f",[1866.5234,11673.063],0], + ["MAP_t_picea3f",[1870.442,11668.318,6.1035156e-005],0], + ["MAP_t_picea3f",[1877.5996,11658.888,0.00016784668],0], + ["MAP_t_picea3f",[1878.2373,11665.856,0.00016784668],0], + ["MAP_t_picea3f",[1878.4214,11672.343,0.00012207031],0], + ["MAP_t_picea3f",[1879.7574,11650.737,0.00024414063],0], + ["MAP_t_picea3f",[1870.8713,11653.611,0.00016784668],0], + ["MAP_t_picea3f",[1683.8202,11671.608,6.1035156e-005],0], + ["MAP_t_picea3f",[1694.0057,11678.759,3.0517578e-005],0], + ["MAP_t_picea3f",[1682.21,11687.101,3.0517578e-005],0], + ["MAP_t_picea3f",[1695.7676,11688.408,9.1552734e-005],0], + ["MAP_t_picea3f",[1681.5935,11697.468,-7.6293945e-005],0], + ["MAP_t_picea3f",[1678.7792,11716.734,6.1035156e-005],0], + ["MAP_t_picea3f",[1682.0953,11725.604,-1.5258789e-005],0], + ["MAP_t_picea3f",[1688.4164,11720.368,7.6293945e-005],0], + ["MAP_t_picea3f",[1686.7047,11732.851,3.0517578e-005],0], + ["MAP_t_picea3f",[1784.7362,11809.722,0.00012207031],0], + ["MAP_t_picea3f",[1778.1505,11818.789,3.0517578e-005],0], + ["MAP_t_picea3f",[1740.1563,11708.694,6.1035156e-005],0], + ["MAP_t_picea3f",[1720.7556,11643.052,0.00010681152],0], + ["Mi8Wreck",[1726.4069,11681.369,-3.0517578e-005],-120.01289], + ["Axe_woodblock",[1760.7675,11721.288,-0.48907313],-139.52458] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/KomyshovoRoadblock.sqf b/SQF/dayz_code/system/mission/chernarus/poi/KomyshovoRoadblock.sqf index a97279f83..27b18643b 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/KomyshovoRoadblock.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/KomyshovoRoadblock.sqf @@ -1,445 +1,43 @@ -//Komyshovo Roadblock DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_2 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [11719.48, 3440.4539, 5.7220459e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_2 = _this; - _this setDir 165.89674; - _this setPos [11719.48, 3440.4539, 5.7220459e-006]; -}; - -_vehicle_3 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_long" createVehicle [11712.065, 3428.3638, -2.8133392e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_3 = _this; - _this setDir -103.87848; - _this setPos [11712.065, 3428.3638, -2.8133392e-005]; -}; - -_vehicle_4 = objNull; -if (true) then -{ - _this = "Land_fortified_nest_big" createVehicle [11714.736, 3437.1252, -1.4305115e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_4 = _this; - _this setDir 166.02483; - _this setPos [11714.736, 3437.1252, -1.4305115e-006]; -}; - -_vehicle_5 = objNull; -if (true) then -{ - _this = "Land_Misc_deerstand" createVehicle [11720.772, 3416.7151, -4.7683716e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_5 = _this; - _this setDir 75.353737; - _this setPos [11720.772, 3416.7151, -4.7683716e-007]; -}; - -_vehicle_9 = objNull; -if (true) then -{ - _this = "Land_Fire_barrel" createVehicle [11707.735, 3431.6147, 1.1444092e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_9 = _this; - _this setPos [11707.735, 3431.6147, 1.1444092e-005]; -}; - -_vehicle_10 = objNull; -if (true) then -{ - _this = "ZavoraAnim" createVehicle [11713.635, 3419.4082, -9.5367432e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_10 = _this; - _this setDir 76.036537; - _this setPos [11713.635, 3419.4082, -9.5367432e-006]; -}; - -_vehicle_11 = objNull; -if (true) then -{ - _this = "Fort_RazorWire" createVehicle [11713.576, 3415.5337, 4.2915344e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_11 = _this; - _this setDir 74.307724; - _this setPos [11713.576, 3415.5337, 4.2915344e-006]; -}; - -_vehicle_12 = objNull; -if (true) then -{ - _this = "Fort_RazorWire" createVehicle [11708.621, 3435.376, 4.7683716e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_12 = _this; - _this setDir 77.374557; - _this setPos [11708.621, 3435.376, 4.7683716e-007]; -}; - -_vehicle_13 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [11699.555, 3425.7571, -3.3378601e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_13 = _this; - _this setDir -81.309959; - _this setPos [11699.555, 3425.7571, -3.3378601e-006]; -}; - -_vehicle_14 = objNull; -if (true) then -{ - _this = "LADAWreck" createVehicle [11694.954, 3423.5427, 1.4781952e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_14 = _this; - _this setDir -113.2159; - _this setPos [11694.954, 3423.5427, 1.4781952e-005]; -}; - -_vehicle_15 = objNull; -if (true) then -{ - _this = "hiluxWreck" createVehicle [11689.701, 3422.4888, 1.001358e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_15 = _this; - _this setDir -99.812798; - _this setPos [11689.701, 3422.4888, 1.001358e-005]; -}; - -_vehicle_16 = objNull; -if (true) then -{ - _this = "LADAWreck" createVehicle [11705.452, 3416.7844, 3.8146973e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_16 = _this; - _this setDir -132.45085; - _this setPos [11705.452, 3416.7844, 3.8146973e-006]; -}; - -_vehicle_17 = objNull; -if (true) then -{ - _this = "SKODAWreck" createVehicle [11685.367, 3420.6243, 3.3855438e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_17 = _this; - _this setDir -73.341125; - _this setPos [11685.367, 3420.6243, 3.3855438e-005]; -}; - -_vehicle_18 = objNull; -if (true) then -{ - _this = "UAZWreck" createVehicle [11700.761, 3416.4656, -8.5830688e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_18 = _this; - _this setDir -92.262016; - _this setPos [11700.761, 3416.4656, -8.5830688e-006]; -}; - -_vehicle_19 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [11692.639, 3415.6863, -8.1062317e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_19 = _this; - _this setDir -121.88936; - _this setPos [11692.639, 3415.6863, -8.1062317e-006]; -}; - -_vehicle_20 = objNull; -if (true) then -{ - _this = "datsun02Wreck" createVehicle [11680.604, 3417.6348, -1.0967255e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_20 = _this; - _this setDir -154.7975; - _this setPos [11680.604, 3417.6348, -1.0967255e-005]; -}; - -_vehicle_21 = objNull; -if (true) then -{ - _this = "SKODAWreck" createVehicle [11677.889, 3420.9666, 3.9577484e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_21 = _this; - _this setDir -129.51091; - _this setPos [11677.889, 3420.9666, 3.9577484e-005]; -}; - -_vehicle_22 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [11681.577, 3410.0994, -4.7683716e-007]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_22 = _this; - _this setPos [11681.577, 3410.0994, -4.7683716e-007]; -}; - -_vehicle_23 = objNull; -if (true) then -{ - _this = "LADAWreck" createVehicle [11663.863, 3415.5874, 1.9550323e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_23 = _this; - _this setDir -79.741982; - _this setPos [11663.863, 3415.5874, 1.9550323e-005]; -}; - -_vehicle_27 = objNull; -if (true) then -{ - _this = "datsun01Wreck" createVehicle [11668.785, 3407.6177, 4.7683716e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_27 = _this; - _this setDir -142.55556; - _this setPos [11668.785, 3407.6177, 4.7683716e-006]; -}; - -_vehicle_28 = objNull; -if (true) then -{ - _this = "UAZWreck" createVehicle [11641.327, 3409.6914, 1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_28 = _this; - _this setDir -93.814919; - _this setPos [11641.327, 3409.6914, 1.9073486e-006]; -}; - -_vehicle_30 = objNull; -if (true) then -{ - _this = "datsun02Wreck" createVehicle [11653.457, 3403.5032, 8.1062317e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_30 = _this; - _this setDir -39.047737; - _this setPos [11653.457, 3403.5032, 8.1062317e-006]; -}; - -_vehicle_31 = objNull; -if (true) then -{ - _this = "SKODAWreck" createVehicle [11608.349, 3402.2234, 7.6293945e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_31 = _this; - _this setPos [11608.349, 3402.2234, 7.6293945e-006]; -}; - -_vehicle_33 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [11625.264, 3409.9734, -5.7220459e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_33 = _this; - _this setDir -126.20835; - _this setPos [11625.264, 3409.9734, -5.7220459e-006]; -}; - -_vehicle_34 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [11604.238, 3389.3557, 7.1525574e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_34 = _this; - _this setDir -120.86126; - _this setPos [11604.238, 3389.3557, 7.1525574e-005]; -}; - -_vehicle_35 = objNull; -if (true) then -{ - _this = "LADAWreck" createVehicle [11634.291, 3399.3804, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_35 = _this; - _this setDir -62.679699; - _this setPos [11634.291, 3399.3804, -1.5258789e-005]; -}; - -_vehicle_36 = objNull; -if (true) then -{ - _this = "UAZWreck" createVehicle [11587.318, 3383.6511, -1.9073486e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_36 = _this; - _this setDir -94.848938; - _this setPos [11587.318, 3383.6511, -1.9073486e-006]; -}; - -_vehicle_37 = objNull; -if (true) then -{ - _this = "SKODAWreck" createVehicle [11579.66, 3391.251, 6.0081482e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_37 = _this; - _this setDir -95.228081; - _this setPos [11579.66, 3391.251, 6.0081482e-005]; -}; - -_vehicle_38 = objNull; -if (true) then -{ - _this = "LADAWreck" createVehicle [11593.278, 3395.5137, 7.1525574e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_38 = _this; - _this setDir 249.85706; - _this setPos [11593.278, 3395.5137, 7.1525574e-006]; -}; - -_vehicle_40 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11580.231, 3391.7131, -1.2302452]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_40 = _this; - _this setPos [11580.231, 3391.7131, -1.2302452]; -}; - -_vehicle_41 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11604.376, 3389.4011, -2.3365021e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_41 = _this; - _this setPos [11604.376, 3389.4011, -2.3365021e-005]; -}; - -_vehicle_42 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11664.599, 3415.8137, -0.55714953]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_42 = _this; - _this setPos [11664.599, 3415.8137, -0.55714953]; -}; - -_vehicle_43 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11700.913, 3416.5945, -0.455836]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_43 = _this; - _this setPos [11700.913, 3416.5945, -0.455836]; -}; - -_vehicle_48 = objNull; -if (true) then -{ - _this = "Land_Misc_Garb_Heap_EP1" createVehicle [11658.789, 3415.3887, 2.4795532e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_48 = _this; - _this setPos [11658.789, 3415.3887, 2.4795532e-005]; -}; - -_vehicle_54 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11681.44, 3409.2422, 2.8133392e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_54 = _this; - _this setPos [11681.44, 3409.2422, 2.8133392e-005]; -}; - -_vehicle_56 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11678.358, 3421.3154, -0.55780995]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_56 = _this; - _this setPos [11678.358, 3421.3154, -0.55780995]; -}; - -_vehicle_62 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [11728.482, 3415.5869, 8.1062317e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_62 = _this; - _this setDir -194.24361; - _this setPos [11728.482, 3415.5869, 8.1062317e-006]; -}; - -_vehicle_63 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [11736.565, 3417.7786, -1.1920929e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_63 = _this; - _this setDir -194.30165; - _this setPos [11736.565, 3417.7786, -1.1920929e-005]; -}; - -_vehicle_66 = objNull; -if (true) then -{ - _this = "CampEast_EP1" createVehicle [11744.933, 3420.0603, -3.7193298e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_66 = _this; - _this setDir -194.99712; - _this setPos [11744.933, 3420.0603, -3.7193298e-005]; -}; - -_vehicle_67 = objNull; -if (true) then -{ - _this = "Land_tent_east" createVehicle [11730.796, 3438.7427, 2.7179718e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_67 = _this; - _this setDir 347.01086; - _this setPos [11730.796, 3438.7427, 2.7179718e-005]; -}; - -_vehicle_68 = objNull; -if (true) then -{ - _this = "Land_fort_bagfence_corner" createVehicle [11715.259, 3417.4905, 6.1988831e-006]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_68 = _this; - _this setDir 75.434654; - _this setPos [11715.259, 3417.4905, 6.1988831e-006]; -}; +[[ + ["Land_fort_bagfence_long",[11719.48,3440.4539,5.7220459e-006],165.89674], + ["Land_fort_bagfence_long",[11712.065,3428.3638,-2.8133392e-005],-103.87848], + ["Land_fortified_nest_big",[11714.736,3437.1252,-1.4305115e-006],166.02483], + ["Land_Misc_deerstand",[11720.772,3416.7151,-4.7683716e-007],75.353737], + ["Land_Fire_barrel",[11707.735,3431.6147,1.1444092e-005],0], + ["ZavoraAnim",[11713.635,3419.4082,-9.5367432e-006],76.036537], + ["Fort_RazorWire",[11713.576,3415.5337,4.2915344e-006],74.307724], + ["Fort_RazorWire",[11708.621,3435.376,4.7683716e-007],77.374557], + ["HMMWVWreck",[11699.555,3425.7571,-3.3378601e-006],-81.309959], + ["LADAWreck",[11694.954,3423.5427,1.4781952e-005],-113.2159], + ["hiluxWreck",[11689.701,3422.4888,1.001358e-005],-99.812798], + ["LADAWreck",[11705.452,3416.7844,3.8146973e-006],-132.45085], + ["SKODAWreck",[11685.367,3420.6243,3.3855438e-005],-73.341125], + ["UAZWreck",[11700.761,3416.4656,-8.5830688e-006],-92.262016], + ["UralWreck",[11692.639,3415.6863,-8.1062317e-006],-121.88936], + ["datsun02Wreck",[11680.604,3417.6348,-1.0967255e-005],-154.7975], + ["SKODAWreck",[11677.889,3420.9666,3.9577484e-005],-129.51091], + ["HMMWVWreck",[11681.577,3410.0994,-4.7683716e-007],0], + ["LADAWreck",[11663.863,3415.5874,1.9550323e-005],-79.741982], + ["datsun01Wreck",[11668.785,3407.6177,4.7683716e-006],-142.55556], + ["UAZWreck",[11641.327,3409.6914,1.9073486e-006],-93.814919], + ["datsun02Wreck",[11653.457,3403.5032,8.1062317e-006],-39.047737], + ["SKODAWreck",[11608.349,3402.2234,7.6293945e-006],0], + ["UralWreck",[11625.264,3409.9734,-5.7220459e-006],-126.20835], + ["HMMWVWreck",[11604.238,3389.3557,7.1525574e-005],-120.86126], + ["LADAWreck",[11634.291,3399.3804,-1.5258789e-005],-62.679699], + ["UAZWreck",[11587.318,3383.6511,-1.9073486e-006],-94.848938], + ["SKODAWreck",[11579.66,3391.251,6.0081482e-005],-95.228081], + ["LADAWreck",[11593.278,3395.5137,7.1525574e-006],249.85706], + ["Land_Camp_Fire_DZ",[11580.231,3391.7131,-1.2302452],0], + ["Land_Camp_Fire_DZ",[11604.376,3389.4011,-2.3365021e-005],0], + ["Land_Camp_Fire_DZ",[11664.599,3415.8137,-0.55714953],0], + ["Land_Camp_Fire_DZ",[11700.913,3416.5945,-0.455836],0], + ["Land_Misc_Garb_Heap_EP1",[11658.789,3415.3887,2.4795532e-005],0], + ["Land_Camp_Fire_DZ",[11681.44,3409.2422,2.8133392e-005],0], + ["Land_Camp_Fire_DZ",[11678.358,3421.3154,-0.55780995],0], + ["CampEast",[11728.482,3415.5869,8.1062317e-006],-194.24361], + ["CampEast",[11736.565,3417.7786,-1.1920929e-005],-194.30165], + ["CampEast_EP1",[11744.933,3420.0603,-3.7193298e-005],-194.99712], + ["Land_tent_east",[11730.796,3438.7427,2.7179718e-005],347.01086], + ["Land_fort_bagfence_corner",[11715.259,3417.4905,6.1988831e-006],75.434654] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/MilitaryAirpoort.sqf b/SQF/dayz_code/system/mission/chernarus/poi/MilitaryAirpoort.sqf index 0ed08258c..922d45021 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/MilitaryAirpoort.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/MilitaryAirpoort.sqf @@ -1,2235 +1,210 @@ -//Military Airpoort DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_6 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [3825.3159, 10108.598, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_6 = _this; - _this setDir -11.185805; - _this setPos [3825.3159, 10108.598, 3.0517578e-005]; -}; - -_vehicle_7 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [3822.219, 10125.634, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_7 = _this; - _this setDir -9.9437618; - _this setPos [3822.219, 10125.634, -9.1552734e-005]; -}; - -_vehicle_9 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3835.0566, 10144.542, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_9 = _this; - _this setPos [3835.0566, 10144.542, 0]; -}; - -_vehicle_10 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3822.8149, 10135.516, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_10 = _this; - _this setPos [3822.8149, 10135.516, -3.0517578e-005]; -}; - -_vehicle_11 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3825.7717, 10115.956, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_11 = _this; - _this setPos [3825.7717, 10115.956, 0]; -}; - -_vehicle_12 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3820.7786, 10143.821]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_12 = _this; - _this setDir -11.68897; - _this setPos [3820.7786, 10143.821]; -}; - -_vehicle_13 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3807.7896, 10164.764, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_13 = _this; - _this setPos [3807.7896, 10164.764, -3.0517578e-005]; -}; - -_vehicle_14 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_100" createVehicle [3819.3381, 10142.812, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_14 = _this; - _this setDir -8.8621006; - _this setPos [3819.3381, 10142.812, 3.0517578e-005]; -}; - -_vehicle_15 = objNull; -if (true) then -{ - _this = "MAP_asf3_0_2000" createVehicle [3817.9858, 10160.022, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_15 = _this; - _this setDir 0.49615318; - _this setPos [3817.9858, 10160.022, -6.1035156e-005]; -}; - -_vehicle_20 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [3817.2373, 10190.405, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_20 = _this; - _this setDir -188.83601; - _this setPos [3817.2373, 10190.405, 0.00012207031]; -}; - -_vehicle_21 = objNull; -if (true) then -{ - _this = "MAP_asf3_0_2000" createVehicle [3817.3105, 10190.246, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_21 = _this; - _this setDir -8.7227564; - _this setPos [3817.3105, 10190.246, -3.0517578e-005]; -}; - -_vehicle_22 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [3790.9268, 10252.16]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_22 = _this; - _this setDir 133.09224; - _this setPos [3790.9268, 10252.16]; -}; - -_vehicle_23 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [3811.3318, 10219.895, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_23 = _this; - _this setDir 160.40416; - _this setPos [3811.3318, 10219.895, 9.1552734e-005]; -}; - -_vehicle_24 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [3806.3643, 10231.879, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_24 = _this; - _this setDir 152.45856; - _this setPos [3806.3643, 10231.879, -3.0517578e-005]; -}; - -_vehicle_26 = objNull; -if (true) then -{ - _this = "MAP_asf3_10_75" createVehicle [3799.4526, 10242.731, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_26 = _this; - _this setDir 142.91379; - _this setPos [3799.4526, 10242.731, 3.0517578e-005]; -}; - -_vehicle_27 = objNull; -if (true) then -{ - _this = "MAP_runway_beton" createVehicle [3724.6187, 10212.628, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_27 = _this; - _this setDir 44.269772; - _this setPos [3724.6187, 10212.628, -6.1035156e-005]; -}; - -_vehicle_29 = objNull; -if (true) then -{ - _this = "MAP_runway_beton" createVehicle [3696.0132, 10240.534, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_29 = _this; - _this setDir 44.184116; - _this setPos [3696.0132, 10240.534, 3.0517578e-005]; -}; - -_vehicle_30 = objNull; -if (true) then -{ - _this = "MAP_runway_beton" createVehicle [3667.377, 10268.412, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_30 = _this; - _this setDir 44.17395; - _this setPos [3667.377, 10268.412, 0.00012207031]; -}; - -_vehicle_31 = objNull; -if (true) then -{ - _this = "MAP_runway_beton_end1" createVehicle [3688.8093, 10333.029, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_31 = _this; - _this setDir 44.180363; - _this setPos [3688.8093, 10333.029, 6.1035156e-005]; -}; - -_vehicle_33 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3760.6812, 10261.354, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_33 = _this; - _this setDir -0.50650114; - _this setPos [3760.6812, 10261.354, 0.00015258789]; -}; - -_vehicle_34 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3750.6606, 10284.665]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_34 = _this; - _this setDir -0.50650114; - _this setPos [3750.6606, 10284.665]; -}; - -_vehicle_35 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3743.405, 10267.468, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_35 = _this; - _this setDir -0.50650114; - _this setPos [3743.405, 10267.468, -3.0517578e-005]; -}; - -_vehicle_36 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3722.5317, 10258.217, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_36 = _this; - _this setDir -0.3346678; - _this setPos [3722.5317, 10258.217, 9.1552734e-005]; -}; - -_vehicle_37 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3723.866, 10276.214, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_37 = _this; - _this setDir -0.50650114; - _this setPos [3723.866, 10276.214, -3.0517578e-005]; -}; - -_vehicle_38 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3713.532, 10248.95, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_38 = _this; - _this setPos [3713.532, 10248.95, 0]; -}; - -_vehicle_39 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3736.1445, 10245.626, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_39 = _this; - _this setDir -0.3346678; - _this setPos [3736.1445, 10245.626, 3.0517578e-005]; -}; - -_vehicle_40 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3737.3, 10226.258, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_40 = _this; - _this setDir -0.3346678; - _this setPos [3737.3, 10226.258, 3.0517578e-005]; -}; - -_vehicle_41 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3747.9329, 10235.669, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_41 = _this; - _this setPos [3747.9329, 10235.669, 0]; -}; - -_vehicle_42 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3745.0537, 10212.736, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_42 = _this; - _this setPos [3745.0537, 10212.736, -6.1035156e-005]; -}; - -_vehicle_43 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3773.3391, 10240.22, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_43 = _this; - _this setPos [3773.3391, 10240.22, 3.0517578e-005]; -}; - -_vehicle_44 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3781.0732, 10260.768, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_44 = _this; - _this setPos [3781.0732, 10260.768, 6.1035156e-005]; -}; - -_vehicle_45 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3781.7546, 10246.241, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_45 = _this; - _this setPos [3781.7546, 10246.241, 0]; -}; - -_vehicle_46 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3794.8918, 10251.539, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_46 = _this; - _this setPos [3794.8918, 10251.539, -3.0517578e-005]; -}; - -_vehicle_47 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3763.8347, 10246.762, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_47 = _this; - _this setPos [3763.8347, 10246.762, -3.0517578e-005]; -}; - -_vehicle_48 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3757.3701, 10221.23, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_48 = _this; - _this setPos [3757.3701, 10221.23, 6.1035156e-005]; -}; - -_vehicle_49 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3728.396, 10234.807, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_49 = _this; - _this setPos [3728.396, 10234.807, -3.0517578e-005]; -}; - -_vehicle_50 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3733.2837, 10213.01, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_50 = _this; - _this setPos [3733.2837, 10213.01, 0]; -}; - -_vehicle_51 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3761.5564, 10274.819, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_51 = _this; - _this setDir -0.50650114; - _this setPos [3761.5564, 10274.819, -3.0517578e-005]; -}; - -_vehicle_52 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3736.1018, 10293.056, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_52 = _this; - _this setDir -0.50650114; - _this setPos [3736.1018, 10293.056, 3.0517578e-005]; -}; - -_vehicle_53 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3738.4109, 10278.472, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_53 = _this; - _this setDir -0.50650114; - _this setPos [3738.4109, 10278.472, -3.0517578e-005]; -}; - -_vehicle_54 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3744.8159, 10300.588]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_54 = _this; - _this setDir -0.50650114; - _this setPos [3744.8159, 10300.588]; -}; - -_vehicle_55 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3730.1162, 10307.021, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_55 = _this; - _this setPos [3730.1162, 10307.021, 6.1035156e-005]; -}; - -_vehicle_56 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3720.3923, 10292.369, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_56 = _this; - _this setDir -0.50650114; - _this setPos [3720.3923, 10292.369, 3.0517578e-005]; -}; - -_vehicle_57 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3705.8743, 10285.435, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_57 = _this; - _this setDir -0.3346678; - _this setPos [3705.8743, 10285.435, -3.0517578e-005]; -}; - -_vehicle_58 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3700.415, 10274.433, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_58 = _this; - _this setPos [3700.415, 10274.433, 0]; -}; - -_vehicle_59 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3712.6045, 10261.92, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_59 = _this; - _this setPos [3712.6045, 10261.92, -3.0517578e-005]; -}; - -_vehicle_60 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3694.7302, 10291.204]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_60 = _this; - _this setDir -0.6588521; - _this setPos [3694.7302, 10291.204]; -}; - -_vehicle_61 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3707.5022, 10300.38]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_61 = _this; - _this setDir -0.32418403; - _this setPos [3707.5022, 10300.38]; -}; - -_vehicle_62 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3719.0176, 10312.553, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_62 = _this; - _this setDir -0.32418403; - _this setPos [3719.0176, 10312.553, -3.0517578e-005]; -}; - -_vehicle_63 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3716.3813, 10324.065, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_63 = _this; - _this setDir -0.32418403; - _this setPos [3716.3813, 10324.065, 3.0517578e-005]; -}; - -_vehicle_64 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3691.6453, 10308.996, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_64 = _this; - _this setDir -0.32418403; - _this setPos [3691.6453, 10308.996, -3.0517578e-005]; -}; - -_vehicle_65 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3683.825, 10300.422, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_65 = _this; - _this setDir -0.32418403; - _this setPos [3683.825, 10300.422, -3.0517578e-005]; -}; - -_vehicle_66 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3679.2568, 10317.911, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_66 = _this; - _this setDir -0.32418403; - _this setPos [3679.2568, 10317.911, 6.1035156e-005]; -}; - -_vehicle_67 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3688.0222, 10326.203, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_67 = _this; - _this setDir -0.32418403; - _this setPos [3688.0222, 10326.203, 6.1035156e-005]; -}; - -_vehicle_68 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3677.96, 10330.91, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_68 = _this; - _this setDir -0.32418403; - _this setPos [3677.96, 10330.91, -6.1035156e-005]; -}; - -_vehicle_69 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3730.3879, 10263.984, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_69 = _this; - _this setDir -0.50650114; - _this setPos [3730.3879, 10263.984, -3.0517578e-005]; -}; - -_vehicle_70 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3723.6025, 10248.189]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_70 = _this; - _this setDir -0.3346678; - _this setPos [3723.6025, 10248.189]; -}; - -_vehicle_71 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3747.5444, 10252.567]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_71 = _this; - _this setDir -0.50650114; - _this setPos [3747.5444, 10252.567]; -}; - -_vehicle_72 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3773.8052, 10271.313, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_72 = _this; - _this setPos [3773.8052, 10271.313, 6.1035156e-005]; -}; - -_vehicle_73 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3771.5752, 10255.088, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_73 = _this; - _this setPos [3771.5752, 10255.088, -6.1035156e-005]; -}; - -_vehicle_74 = objNull; -if (true) then -{ - _this = "Land_Hangar_2" createVehicle [3685.3945, 10267.442, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_74 = _this; - _this setDir -135.68135; - _this setPos [3685.3945, 10267.442, -3.0517578e-005]; -}; - -_vehicle_75 = objNull; -if (true) then -{ - _this = "Land_Mil_ControlTower" createVehicle [3703.4924, 10242.177, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_75 = _this; - _this setDir -225.61891; - _this setPos [3703.4924, 10242.177, 3.0517578e-005]; -}; - -_vehicle_77 = objNull; -if (true) then -{ - _this = "Land_Mil_Barracks_i" createVehicle [3718.3674, 10233.307, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_77 = _this; - _this setDir -45.469822; - _this setPos [3718.3674, 10233.307, -3.0517578e-005]; -}; - -_vehicle_78 = objNull; -if (true) then -{ - _this = "Land_Mil_Barracks_i" createVehicle [3667.1182, 10284.444, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_78 = _this; - _this setDir 314.29797; - _this setPos [3667.1182, 10284.444, 3.0517578e-005]; -}; - -_vehicle_79 = objNull; -if (true) then -{ - _this = "Land_SS_hangar" createVehicle [3711.3408, 10192.19, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_79 = _this; - _this setDir 584.09161; - _this setPos [3711.3408, 10192.19, 3.0517578e-005]; -}; - -_vehicle_81 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3744.1667, 10196.554, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_81 = _this; - _this setPos [3744.1667, 10196.554, 3.0517578e-005]; -}; - -_vehicle_82 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3752.5012, 10195.237, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_82 = _this; - _this setPos [3752.5012, 10195.237, 3.0517578e-005]; -}; - -_vehicle_83 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3751.4607, 10202.605]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_83 = _this; - _this setPos [3751.4607, 10202.605]; -}; - -_vehicle_84 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3816.1167, 10115.302, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_84 = _this; - _this setPos [3816.1167, 10115.302, 6.1035156e-005]; -}; - -_vehicle_85 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3656.2351, 10269.758]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_85 = _this; - _this setPos [3656.2351, 10269.758]; -}; - -_vehicle_86 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3707.677, 10220.626, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_86 = _this; - _this setPos [3707.677, 10220.626, 3.0517578e-005]; -}; - -_vehicle_87 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3675.4695, 10235.775]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_87 = _this; - _this setPos [3675.4695, 10235.775]; -}; - -_vehicle_88 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3800.3528, 10256.13, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_88 = _this; - _this setPos [3800.3528, 10256.13, 9.1552734e-005]; -}; - -_vehicle_89 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3789.2441, 10281.568, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_89 = _this; - _this setPos [3789.2441, 10281.568, 9.1552734e-005]; -}; - -_vehicle_90 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3827.5901, 10179.222, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_90 = _this; - _this setPos [3827.5901, 10179.222, 6.1035156e-005]; -}; - -_vehicle_91 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3773.6492, 10289.699, 0.00024414063]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_91 = _this; - _this setDir -0.50650114; - _this setPos [3773.6492, 10289.699, 0.00024414063]; -}; - -_vehicle_92 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [3788.9299, 10290.012, 0.0002746582]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_92 = _this; - _this setPos [3788.9299, 10290.012, 0.0002746582]; -}; - -_vehicle_93 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [3773.0156, 10298.371, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_93 = _this; - _this setDir -0.50650114; - _this setPos [3773.0156, 10298.371, 9.1552734e-005]; -}; - -_vehicle_94 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [3817.0071, 10125.276, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_94 = _this; - _this setPos [3817.0071, 10125.276, -9.1552734e-005]; -}; - -_vehicle_95 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [3782.7583, 10284.926, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_95 = _this; - _this setPos [3782.7583, 10284.926, -3.0517578e-005]; -}; - -_vehicle_96 = objNull; -if (true) then -{ - _this = "MAP_t_picea3f" createVehicle [3650.5557, 10273.901, 0.00030517578]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_96 = _this; - _this setPos [3650.5557, 10273.901, 0.00030517578]; -}; - -_vehicle_133 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3782.5752, 10243.695, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_133 = _this; - _this setDir 134.56789; - _this setPos [3782.5752, 10243.695, 3.0517578e-005]; -}; - -_vehicle_135 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3778.4272, 10239.436, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_135 = _this; - _this setDir 134.39149; - _this setPos [3778.4272, 10239.436, 6.1035156e-005]; -}; - -_vehicle_137 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_2" createVehicle [3789.0664, 10250.226, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_137 = _this; - _this setDir -46.774445; - _this setPos [3789.0664, 10250.226, 0.00012207031]; -}; - -_vehicle_138 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_Pole" createVehicle [3792.7874, 10253.942, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_138 = _this; - _this setDir 43.621632; - _this setPos [3792.7874, 10253.942, 3.0517578e-005]; -}; - -_vehicle_140 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3795.0974, 10255.253, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_140 = _this; - _this setDir -44.757542; - _this setPos [3795.0974, 10255.253, 0.00012207031]; -}; - -_vehicle_142 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3791.8928, 10258.706]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_142 = _this; - _this setDir 44.484047; - _this setPos [3791.8928, 10258.706]; -}; - -_vehicle_143 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3787.7219, 10262.801, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_143 = _this; - _this setDir 44.493969; - _this setPos [3787.7219, 10262.801, 0.00012207031]; -}; - -_vehicle_144 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3774.3076, 10235.189, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_144 = _this; - _this setDir 134.69618; - _this setPos [3774.3076, 10235.189, 6.1035156e-005]; -}; - -_vehicle_145 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3770.1191, 10230.896, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_145 = _this; - _this setDir 134.7504; - _this setPos [3770.1191, 10230.896, 9.1552734e-005]; -}; - -_vehicle_146 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3765.9397, 10226.653]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_146 = _this; - _this setDir 134.58046; - _this setPos [3765.9397, 10226.653]; -}; - -_vehicle_147 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3761.7883, 10222.374, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_147 = _this; - _this setDir 135.12917; - _this setPos [3761.7883, 10222.374, 3.0517578e-005]; -}; - -_vehicle_148 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_2" createVehicle [3757.7227, 10218.103]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_148 = _this; - _this setDir 132.0087; - _this setPos [3757.7227, 10218.103]; -}; - -_vehicle_149 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_Pole" createVehicle [3755.8291, 10216.196, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_149 = _this; - _this setDir 36.464252; - _this setPos [3755.8291, 10216.196, 0.00012207031]; -}; - -_vehicle_151 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3754.8723, 10215.169]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_151 = _this; - _this setDir -45.127731; - _this setPos [3754.8723, 10215.169]; -}; - -_vehicle_152 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3783.3943, 10267.038, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_152 = _this; - _this setDir 43.649479; - _this setPos [3783.3943, 10267.038, 0.00015258789]; -}; - -_vehicle_153 = objNull; -if (true) then -{ - _this = "C130J_wreck_EP1" createVehicle [3657.696, 10358.34, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_153 = _this; - _this setDir 135.67921; - _this setPos [3657.696, 10358.34, 9.1552734e-005]; -}; - -_vehicle_157 = objNull; -if (true) then -{ - _this = "Land_Misc_deerstand" createVehicle [3830.4863, 10116.59, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_157 = _this; - _this setDir -7.137866; - _this setPos [3830.4863, 10116.59, 3.0517578e-005]; -}; - -_vehicle_159 = objNull; -if (true) then -{ - _this = "Barrels" createVehicle [3727.5986, 10234.664]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_159 = _this; - _this setDir 18.813044; - _this setPos [3727.5986, 10234.664]; -}; - -_vehicle_160 = objNull; -if (true) then -{ - _this = "Land_Misc_Garb_Heap_EP1" createVehicle [3741.1643, 10205.446, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_160 = _this; - _this setPos [3741.1643, 10205.446, 0.00012207031]; -}; - -_vehicle_161 = objNull; -if (true) then -{ - _this = "Paleta2" createVehicle [3745.0322, 10207.586]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_161 = _this; - _this setDir 69.840553; - _this setPos [3745.0322, 10207.586]; -}; - -_vehicle_163 = objNull; -if (true) then -{ - _this = "Land_Ind_TankSmall" createVehicle [3760.5347, 10224.95, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_163 = _this; - _this setDir -44.306816; - _this setPos [3760.5347, 10224.95, 6.1035156e-005]; -}; - -_vehicle_164 = objNull; -if (true) then -{ - _this = "Land_Ind_TankSmall" createVehicle [3767.1228, 10231.604]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_164 = _this; - _this setDir -45.187695; - _this setPos [3767.1228, 10231.604]; -}; - -_vehicle_165 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [3799.1453, 10238.581, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_165 = _this; - _this setDir 147.31805; - _this setPos [3799.1453, 10238.581, -3.0517578e-005]; -}; - -_vehicle_166 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [3761.24, 10235.726, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_166 = _this; - _this setDir -122.48022; - _this setPos [3761.24, 10235.726, -3.0517578e-005]; -}; - -_vehicle_167 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3664.9065, 10271.031, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_167 = _this; - _this setDir -135.5675; - _this setPos [3664.9065, 10271.031, 3.0517578e-005]; -}; - -_vehicle_168 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3660.6062, 10275.168, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_168 = _this; - _this setDir -135.95262; - _this setPos [3660.6062, 10275.168, 3.0517578e-005]; -}; - -_vehicle_169 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3656.3887, 10279.318, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_169 = _this; - _this setDir -135.06606; - _this setPos [3656.3887, 10279.318, -3.0517578e-005]; -}; - -_vehicle_170 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_2" createVehicle [3656.2295, 10285.197, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_170 = _this; - _this setDir -45.852589; - _this setPos [3656.2295, 10285.197, 0.00015258789]; -}; - -_vehicle_171 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3654.7195, 10282.954]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_171 = _this; - _this setDir 68.389603; - _this setPos [3654.7195, 10282.954]; -}; - -_vehicle_172 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3659.2837, 10288.596]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_172 = _this; - _this setDir 134.1716; - _this setPos [3659.2837, 10288.596]; -}; - -_vehicle_173 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3663.4412, 10292.875, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_173 = _this; - _this setDir 134.53278; - _this setPos [3663.4412, 10292.875, 3.0517578e-005]; -}; - -_vehicle_174 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3689.9351, 10246.914, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_174 = _this; - _this setDir 44.088318; - _this setPos [3689.9351, 10246.914, 9.1552734e-005]; -}; - -_vehicle_175 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3694.5596, 10242.785]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_175 = _this; - _this setDir 43.065742; - _this setPos [3694.5596, 10242.785]; -}; - -_vehicle_176 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3704.9841, 10232.024, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_176 = _this; - _this setDir 44.97723; - _this setPos [3704.9841, 10232.024, -3.0517578e-005]; -}; - -_vehicle_177 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3709.2427, 10227.833]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_177 = _this; - _this setDir 44.833263; - _this setPos [3709.2427, 10227.833]; -}; - -_vehicle_200 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3701.1414, 10341.037, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_200 = _this; - _this setPos [3701.1414, 10341.037, -6.1035156e-005]; -}; - -_vehicle_201 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3710.1155, 10333.934, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_201 = _this; - _this setPos [3710.1155, 10333.934, -3.0517578e-005]; -}; - -_vehicle_202 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3694.7322, 10344.322, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_202 = _this; - _this setPos [3694.7322, 10344.322, 0]; -}; - -_vehicle_203 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3682.9941, 10359.47, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_203 = _this; - _this setPos [3682.9941, 10359.47, -3.0517578e-005]; -}; - -_vehicle_204 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3702.1204, 10313.281, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_204 = _this; - _this setPos [3702.1204, 10313.281, -3.0517578e-005]; -}; - -_vehicle_205 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3671.4377, 10298.156, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_205 = _this; - _this setPos [3671.4377, 10298.156, -6.1035156e-005]; -}; - -_vehicle_206 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3764.113, 10239.477]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_206 = _this; - _this setPos [3764.113, 10239.477]; -}; - -_vehicle_207 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [3719.1694, 10258.491, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_207 = _this; - _this setPos [3719.1694, 10258.491, -3.0517578e-005]; -}; - -_vehicle_208 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3721.6797, 10243.908, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_208 = _this; - _this setDir -111.08324; - _this setPos [3721.6797, 10243.908, -3.0517578e-005]; -}; - -_vehicle_209 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3713.2722, 10243.904, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_209 = _this; - _this setPos [3713.2722, 10243.904, 3.0517578e-005]; -}; - -_vehicle_210 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [3757.3967, 10229.175, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_210 = _this; - _this setPos [3757.3967, 10229.175, 0]; -}; - -_vehicle_211 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3802.0686, 10235.992, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_211 = _this; - _this setDir 31.964434; - _this setPos [3802.0686, 10235.992, -3.0517578e-005]; -}; - -_vehicle_212 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3669.8408, 10296.382, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_212 = _this; - _this setPos [3669.8408, 10296.382, -3.0517578e-005]; -}; - -_vehicle_213 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [3675.3115, 10297.215, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_213 = _this; - _this setPos [3675.3115, 10297.215, 0]; -}; - -_vehicle_215 = objNull; -if (true) then -{ - _this = "hiluxWreck" createVehicle [3788.2188, 10255.365, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_215 = _this; - _this setDir 107.26485; - _this setPos [3788.2188, 10255.365, 3.0517578e-005]; -}; - -_vehicle_216 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3785.5476, 10259.679, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_216 = _this; - _this setDir 117.29826; - _this setPos [3785.5476, 10259.679, 3.0517578e-005]; -}; - -_vehicle_217 = objNull; -if (true) then -{ - _this = "AmmoCrates_NoInteractive_Large" createVehicle [3715.9766, 10251.991]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_217 = _this; - _this setPos [3715.9766, 10251.991]; -}; - -_vehicle_218 = objNull; -if (true) then -{ - _this = "Land_Misc_Cargo1E_EP1" createVehicle [3719.9546, 10204.804, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_218 = _this; - _this setPos [3719.9546, 10204.804, 6.1035156e-005]; -}; - -_vehicle_219 = objNull; -if (true) then -{ - _this = "Misc_Cargo1Bo_military" createVehicle [3724.1721, 10225.582, 0.00018310547]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_219 = _this; - _this setDir 71.360115; - _this setPos [3724.1721, 10225.582, 0.00018310547]; -}; - -_vehicle_220 = objNull; -if (true) then -{ - _this = "Land_Misc_Cargo1E_EP1" createVehicle [3773.1011, 10240.897, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_220 = _this; - _this setDir -42.60405; - _this setPos [3773.1011, 10240.897, 3.0517578e-005]; -}; - -_vehicle_221 = objNull; -if (true) then -{ - _this = "Land_Misc_Cargo1E_EP1" createVehicle [3776.1331, 10244.344]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_221 = _this; - _this setDir -59.835663; - _this setPos [3776.1331, 10244.344]; -}; - -_vehicle_222 = objNull; -if (true) then -{ - _this = "Land_Misc_Cargo1E_EP1" createVehicle [3779.8481, 10246.981, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_222 = _this; - _this setDir -37.084934; - _this setPos [3779.8481, 10246.981, -3.0517578e-005]; -}; - -//setDate [1985, 5, 10, 9, 30]; <---- what the hell was that - -_vehicle_226 = objNull; -if (true) then -{ - _this = "MAP_asf3_1_1000" createVehicle [3783.4404, 10200.586, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_226 = _this; - _this setDir 44.57972; - _this setPos [3783.4404, 10200.586, 3.0517578e-005]; -}; - -_vehicle_235 = objNull; -if (true) then -{ - _this = "MAP_asf3_15_75" createVehicle [3795.6882, 10212.797, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_235 = _this; - _this setDir 45.67374; - _this setPos [3795.6882, 10212.797, 3.0517578e-005]; -}; - -_vehicle_236 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3793.5476, 10160.691, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_236 = _this; - _this setDir 44.696571; - _this setPos [3793.5476, 10160.691, 3.0517578e-005]; -}; - -_vehicle_237 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3777.782, 10159.95, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_237 = _this; - _this setDir 44.696571; - _this setPos [3777.782, 10159.95, -3.0517578e-005]; -}; - -_vehicle_238 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3765.2056, 10158.893, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_238 = _this; - _this setDir 44.696571; - _this setPos [3765.2056, 10158.893, -3.0517578e-005]; -}; - -_vehicle_239 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3783.0032, 10174.156, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_239 = _this; - _this setDir 44.696571; - _this setPos [3783.0032, 10174.156, 3.0517578e-005]; -}; - -_vehicle_240 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3770.5981, 10172.787]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_240 = _this; - _this setDir 44.696571; - _this setPos [3770.5981, 10172.787]; -}; - -_vehicle_241 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3765.8508, 10185.534]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_241 = _this; - _this setPos [3765.8508, 10185.534]; -}; - -_vehicle_242 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3778.9431, 10195.28]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_242 = _this; - _this setPos [3778.9431, 10195.28]; -}; - -_vehicle_243 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3795.4836, 10172.459, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_243 = _this; - _this setDir 44.696571; - _this setPos [3795.4836, 10172.459, 3.0517578e-005]; -}; - -_vehicle_244 = objNull; -if (true) then -{ - _this = "MAP_runwayold_40_main" createVehicle [3773.6821, 10182.305]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_244 = _this; - _this setDir 44.696571; - _this setPos [3773.6821, 10182.305]; -}; - -_vehicle_245 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3793.9382, 10186.377, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_245 = _this; - _this setPos [3793.9382, 10186.377, 3.0517578e-005]; -}; - -_vehicle_246 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3767.1121, 10198.916, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_246 = _this; - _this setPos [3767.1121, 10198.916, 9.1552734e-005]; -}; - -_vehicle_247 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [3780.3613, 10183.857, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_247 = _this; - _this setPos [3780.3613, 10183.857, 9.1552734e-005]; -}; - -_vehicle_248 = objNull; -if (true) then -{ - _this = "Barrack2" createVehicle [3754.2629, 10180.587, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_248 = _this; - _this setDir -44.416225; - _this setPos [3754.2629, 10180.587, 3.0517578e-005]; -}; - -_vehicle_249 = objNull; -if (true) then -{ - _this = "Barrack2" createVehicle [3759.4336, 10185.654, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_249 = _this; - _this setDir -44.273655; - _this setPos [3759.4336, 10185.654, 3.0517578e-005]; -}; - -_vehicle_250 = objNull; -if (true) then -{ - _this = "MASH_EP1" createVehicle [3763.2378, 10192.063, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_250 = _this; - _this setDir 135.73686; - _this setPos [3763.2378, 10192.063, 3.0517578e-005]; -}; - -_vehicle_251 = objNull; -if (true) then -{ - _this = "MASH_EP1" createVehicle [3767.9285, 10196.819, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_251 = _this; - _this setDir 135.27429; - _this setPos [3767.9285, 10196.819, 3.0517578e-005]; -}; - -_vehicle_253 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3780.3948, 10203.67, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_253 = _this; - _this setDir -135.03011; - _this setPos [3780.3948, 10203.67, 3.0517578e-005]; -}; - -_vehicle_254 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3776.2805, 10207.763, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_254 = _this; - _this setDir -134.95572; - _this setPos [3776.2805, 10207.763, 6.1035156e-005]; -}; - -_vehicle_255 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3786.5605, 10197.565]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_255 = _this; - _this setDir 44.728886; - _this setPos [3786.5605, 10197.565]; -}; - -_vehicle_256 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3790.8044, 10193.417]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_256 = _this; - _this setDir 44.607571; - _this setPos [3790.8044, 10193.417]; -}; - -_vehicle_257 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3794.9731, 10189.274, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_257 = _this; - _this setDir 45.038445; - _this setPos [3794.9731, 10189.274, 9.1552734e-005]; -}; - -_vehicle_258 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3799.012, 10185.269, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_258 = _this; - _this setDir 44.742367; - _this setPos [3799.012, 10185.269, 6.1035156e-005]; -}; - -_vehicle_259 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3800.4587, 10181.13]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_259 = _this; - _this setDir 134.63934; - _this setPos [3800.4587, 10181.13]; -}; - -_vehicle_260 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3796.2705, 10176.872, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_260 = _this; - _this setDir 134.942; - _this setPos [3796.2705, 10176.872, 3.0517578e-005]; -}; - -_vehicle_261 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3792.1367, 10172.675, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_261 = _this; - _this setDir 134.00362; - _this setPos [3792.1367, 10172.675, -3.0517578e-005]; -}; - -_vehicle_262 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3787.9158, 10168.415, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_262 = _this; - _this setDir 134.6832; - _this setPos [3787.9158, 10168.415, -6.1035156e-005]; -}; - -_vehicle_263 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3783.7405, 10164.178]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_263 = _this; - _this setDir 134.5287; - _this setPos [3783.7405, 10164.178]; -}; - -_vehicle_264 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3779.5869, 10159.958, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_264 = _this; - _this setDir 135.18356; - _this setPos [3779.5869, 10159.958, 3.0517578e-005]; -}; - -_vehicle_265 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_2" createVehicle [3775.072, 10155.492, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_265 = _this; - _this setDir -44.03801; - _this setPos [3775.072, 10155.492, 3.0517578e-005]; -}; - -_vehicle_266 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_Pole" createVehicle [3771.2969, 10156.688, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_266 = _this; - _this setDir -43.831253; - _this setPos [3771.2969, 10156.688, 3.0517578e-005]; -}; - -_vehicle_267 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3776.5454, 10156.865, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_267 = _this; - _this setDir -45.779484; - _this setPos [3776.5454, 10156.865, 3.0517578e-005]; -}; - -_vehicle_268 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3773.9424, 10154.893, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_268 = _this; - _this setDir 45.019844; - _this setPos [3773.9424, 10154.893, -9.1552734e-005]; -}; - -_vehicle_269 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3768.3975, 10159.543, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_269 = _this; - _this setDir 44.803612; - _this setPos [3768.3975, 10159.543, -3.0517578e-005]; -}; - -_vehicle_270 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3764.188, 10163.698, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_270 = _this; - _this setDir 44.7495; - _this setPos [3764.188, 10163.698, 6.1035156e-005]; -}; - -_vehicle_271 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3760.0066, 10167.846, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_271 = _this; - _this setDir 44.524143; - _this setPos [3760.0066, 10167.846, 6.1035156e-005]; -}; - -_vehicle_272 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3755.7297, 10172.021, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_272 = _this; - _this setDir 44.175945; - _this setPos [3755.7297, 10172.021, 3.0517578e-005]; -}; - -_vehicle_274 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3746.9348, 10180.749, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_274 = _this; - _this setDir 45.078255; - _this setPos [3746.9348, 10180.749, 3.0517578e-005]; -}; - -_vehicle_275 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3751.9839, 10175.709]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_275 = _this; - _this setDir 44.293858; - _this setPos [3751.9839, 10175.709]; -}; - -_vehicle_276 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_2" createVehicle [3753.5728, 10174.18]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_276 = _this; - _this setDir 45.260712; - _this setPos [3753.5728, 10174.18]; -}; - -_vehicle_277 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3748.4175, 10185.03, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_277 = _this; - _this setDir 134.92021; - _this setPos [3748.4175, 10185.03, -3.0517578e-005]; -}; - -_vehicle_278 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3752.6172, 10189.266]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_278 = _this; - _this setDir 134.92537; - _this setPos [3752.6172, 10189.266]; -}; - -_vehicle_279 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3756.7288, 10193.433, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_279 = _this; - _this setDir 134.65967; - _this setPos [3756.7288, 10193.433, -3.0517578e-005]; -}; - -_vehicle_280 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3772.1467, 10209.17]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_280 = _this; - _this setDir 134.7368; - _this setPos [3772.1467, 10209.17]; -}; - -_vehicle_281 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4" createVehicle [3767.9802, 10204.938]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_281 = _this; - _this setDir 134.44206; - _this setPos [3767.9802, 10204.938]; -}; - -_vehicle_282 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_4_D" createVehicle [3763.8232, 10200.712]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_282 = _this; - _this setDir 135.30008; - _this setPos [3763.8232, 10200.712]; -}; - -_vehicle_283 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3759.4111, 10196.146]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_283 = _this; - _this setDir -46.855453; - _this setPos [3759.4111, 10196.146]; -}; - -_vehicle_284 = objNull; -if (true) then -{ - _this = "MAP_Wall_IndCnc_End_3" createVehicle [3760.8284, 10197.604]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_284 = _this; - _this setDir -45.738556; - _this setPos [3760.8284, 10197.604]; -}; - -_vehicle_293 = objNull; -if (true) then -{ - _this = "MAP_Shed_M02_ruins" createVehicle [3768.8252, 10164.48, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_293 = _this; - _this setDir -45.141129; - _this setPos [3768.8252, 10164.48, -6.1035156e-005]; -}; - -_vehicle_304 = objNull; -if (true) then -{ - _this = "Rubbish5" createVehicle [3773.9319, 10197.524, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_304 = _this; - _this setPos [3773.9319, 10197.524, 3.0517578e-005]; -}; - -_vehicle_305 = objNull; -if (true) then -{ - _this = "ZavoraAnim" createVehicle [3786.52, 10198.715, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_305 = _this; - _this setDir 44.582699; - _this setPos [3786.52, 10198.715, -3.0517578e-005]; -}; - -_vehicle_306 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [3793.0642, 10181.756]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_306 = _this; - _this setDir 135.25246; - _this setPos [3793.0642, 10181.756]; -}; - -_vehicle_307 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [3786.783, 10175.574, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_307 = _this; - _this setDir 135.47437; - _this setPos [3786.783, 10175.574, 9.1552734e-005]; -}; - -_vehicle_308 = objNull; -if (true) then -{ - _this = "CampEast" createVehicle [3780.4661, 10169.285, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_308 = _this; - _this setDir 135.32259; - _this setPos [3780.4661, 10169.285, 6.1035156e-005]; -}; - -_vehicle_318 = objNull; -if (true) then -{ - _this = "Land_Ind_BoardsPack1" createVehicle [3785.9409, 10194.699]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_318 = _this; - _this setDir -46.147747; - _this setPos [3785.9409, 10194.699]; -}; - -_vehicle_319 = objNull; -if (true) then -{ - _this = "Land_Ind_BoardsPack1" createVehicle [3786.9773, 10195.8, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_319 = _this; - _this setDir 134.02464; - _this setPos [3786.9773, 10195.8, 6.1035156e-005]; -}; - -_vehicle_320 = objNull; -if (true) then -{ - _this = "Land_Ind_BoardsPack1" createVehicle [3789.1101, 10193.689, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_320 = _this; - _this setDir -45.304409; - _this setPos [3789.1101, 10193.689, -6.1035156e-005]; -}; - -_vehicle_321 = objNull; -if (true) then -{ - _this = "Land_Ind_BoardsPack1" createVehicle [3788.043, 10192.63, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_321 = _this; - _this setDir -45.404705; - _this setPos [3788.043, 10192.63, 6.1035156e-005]; -}; - -_vehicle_322 = objNull; -if (true) then -{ - _this = "MAP_A_Castle_Stairs_A" createVehicle [3779.8196, 10195.759, -8.526885]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_322 = _this; - _this setDir 43.194855; - _this setPos [3779.8196, 10195.759, -8.526885]; -}; - -_vehicle_324 = objNull; -if (true) then -{ - _this = "Land_Misc_deerstand" createVehicle [3774.6978, 10206.236, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_324 = _this; - _this setDir 224.726353; - _this setPos [3774.6978, 10206.236, -3.0517578e-005]; -}; - -_vehicle_325 = objNull; -if (true) then -{ - _this = "FlagCarrierRedCross_EP1" createVehicle [3780.4919, 10202.366, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_325 = _this; - _this setPos [3780.4919, 10202.366, 6.1035156e-005]; -}; - -_vehicle_326 = objNull; -if (true) then -{ - _this = "FlagCarrierRedCross_EP1" createVehicle [3792.1567, 10190.87]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_326 = _this; - _this setPos [3792.1567, 10190.87]; -}; - -_vehicle_327 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3778.478, 10201.803, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_327 = _this; - _this setDir -42.650253; - _this setPos [3778.478, 10201.803, 3.0517578e-005]; -}; - -_vehicle_328 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [3772.342, 10193.213, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_328 = _this; - _this setPos [3772.342, 10193.213, 3.0517578e-005]; -}; - -_vehicle_329 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3791.7732, 10184.093, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_329 = _this; - _this setDir 40.07402; - _this setPos [3791.7732, 10184.093, -3.0517578e-005]; -}; - -_vehicle_330 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [3768.9685, 10171.18, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_330 = _this; - _this setPos [3768.9685, 10171.18, 0]; -}; - -_vehicle_331 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [3760.5063, 10178.691]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_331 = _this; - _this setDir 89.311447; - _this setPos [3760.5063, 10178.691]; -}; - -_vehicle_333 = objNull; -if (true) then -{ - _this = "Land_Misc_deerstand" createVehicle [3773.8142, 10158.719, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_333 = _this; - _this setDir -13.109641; - _this setPos [3773.8142, 10158.719, 3.0517578e-005]; -}; - -_vehicle_336 = objNull; -if (true) then -{ - _this = "MAP_asf3_6konec" createVehicle [3826.2429, 10102.542, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_336 = _this; - _this setDir -9.4858913; - _this setPos [3826.2429, 10102.542, -3.0517578e-005]; -}; +[[ + ["MAP_asf3_1_1000",[3825.3159,10108.598,3.0517578e-005],-11.185805], + ["MAP_asf3_1_1000",[3822.219,10125.634,-9.1552734e-005],-9.9437618], + ["ClutterCutter_EP1",[3835.0566,10144.542,0],0], + ["ClutterCutter_EP1",[3822.8149,10135.516,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3825.7717,10115.956,0],0], + ["ClutterCutter_EP1",[3820.7786,10143.821],-11.68897], + ["ClutterCutter_EP1",[3807.7896,10164.764,-3.0517578e-005],0], + ["MAP_asf3_10_100",[3819.3381,10142.812,3.0517578e-005],-8.8621006], + ["MAP_asf3_0_2000",[3817.9858,10160.022,-6.1035156e-005],0.49615318], + ["MAP_asf3_10_75",[3817.2373,10190.405,0.00012207031],-188.83601], + ["MAP_asf3_0_2000",[3817.3105,10190.246,-3.0517578e-005],-8.7227564], + ["MAP_asf3_10_75",[3790.9268,10252.16],133.09224], + ["MAP_asf3_10_75",[3811.3318,10219.895,9.1552734e-005],160.40416], + ["MAP_asf3_10_75",[3806.3643,10231.879,-3.0517578e-005],152.45856], + ["MAP_asf3_10_75",[3799.4526,10242.731,3.0517578e-005],142.91379], + ["MAP_runway_beton",[3724.6187,10212.628,-6.1035156e-005],44.269772], + ["MAP_runway_beton",[3696.0132,10240.534,3.0517578e-005],44.184116], + ["MAP_runway_beton",[3667.377,10268.412,0.00012207031],44.17395], + ["MAP_runway_beton_end1",[3688.8093,10333.029,6.1035156e-005],44.180363], + ["ClutterCutter_EP1",[3760.6812,10261.354,0.00015258789],-0.50650114], + ["ClutterCutter_EP1",[3750.6606,10284.665],-0.50650114], + ["ClutterCutter_EP1",[3743.405,10267.468,-3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3722.5317,10258.217,9.1552734e-005],-0.3346678], + ["ClutterCutter_EP1",[3723.866,10276.214,-3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3713.532,10248.95,0],0], + ["ClutterCutter_EP1",[3736.1445,10245.626,3.0517578e-005],-0.3346678], + ["ClutterCutter_EP1",[3737.3,10226.258,3.0517578e-005],-0.3346678], + ["ClutterCutter_EP1",[3747.9329,10235.669,0],0], + ["ClutterCutter_EP1",[3745.0537,10212.736,-6.1035156e-005],0], + ["ClutterCutter_EP1",[3773.3391,10240.22,3.0517578e-005],0], + ["ClutterCutter_EP1",[3781.0732,10260.768,6.1035156e-005],0], + ["ClutterCutter_EP1",[3781.7546,10246.241,0],0], + ["ClutterCutter_EP1",[3794.8918,10251.539,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3763.8347,10246.762,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3757.3701,10221.23,6.1035156e-005],0], + ["ClutterCutter_EP1",[3728.396,10234.807,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3733.2837,10213.01,0],0], + ["ClutterCutter_EP1",[3761.5564,10274.819,-3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3736.1018,10293.056,3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3738.4109,10278.472,-3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3744.8159,10300.588],-0.50650114], + ["ClutterCutter_EP1",[3730.1162,10307.021,6.1035156e-005],0], + ["ClutterCutter_EP1",[3720.3923,10292.369,3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3705.8743,10285.435,-3.0517578e-005],-0.3346678], + ["ClutterCutter_EP1",[3700.415,10274.433,0],0], + ["ClutterCutter_EP1",[3712.6045,10261.92,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3694.7302,10291.204],-0.6588521], + ["ClutterCutter_EP1",[3707.5022,10300.38],-0.32418403], + ["ClutterCutter_EP1",[3719.0176,10312.553,-3.0517578e-005],-0.32418403], + ["ClutterCutter_EP1",[3716.3813,10324.065,3.0517578e-005],-0.32418403], + ["ClutterCutter_EP1",[3691.6453,10308.996,-3.0517578e-005],-0.32418403], + ["ClutterCutter_EP1",[3683.825,10300.422,-3.0517578e-005],-0.32418403], + ["ClutterCutter_EP1",[3679.2568,10317.911,6.1035156e-005],-0.32418403], + ["ClutterCutter_EP1",[3688.0222,10326.203,6.1035156e-005],-0.32418403], + ["ClutterCutter_EP1",[3677.96,10330.91,-6.1035156e-005],-0.32418403], + ["ClutterCutter_EP1",[3730.3879,10263.984,-3.0517578e-005],-0.50650114], + ["ClutterCutter_EP1",[3723.6025,10248.189],-0.3346678], + ["ClutterCutter_EP1",[3747.5444,10252.567],-0.50650114], + ["ClutterCutter_EP1",[3773.8052,10271.313,6.1035156e-005],0], + ["ClutterCutter_EP1",[3771.5752,10255.088,-6.1035156e-005],0], + ["Land_Hangar_2",[3685.3945,10267.442,-3.0517578e-005],-135.68135], + ["Land_Mil_ControlTower",[3703.4924,10242.177,3.0517578e-005],-225.61891], + ["Land_Mil_Barracks_i",[3718.3674,10233.307,-3.0517578e-005],-45.469822], + ["Land_Mil_Barracks_i",[3667.1182,10284.444,3.0517578e-005],314.29797], + ["Land_SS_hangar",[3711.3408,10192.19,3.0517578e-005],584.09161], + ["MAP_t_picea2s",[3744.1667,10196.554,3.0517578e-005],0], + ["MAP_t_picea2s",[3752.5012,10195.237,3.0517578e-005],0], + ["MAP_t_picea2s",[3751.4607,10202.605],0], + ["MAP_t_picea2s",[3816.1167,10115.302,6.1035156e-005],0], + ["MAP_t_picea2s",[3656.2351,10269.758],0], + ["MAP_t_picea2s",[3707.677,10220.626,3.0517578e-005],0], + ["MAP_t_picea2s",[3675.4695,10235.775],0], + ["MAP_t_picea2s",[3800.3528,10256.13,9.1552734e-005],0], + ["MAP_t_picea2s",[3789.2441,10281.568,9.1552734e-005],0], + ["MAP_t_picea2s",[3827.5901,10179.222,6.1035156e-005],0], + ["MAP_t_picea2s",[3773.6492,10289.699,0.00024414063],-0.50650114], + ["MAP_t_picea2s",[3788.9299,10290.012,0.0002746582],0], + ["MAP_t_picea1s",[3773.0156,10298.371,9.1552734e-005],-0.50650114], + ["MAP_t_picea1s",[3817.0071,10125.276,-9.1552734e-005],0], + ["MAP_t_picea3f",[3782.7583,10284.926,-3.0517578e-005],0], + ["MAP_t_picea3f",[3650.5557,10273.901,0.00030517578],0], + ["MAP_Wall_IndCnc_4_D",[3782.5752,10243.695,3.0517578e-005],134.56789], + ["MAP_Wall_IndCnc_4",[3778.4272,10239.436,6.1035156e-005],134.39149], + ["MAP_Wall_IndCnc_End_2",[3789.0664,10250.226,0.00012207031],-46.774445], + ["MAP_Wall_IndCnc_Pole",[3792.7874,10253.942,3.0517578e-005],43.621632], + ["MAP_Wall_IndCnc_End_3",[3795.0974,10255.253,0.00012207031],-44.757542], + ["MAP_Wall_IndCnc_4",[3791.8928,10258.706],44.484047], + ["MAP_Wall_IndCnc_4",[3787.7219,10262.801,0.00012207031],44.493969], + ["MAP_Wall_IndCnc_4",[3774.3076,10235.189,6.1035156e-005],134.69618], + ["MAP_Wall_IndCnc_4",[3770.1191,10230.896,9.1552734e-005],134.7504], + ["MAP_Wall_IndCnc_4_D",[3765.9397,10226.653],134.58046], + ["MAP_Wall_IndCnc_4",[3761.7883,10222.374,3.0517578e-005],135.12917], + ["MAP_Wall_IndCnc_End_2",[3757.7227,10218.103],132.0087], + ["MAP_Wall_IndCnc_Pole",[3755.8291,10216.196,0.00012207031],36.464252], + ["MAP_Wall_IndCnc_End_3",[3754.8723,10215.169],-45.127731], + ["MAP_Wall_IndCnc_4_D",[3783.3943,10267.038,0.00015258789],43.649479], + ["C130J_wreck_EP1",[3657.696,10358.34,9.1552734e-005],135.67921], + ["Land_Misc_deerstand",[3830.4863,10116.59,3.0517578e-005],-7.137866], + ["Barrels",[3727.5986,10234.664],18.813044], + ["Land_Misc_Garb_Heap_EP1",[3741.1643,10205.446,0.00012207031],0], + ["Paleta2",[3745.0322,10207.586],69.840553], + ["Land_Ind_TankSmall",[3760.5347,10224.95,6.1035156e-005],-44.306816], + ["Land_Ind_TankSmall",[3767.1228,10231.604],-45.187695], + ["HMMWVWreck",[3799.1453,10238.581,-3.0517578e-005],147.31805], + ["UralWreck",[3761.24,10235.726,-3.0517578e-005],-122.48022], + ["MAP_Wall_IndCnc_4",[3664.9065,10271.031,3.0517578e-005],-135.5675], + ["MAP_Wall_IndCnc_4",[3660.6062,10275.168,3.0517578e-005],-135.95262], + ["MAP_Wall_IndCnc_4_D",[3656.3887,10279.318,-3.0517578e-005],-135.06606], + ["MAP_Wall_IndCnc_End_2",[3656.2295,10285.197,0.00015258789],-45.852589], + ["MAP_Wall_IndCnc_End_3",[3654.7195,10282.954],68.389603], + ["MAP_Wall_IndCnc_4",[3659.2837,10288.596],134.1716], + ["MAP_Wall_IndCnc_4_D",[3663.4412,10292.875,3.0517578e-005],134.53278], + ["MAP_Wall_IndCnc_4_D",[3689.9351,10246.914,9.1552734e-005],44.088318], + ["MAP_Wall_IndCnc_End_3",[3694.5596,10242.785],43.065742], + ["MAP_Wall_IndCnc_4",[3704.9841,10232.024,-3.0517578e-005],44.97723], + ["MAP_Wall_IndCnc_4",[3709.2427,10227.833],44.833263], + ["ClutterCutter_EP1",[3701.1414,10341.037,-6.1035156e-005],0], + ["ClutterCutter_EP1",[3710.1155,10333.934,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3694.7322,10344.322,0],0], + ["ClutterCutter_EP1",[3682.9941,10359.47,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3702.1204,10313.281,-3.0517578e-005],0], + ["ClutterCutter_EP1",[3671.4377,10298.156,-6.1035156e-005],0], + ["Body2",[3764.113,10239.477],0], + ["Body1",[3719.1694,10258.491,-3.0517578e-005],0], + ["Body2",[3721.6797,10243.908,-3.0517578e-005],-111.08324], + ["Body2",[3713.2722,10243.904,3.0517578e-005],0], + ["Body1",[3757.3967,10229.175,0],0], + ["Body2",[3802.0686,10235.992,-3.0517578e-005],31.964434], + ["Body2",[3669.8408,10296.382,-3.0517578e-005],0], + ["Body1",[3675.3115,10297.215,0],0], + ["hiluxWreck",[3788.2188,10255.365,3.0517578e-005],107.26485], + ["Body2",[3785.5476,10259.679,3.0517578e-005],117.29826], + ["AmmoCrates_NoInteractive_Large",[3715.9766,10251.991],0], + ["Land_Misc_Cargo1E_EP1",[3719.9546,10204.804,6.1035156e-005],0], + ["Misc_Cargo1Bo_military",[3724.1721,10225.582,0.00018310547],71.360115], + ["Land_Misc_Cargo1E_EP1",[3773.1011,10240.897,3.0517578e-005],-42.60405], + ["Land_Misc_Cargo1E_EP1",[3776.1331,10244.344],-59.835663], + ["Land_Misc_Cargo1E_EP1",[3779.8481,10246.981,-3.0517578e-005],-37.084934], + ["MAP_asf3_1_1000",[3783.4404,10200.586,3.0517578e-005],44.57972], + ["MAP_asf3_15_75",[3795.6882,10212.797,3.0517578e-005],45.67374], + ["ClutterCutter_EP1",[3793.5476,10160.691,3.0517578e-005],44.696571], + ["ClutterCutter_EP1",[3777.782,10159.95,-3.0517578e-005],44.696571], + ["ClutterCutter_EP1",[3765.2056,10158.893,-3.0517578e-005],44.696571], + ["ClutterCutter_EP1",[3783.0032,10174.156,3.0517578e-005],44.696571], + ["ClutterCutter_EP1",[3770.5981,10172.787],44.696571], + ["ClutterCutter_EP1",[3765.8508,10185.534],0], + ["ClutterCutter_EP1",[3778.9431,10195.28],0], + ["ClutterCutter_EP1",[3795.4836,10172.459,3.0517578e-005],44.696571], + ["MAP_runwayold_40_main",[3773.6821,10182.305],44.696571], + ["ClutterCutter_EP1",[3793.9382,10186.377,3.0517578e-005],0], + ["ClutterCutter_EP1",[3767.1121,10198.916,9.1552734e-005],0], + ["ClutterCutter_EP1",[3780.3613,10183.857,9.1552734e-005],0], + ["Barrack2",[3754.2629,10180.587,3.0517578e-005],-44.416225], + ["Barrack2",[3759.4336,10185.654,3.0517578e-005],-44.273655], + ["MASH_EP1",[3763.2378,10192.063,3.0517578e-005],135.73686], + ["MASH_EP1",[3767.9285,10196.819,3.0517578e-005],135.27429], + ["MAP_Wall_IndCnc_4",[3780.3948,10203.67,3.0517578e-005],-135.03011], + ["MAP_Wall_IndCnc_4",[3776.2805,10207.763,6.1035156e-005],-134.95572], + ["MAP_Wall_IndCnc_4",[3786.5605,10197.565],44.728886], + ["MAP_Wall_IndCnc_4",[3790.8044,10193.417],44.607571], + ["MAP_Wall_IndCnc_4_D",[3794.9731,10189.274,9.1552734e-005],45.038445], + ["MAP_Wall_IndCnc_4",[3799.012,10185.269,6.1035156e-005],44.742367], + ["MAP_Wall_IndCnc_4",[3800.4587,10181.13],134.63934], + ["MAP_Wall_IndCnc_4",[3796.2705,10176.872,3.0517578e-005],134.942], + ["MAP_Wall_IndCnc_4",[3792.1367,10172.675,-3.0517578e-005],134.00362], + ["MAP_Wall_IndCnc_4_D",[3787.9158,10168.415,-6.1035156e-005],134.6832], + ["MAP_Wall_IndCnc_4",[3783.7405,10164.178],134.5287], + ["MAP_Wall_IndCnc_4",[3779.5869,10159.958,3.0517578e-005],135.18356], + ["MAP_Wall_IndCnc_End_2",[3775.072,10155.492,3.0517578e-005],-44.03801], + ["MAP_Wall_IndCnc_Pole",[3771.2969,10156.688,3.0517578e-005],-43.831253], + ["MAP_Wall_IndCnc_End_3",[3776.5454,10156.865,3.0517578e-005],-45.779484], + ["MAP_Wall_IndCnc_End_3",[3773.9424,10154.893,-9.1552734e-005],45.019844], + ["MAP_Wall_IndCnc_4",[3768.3975,10159.543,-3.0517578e-005],44.803612], + ["MAP_Wall_IndCnc_4",[3764.188,10163.698,6.1035156e-005],44.7495], + ["MAP_Wall_IndCnc_4_D",[3760.0066,10167.846,6.1035156e-005],44.524143], + ["MAP_Wall_IndCnc_4_D",[3755.7297,10172.021,3.0517578e-005],44.175945], + ["MAP_Wall_IndCnc_4",[3746.9348,10180.749,3.0517578e-005],45.078255], + ["MAP_Wall_IndCnc_End_3",[3751.9839,10175.709],44.293858], + ["MAP_Wall_IndCnc_End_2",[3753.5728,10174.18],45.260712], + ["MAP_Wall_IndCnc_4",[3748.4175,10185.03,-3.0517578e-005],134.92021], + ["MAP_Wall_IndCnc_4",[3752.6172,10189.266],134.92537], + ["MAP_Wall_IndCnc_4",[3756.7288,10193.433,-3.0517578e-005],134.65967], + ["MAP_Wall_IndCnc_4",[3772.1467,10209.17],134.7368], + ["MAP_Wall_IndCnc_4",[3767.9802,10204.938],134.44206], + ["MAP_Wall_IndCnc_4_D",[3763.8232,10200.712],135.30008], + ["MAP_Wall_IndCnc_End_3",[3759.4111,10196.146],-46.855453], + ["MAP_Wall_IndCnc_End_3",[3760.8284,10197.604],-45.738556], + ["MAP_Shed_M02_ruins",[3768.8252,10164.48,-6.1035156e-005],-45.141129], + ["Rubbish5",[3773.9319,10197.524,3.0517578e-005],0], + ["ZavoraAnim",[3786.52,10198.715,-3.0517578e-005],44.582699], + ["CampEast",[3793.0642,10181.756],135.25246], + ["CampEast",[3786.783,10175.574,9.1552734e-005],135.47437], + ["CampEast",[3780.4661,10169.285,6.1035156e-005],135.32259], + ["Land_Ind_BoardsPack1",[3785.9409,10194.699],-46.147747], + ["Land_Ind_BoardsPack1",[3786.9773,10195.8,6.1035156e-005],134.02464], + ["Land_Ind_BoardsPack1",[3789.1101,10193.689,-6.1035156e-005],-45.304409], + ["Land_Ind_BoardsPack1",[3788.043,10192.63,6.1035156e-005],-45.404705], + ["MAP_A_Castle_Stairs_A",[3779.8196,10195.759,-8.526885],43.194855], + ["Land_Misc_deerstand",[3774.6978,10206.236,-3.0517578e-005],224.726353], + ["FlagCarrierRedCross_EP1",[3780.4919,10202.366,6.1035156e-005],0], + ["FlagCarrierRedCross_EP1",[3792.1567,10190.87],0], + ["Body2",[3778.478,10201.803,3.0517578e-005],-42.650253], + ["Body1",[3772.342,10193.213,3.0517578e-005],0], + ["Body2",[3791.7732,10184.093,-3.0517578e-005],40.07402], + ["Body1",[3768.9685,10171.18,0],0], + ["Body2",[3760.5063,10178.691],89.311447], + ["Land_Misc_deerstand",[3773.8142,10158.719,3.0517578e-005],-13.109641], + ["MAP_asf3_6konec",[3826.2429,10102.542,-3.0517578e-005],-9.4858913] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/NEA.sqf b/SQF/dayz_code/system/mission/chernarus/poi/NEA.sqf index c73478980..83c945e6d 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/NEA.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/NEA.sqf @@ -1,3957 +1,392 @@ -//New NEA DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_5 = objNull; -if (true) then -{ - _this = "MAP_runway_beton" createVehicle [11833.352, 12724.786, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_5 = _this; - _this setDir 199.17528; - _this setPos [11833.352, 12724.786, 3.0517578e-005]; -}; - -_vehicle_6 = objNull; -if (true) then -{ - _this = "MAP_runway_dirt_1" createVehicle [12104.935, 12714.147, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_6 = _this; - _this setDir -70.88578; - _this setPos [12104.935, 12714.147, 0.00015258789]; -}; - -_vehicle_7 = objNull; -if (true) then -{ - _this = "MAP_runway_dirt_2" createVehicle [12029.501, 12740.337, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_7 = _this; - _this setDir -70.997932; - _this setPos [12029.501, 12740.337, 6.1035156e-005]; -}; - -_vehicle_8 = objNull; -if (true) then -{ - _this = "MAP_runway_dirt_3" createVehicle [11953.965, 12766.381, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_8 = _this; - _this setDir -70.944405; - _this setPos [11953.965, 12766.381, 3.0517578e-005]; -}; - -_vehicle_9 = objNull; -if (true) then -{ - _this = "MAP_runway_end15" createVehicle [11822.007, 12812.468, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_9 = _this; - _this setDir -70.471237; - _this setPos [11822.007, 12812.468, 3.0517578e-005]; -}; - -_vehicle_10 = objNull; -if (true) then -{ - _this = "MAP_runway_end33" createVehicle [12444.145, 12595.791]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_10 = _this; - _this setDir -70.591644; - _this setPos [12444.145, 12595.791]; -}; - -_vehicle_15 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [12115.081, 12679.46, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_15 = _this; - _this setDir -71.017082; - _this setPos [12115.081, 12679.46, 1.5258789e-005]; -}; - -_vehicle_19 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [12039.447, 12705.5, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_19 = _this; - _this setDir -70.887802; - _this setPos [12039.447, 12705.5, 1.5258789e-005]; -}; - -_vehicle_20 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [12190.391, 12653.309]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_20 = _this; - _this setDir -70.618553; - _this setPos [12190.391, 12653.309]; -}; - -_vehicle_21 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [12265.765, 12626.79, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_21 = _this; - _this setDir -70.65612; - _this setPos [12265.765, 12626.79, -7.6293945e-005]; -}; - -_vehicle_22 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [11964.168, 12731.456, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_22 = _this; - _this setDir -70.973801; - _this setPos [11964.168, 12731.456, 4.5776367e-005]; -}; - -_vehicle_23 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [11888.549, 12757.641]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_23 = _this; - _this setDir -70.747444; - _this setPos [11888.549, 12757.641]; -}; - -_vehicle_25 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_L_2_end" createVehicle [11822.448, 12754.064, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_25 = _this; - _this setDir 19.445869; - _this setPos [11822.448, 12754.064, 1.5258789e-005]; -}; - -_vehicle_26 = objNull; -if (true) then -{ - _this = "MAP_runway_main" createVehicle [12180.6, 12688.236, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_26 = _this; - _this setDir -71.078163; - _this setPos [12180.6, 12688.236, -6.1035156e-005]; -}; - -_vehicle_27 = objNull; -if (true) then -{ - _this = "MAP_runway_main" createVehicle [12255.914, 12662.013]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_27 = _this; - _this setDir -70.771332; - _this setPos [12255.914, 12662.013]; -}; - -_vehicle_28 = objNull; -if (true) then -{ - _this = "MAP_runway_main" createVehicle [12331.299, 12635.485, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_28 = _this; - _this setDir -70.614288; - _this setPos [12331.299, 12635.485, 0.00010681152]; -}; - -_vehicle_29 = objNull; -if (true) then -{ - _this = "MAP_runway_main" createVehicle [12406.705, 12609.01]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_29 = _this; - _this setDir -70.66494; - _this setPos [12406.705, 12609.01]; -}; - -_vehicle_30 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_L_1_end" createVehicle [12451.45, 12555.947]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_30 = _this; - _this setDir 19.091259; - _this setPos [12451.45, 12555.947]; -}; - -_vehicle_36 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [12341.155, 12600.269, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_36 = _this; - _this setDir -70.444229; - _this setPos [12341.155, 12600.269, 3.0517578e-005]; -}; - -_vehicle_37 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [12414.951, 12574.252, 0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_37 = _this; - _this setDir -70.63224; - _this setPos [12414.951, 12574.252, 0.00010681152]; -}; - -_vehicle_38 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [11791.481, 12695.446]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_38 = _this; - _this setDir 19.106287; - _this setPos [11791.481, 12695.446]; -}; - -_vehicle_39 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_L_2_end" createVehicle [11795.605, 12631.493, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_39 = _this; - _this setDir -70.53743; - _this setPos [11795.605, 12631.493, -3.0517578e-005]; -}; - -_vehicle_44 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_L_2_end" createVehicle [11842.692, 12630.96, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_44 = _this; - _this setDir -160.8102; - _this setPos [11842.692, 12630.96, -4.5776367e-005]; -}; - -_vehicle_45 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_draha" createVehicle [11873.847, 12689.994, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_45 = _this; - _this setDir -160.6732; - _this setPos [11873.847, 12689.994, 3.0517578e-005]; -}; - -_vehicle_46 = objNull; -if (true) then -{ - _this = "MAP_runway_poj_T_1" createVehicle [11890.456, 12735.828, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_46 = _this; - _this setDir -70.75457; - _this setPos [11890.456, 12735.828, -1.5258789e-005]; -}; - -_vehicle_47 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12449.138, 12601.985, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_47 = _this; - _this setPos [12449.138, 12601.985, -1.5258789e-005]; -}; - -_vehicle_48 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12448.269, 12583.205, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_48 = _this; - _this setPos [12448.269, 12583.205, 6.1035156e-005]; -}; - -_vehicle_49 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12457.416, 12591.121, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_49 = _this; - _this setPos [12457.416, 12591.121, 3.0517578e-005]; -}; - -_vehicle_50 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12443.967, 12572.388, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_50 = _this; - _this setPos [12443.967, 12572.388, 1.5258789e-005]; -}; - -_vehicle_51 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12440.153, 12558.789, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_51 = _this; - _this setPos [12440.153, 12558.789, 3.0517578e-005]; -}; - -_vehicle_52 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12443.545, 12547.887, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_52 = _this; - _this setPos [12443.545, 12547.887, 9.1552734e-005]; -}; - -_vehicle_53 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12441.473, 12609.4, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_53 = _this; - _this setPos [12441.473, 12609.4, 3.0517578e-005]; -}; - -_vehicle_54 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12430.711, 12593.027, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_54 = _this; - _this setPos [12430.711, 12593.027, 0.0001373291]; -}; - -_vehicle_55 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12425.938, 12581.104, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_55 = _this; - _this setPos [12425.938, 12581.104, 4.5776367e-005]; -}; - -_vehicle_56 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12424.284, 12565.177, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_56 = _this; - _this setPos [12424.284, 12565.177, 3.0517578e-005]; -}; - -_vehicle_57 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12410.519, 12572.005, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_57 = _this; - _this setPos [12410.519, 12572.005, -9.1552734e-005]; -}; - -_vehicle_58 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12414.055, 12590.268, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_58 = _this; - _this setPos [12414.055, 12590.268, 3.0517578e-005]; -}; - -_vehicle_59 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12424.613, 12606.827, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_59 = _this; - _this setPos [12424.613, 12606.827, -1.5258789e-005]; -}; - -_vehicle_60 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12427.446, 12617.969, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_60 = _this; - _this setPos [12427.446, 12617.969, 1.5258789e-005]; -}; - -_vehicle_61 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12411.921, 12620.701, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_61 = _this; - _this setPos [12411.921, 12620.701, 3.0517578e-005]; -}; - -_vehicle_62 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12408.554, 12605.682, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_62 = _this; - _this setPos [12408.554, 12605.682, -3.0517578e-005]; -}; - -_vehicle_63 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12400.531, 12594.063, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_63 = _this; - _this setPos [12400.531, 12594.063, 1.5258789e-005]; -}; - -_vehicle_64 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12400.095, 12582.44, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_64 = _this; - _this setPos [12400.095, 12582.44, -1.5258789e-005]; -}; - -_vehicle_65 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12393.105, 12577.232, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_65 = _this; - _this setPos [12393.105, 12577.232, 0]; -}; - -_vehicle_66 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12380.116, 12582.962, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_66 = _this; - _this setPos [12380.116, 12582.962, 4.5776367e-005]; -}; - -_vehicle_67 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12384.822, 12597.572, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_67 = _this; - _this setPos [12384.822, 12597.572, -1.5258789e-005]; -}; - -_vehicle_68 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12391.923, 12609.14, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_68 = _this; - _this setPos [12391.923, 12609.14, 1.5258789e-005]; -}; - -_vehicle_69 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12396.623, 12622.667, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_69 = _this; - _this setPos [12396.623, 12622.667, 3.0517578e-005]; -}; - -_vehicle_70 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12384.899, 12630.688, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_70 = _this; - _this setPos [12384.899, 12630.688, 0]; -}; - -_vehicle_71 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12378.116, 12617.534, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_71 = _this; - _this setPos [12378.116, 12617.534, 0]; -}; - -_vehicle_72 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12370.082, 12606.084, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_72 = _this; - _this setPos [12370.082, 12606.084, 1.5258789e-005]; -}; - -_vehicle_73 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12367.645, 12594.518, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_73 = _this; - _this setPos [12367.645, 12594.518, 1.5258789e-005]; -}; - -_vehicle_74 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12364.29, 12588.428, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_74 = _this; - _this setPos [12364.29, 12588.428, 0]; -}; - -_vehicle_75 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12352.762, 12594.353, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_75 = _this; - _this setPos [12352.762, 12594.353, 0]; -}; - -_vehicle_76 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12356.578, 12605.061, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_76 = _this; - _this setPos [12356.578, 12605.061, 0]; -}; - -_vehicle_77 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12360.133, 12616.088, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_77 = _this; - _this setPos [12360.133, 12616.088, 0]; -}; - -_vehicle_78 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12365.306, 12628.296, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_78 = _this; - _this setPos [12365.306, 12628.296, 3.0517578e-005]; -}; - -_vehicle_79 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12370.574, 12637.955, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_79 = _this; - _this setPos [12370.574, 12637.955, 1.5258789e-005]; -}; - -_vehicle_80 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12355.402, 12640.513, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_80 = _this; - _this setPos [12355.402, 12640.513, 0]; -}; - -_vehicle_81 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12347.492, 12627.549, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_81 = _this; - _this setPos [12347.492, 12627.549, 1.5258789e-005]; -}; - -_vehicle_82 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12343.257, 12613.442, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_82 = _this; - _this setPos [12343.257, 12613.442, 0]; -}; - -_vehicle_83 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12338.662, 12600.644, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_83 = _this; - _this setPos [12338.662, 12600.644, -6.1035156e-005]; -}; - -_vehicle_84 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12325.665, 12603.455, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_84 = _this; - _this setPos [12325.665, 12603.455, 4.5776367e-005]; -}; - -_vehicle_85 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12328.533, 12614.692, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_85 = _this; - _this setPos [12328.533, 12614.692, 1.5258789e-005]; -}; - -_vehicle_86 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12334.059, 12626.479, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_86 = _this; - _this setPos [12334.059, 12626.479, 0]; -}; - -_vehicle_87 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12337.212, 12639.277, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_87 = _this; - _this setPos [12337.212, 12639.277, 4.5776367e-005]; -}; - -_vehicle_88 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12341.688, 12649.561, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_88 = _this; - _this setPos [12341.688, 12649.561, 0]; -}; - -_vehicle_89 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12326.564, 12651.172, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_89 = _this; - _this setPos [12326.564, 12651.172, -1.5258789e-005]; -}; - -_vehicle_90 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12321.225, 12637.012, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_90 = _this; - _this setPos [12321.225, 12637.012, -1.5258789e-005]; -}; - -_vehicle_91 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12316.511, 12625.511, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_91 = _this; - _this setPos [12316.511, 12625.511, -3.0517578e-005]; -}; - -_vehicle_92 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12312.228, 12614.416, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_92 = _this; - _this setPos [12312.228, 12614.416, 1.5258789e-005]; -}; - -_vehicle_93 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12311.803, 12607.522, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_93 = _this; - _this setPos [12311.803, 12607.522, 3.0517578e-005]; -}; - -_vehicle_94 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12300.34, 12610.76, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_94 = _this; - _this setPos [12300.34, 12610.76, 0]; -}; - -_vehicle_95 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12303.121, 12619.515, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_95 = _this; - _this setPos [12303.121, 12619.515, -6.1035156e-005]; -}; - -_vehicle_96 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12306.826, 12631.679, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_96 = _this; - _this setPos [12306.826, 12631.679, 3.0517578e-005]; -}; - -_vehicle_97 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12309.497, 12643.105, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_97 = _this; - _this setPos [12309.497, 12643.105, 0]; -}; - -_vehicle_98 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12313.968, 12655.063, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_98 = _this; - _this setPos [12313.968, 12655.063, -3.0517578e-005]; -}; - -_vehicle_99 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12302.725, 12659.687, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_99 = _this; - _this setPos [12302.725, 12659.687, -3.0517578e-005]; -}; - -_vehicle_100 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12298.065, 12648.667, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_100 = _this; - _this setPos [12298.065, 12648.667, 3.0517578e-005]; -}; - -_vehicle_101 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12294.225, 12636.635, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_101 = _this; - _this setPos [12294.225, 12636.635, 0]; -}; - -_vehicle_102 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12291.446, 12626.848, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_102 = _this; - _this setPos [12291.446, 12626.848, 1.5258789e-005]; -}; - -_vehicle_103 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12287.464, 12614.992, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_103 = _this; - _this setPos [12287.464, 12614.992, -1.5258789e-005]; -}; - -_vehicle_104 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12276.107, 12618.728, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_104 = _this; - _this setPos [12276.107, 12618.728, 4.5776367e-005]; -}; - -_vehicle_105 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12279.14, 12630.001, 0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_105 = _this; - _this setPos [12279.14, 12630.001, 0.00016784668]; -}; - -_vehicle_106 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12282.44, 12640.776, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_106 = _this; - _this setPos [12282.44, 12640.776, -3.0517578e-005]; -}; - -_vehicle_107 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12287.094, 12654.634, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_107 = _this; - _this setPos [12287.094, 12654.634, 0]; -}; - -_vehicle_108 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12290.029, 12664.062, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_108 = _this; - _this setPos [12290.029, 12664.062, 1.5258789e-005]; -}; - -_vehicle_109 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12279.977, 12667.794, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_109 = _this; - _this setPos [12279.977, 12667.794, 1.5258789e-005]; -}; - -_vehicle_110 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12274.697, 12654.005, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_110 = _this; - _this setPos [12274.697, 12654.005, 1.5258789e-005]; -}; - -_vehicle_111 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12269.475, 12641.901, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_111 = _this; - _this setPos [12269.475, 12641.901, 3.0517578e-005]; -}; - -_vehicle_112 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12265.341, 12628.562, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_112 = _this; - _this setPos [12265.341, 12628.562, -1.5258789e-005]; -}; - -_vehicle_113 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12261.723, 12623.555, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_113 = _this; - _this setPos [12261.723, 12623.555, 4.5776367e-005]; -}; - -_vehicle_114 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12266.063, 12670.29, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_114 = _this; - _this setPos [12266.063, 12670.29, 4.5776367e-005]; -}; - -_vehicle_115 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12260.409, 12655.261, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_115 = _this; - _this setPos [12260.409, 12655.261, 3.0517578e-005]; -}; - -_vehicle_116 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12252.529, 12643.91, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_116 = _this; - _this setPos [12252.529, 12643.91, 3.0517578e-005]; -}; - -_vehicle_117 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12248.785, 12630.418, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_117 = _this; - _this setPos [12248.785, 12630.418, 0]; -}; - -_vehicle_118 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12237.637, 12634.719, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_118 = _this; - _this setPos [12237.637, 12634.719, 0]; -}; - -_vehicle_119 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12240.345, 12644.953, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_119 = _this; - _this setPos [12240.345, 12644.953, -1.5258789e-005]; -}; - -_vehicle_120 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12245.996, 12656.736, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_120 = _this; - _this setPos [12245.996, 12656.736, 3.0517578e-005]; -}; - -_vehicle_121 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12250.003, 12669.15, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_121 = _this; - _this setPos [12250.003, 12669.15, 1.5258789e-005]; -}; - -_vehicle_122 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12253.217, 12678.033, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_122 = _this; - _this setPos [12253.217, 12678.033, 1.5258789e-005]; -}; - -_vehicle_123 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12236.409, 12683.36, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_123 = _this; - _this setPos [12236.409, 12683.36, 3.0517578e-005]; -}; - -_vehicle_124 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12234.014, 12668.953, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_124 = _this; - _this setPos [12234.014, 12668.953, 0]; -}; - -_vehicle_125 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12227.477, 12655.744, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_125 = _this; - _this setPos [12227.477, 12655.744, 1.5258789e-005]; -}; - -_vehicle_126 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12224.586, 12645.112, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_126 = _this; - _this setPos [12224.586, 12645.112, 1.5258789e-005]; -}; - -_vehicle_127 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12224.12, 12636.691, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_127 = _this; - _this setPos [12224.12, 12636.691, -4.5776367e-005]; -}; - -_vehicle_128 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12210.236, 12642.979, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_128 = _this; - _this setPos [12210.236, 12642.979, 1.5258789e-005]; -}; - -_vehicle_129 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12213.331, 12655.859, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_129 = _this; - _this setPos [12213.331, 12655.859, 0]; -}; - -_vehicle_130 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12217.076, 12667.909, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_130 = _this; - _this setPos [12217.076, 12667.909, 6.1035156e-005]; -}; - -_vehicle_131 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12222.063, 12679.743, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_131 = _this; - _this setPos [12222.063, 12679.743, 1.5258789e-005]; -}; - -_vehicle_132 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12223.627, 12688.579, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_132 = _this; - _this setPos [12223.627, 12688.579, 1.5258789e-005]; -}; - -_vehicle_133 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12211.212, 12691.705, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_133 = _this; - _this setPos [12211.212, 12691.705, -1.5258789e-005]; -}; - -_vehicle_134 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12206.646, 12678.009, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_134 = _this; - _this setPos [12206.646, 12678.009, 3.0517578e-005]; -}; - -_vehicle_135 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12202.547, 12667.329, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_135 = _this; - _this setPos [12202.547, 12667.329, 0]; -}; - -_vehicle_136 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12198.567, 12656.072, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_136 = _this; - _this setPos [12198.567, 12656.072, 3.0517578e-005]; -}; - -_vehicle_137 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12196.364, 12646.344, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_137 = _this; - _this setPos [12196.364, 12646.344, -6.1035156e-005]; -}; - -_vehicle_138 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12184.147, 12652.874, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_138 = _this; - _this setPos [12184.147, 12652.874, 6.1035156e-005]; -}; - -_vehicle_139 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12185.381, 12665.954, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_139 = _this; - _this setPos [12185.381, 12665.954, -3.0517578e-005]; -}; - -_vehicle_140 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12190.479, 12679.198, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_140 = _this; - _this setPos [12190.479, 12679.198, 0]; -}; - -_vehicle_141 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12195.455, 12694.118, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_141 = _this; - _this setPos [12195.455, 12694.118, 0]; -}; - -_vehicle_142 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12203.523, 12698.949, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_142 = _this; - _this setPos [12203.523, 12698.949, 0]; -}; - -_vehicle_143 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12184.054, 12700.647, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_143 = _this; - _this setPos [12184.054, 12700.647, 0]; -}; - -_vehicle_144 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12178.159, 12686.023, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_144 = _this; - _this setPos [12178.159, 12686.023, 3.0517578e-005]; -}; - -_vehicle_145 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12173.937, 12673.232, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_145 = _this; - _this setPos [12173.937, 12673.232, 0]; -}; - -_vehicle_146 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12170.143, 12661.287, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_146 = _this; - _this setPos [12170.143, 12661.287, 4.5776367e-005]; -}; - -_vehicle_147 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12172.007, 12653.897, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_147 = _this; - _this setPos [12172.007, 12653.897, 7.6293945e-005]; -}; - -_vehicle_148 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12157.32, 12660.926, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_148 = _this; - _this setPos [12157.32, 12660.926, 0]; -}; - -_vehicle_149 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12160.194, 12672.946, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_149 = _this; - _this setPos [12160.194, 12672.946, 3.0517578e-005]; -}; - -_vehicle_150 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12162.611, 12684.836, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_150 = _this; - _this setPos [12162.611, 12684.836, 0]; -}; - -_vehicle_151 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12165.782, 12696.961, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_151 = _this; - _this setPos [12165.782, 12696.961, 0]; -}; - -_vehicle_152 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12170.319, 12706.323, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_152 = _this; - _this setPos [12170.319, 12706.323, 1.5258789e-005]; -}; - -_vehicle_153 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12157.438, 12710.313, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_153 = _this; - _this setPos [12157.438, 12710.313, 3.0517578e-005]; -}; - -_vehicle_154 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12152.704, 12695.341, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_154 = _this; - _this setPos [12152.704, 12695.341, 0]; -}; - -_vehicle_155 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12148.332, 12682.457, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_155 = _this; - _this setPos [12148.332, 12682.457, 0]; -}; - -_vehicle_156 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12144.785, 12670.386, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_156 = _this; - _this setPos [12144.785, 12670.386, 1.5258789e-005]; -}; - -_vehicle_157 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12135.607, 12665.504, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_157 = _this; - _this setPos [12135.607, 12665.504, 1.5258789e-005]; -}; - -_vehicle_158 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12136.784, 12679.706, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_158 = _this; - _this setPos [12136.784, 12679.706, 0]; -}; - -_vehicle_159 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12138.868, 12691.088, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_159 = _this; - _this setPos [12138.868, 12691.088, 1.5258789e-005]; -}; - -_vehicle_160 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12142.33, 12703.661, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_160 = _this; - _this setPos [12142.33, 12703.661, 6.1035156e-005]; -}; - -_vehicle_161 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12143.224, 12715.053, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_161 = _this; - _this setPos [12143.224, 12715.053, 0]; -}; - -_vehicle_162 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12134.386, 12718.184, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_162 = _this; - _this setPos [12134.386, 12718.184, 3.0517578e-005]; -}; - -_vehicle_163 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12128.65, 12704.532, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_163 = _this; - _this setPos [12128.65, 12704.532, 0]; -}; - -_vehicle_164 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12123.266, 12688.767, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_164 = _this; - _this setPos [12123.266, 12688.767, 3.0517578e-005]; -}; - -_vehicle_165 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12123.714, 12674.122, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_165 = _this; - _this setPos [12123.714, 12674.122, 3.0517578e-005]; -}; - -_vehicle_166 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12109.708, 12678.537, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_166 = _this; - _this setPos [12109.708, 12678.537, 3.0517578e-005]; -}; - -_vehicle_167 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12113.136, 12693.396, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_167 = _this; - _this setPos [12113.136, 12693.396, -1.5258789e-005]; -}; - -_vehicle_168 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12117.562, 12707.989, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_168 = _this; - _this setPos [12117.562, 12707.989, 0]; -}; - -_vehicle_169 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12122.133, 12720.513, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_169 = _this; - _this setPos [12122.133, 12720.513, 3.0517578e-005]; -}; - -_vehicle_170 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12111.721, 12725.703, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_170 = _this; - _this setPos [12111.721, 12725.703, 3.0517578e-005]; -}; - -_vehicle_171 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12105.696, 12710.837, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_171 = _this; - _this setPos [12105.696, 12710.837, -1.5258789e-005]; -}; - -_vehicle_172 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12100.185, 12695.581, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_172 = _this; - _this setPos [12100.185, 12695.581, 3.0517578e-005]; -}; - -_vehicle_173 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12095.888, 12686.208, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_173 = _this; - _this setPos [12095.888, 12686.208, 0]; -}; - -_vehicle_174 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12080.766, 12690.188, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_174 = _this; - _this setPos [12080.766, 12690.188, 3.0517578e-005]; -}; - -_vehicle_175 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12085.862, 12701.523, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_175 = _this; - _this setPos [12085.862, 12701.523, 1.5258789e-005]; -}; - -_vehicle_176 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12088.903, 12713.447, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_176 = _this; - _this setPos [12088.903, 12713.447, 3.0517578e-005]; -}; - -_vehicle_177 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12092.709, 12725.762, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_177 = _this; - _this setPos [12092.709, 12725.762, 1.5258789e-005]; -}; - -_vehicle_178 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12096.975, 12733.729, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_178 = _this; - _this setPos [12096.975, 12733.729, 1.5258789e-005]; -}; - -_vehicle_179 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12085.109, 12736.413, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_179 = _this; - _this setPos [12085.109, 12736.413, 0]; -}; - -_vehicle_180 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12079.017, 12724.349, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_180 = _this; - _this setPos [12079.017, 12724.349, 1.5258789e-005]; -}; - -_vehicle_181 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12073.448, 12712.842, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_181 = _this; - _this setPos [12073.448, 12712.842, 0]; -}; - -_vehicle_182 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12069.974, 12701.076, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_182 = _this; - _this setPos [12069.974, 12701.076, 1.5258789e-005]; -}; - -_vehicle_183 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12065.617, 12690.351, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_183 = _this; - _this setPos [12065.617, 12690.351, 9.1552734e-005]; -}; - -_vehicle_184 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12053.842, 12696.022, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_184 = _this; - _this setPos [12053.842, 12696.022, 0]; -}; - -_vehicle_185 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12057.136, 12708.982, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_185 = _this; - _this setPos [12057.136, 12708.982, 6.1035156e-005]; -}; - -_vehicle_186 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12060.514, 12720.233, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_186 = _this; - _this setPos [12060.514, 12720.233, 1.5258789e-005]; -}; - -_vehicle_187 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12064.432, 12730.609, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_187 = _this; - _this setPos [12064.432, 12730.609, 1.5258789e-005]; -}; - -_vehicle_188 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12071.859, 12740.11, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_188 = _this; - _this setPos [12071.859, 12740.11, 0]; -}; - -_vehicle_189 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12056.973, 12745.313, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_189 = _this; - _this setPos [12056.973, 12745.313, 1.5258789e-005]; -}; - -_vehicle_190 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12052.312, 12730.878, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_190 = _this; - _this setPos [12052.312, 12730.878, 4.5776367e-005]; -}; - -_vehicle_191 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12047.233, 12717.738, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_191 = _this; - _this setPos [12047.233, 12717.738, 1.5258789e-005]; -}; - -_vehicle_192 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12044.311, 12707.099, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_192 = _this; - _this setPos [12044.311, 12707.099, 3.0517578e-005]; -}; - -_vehicle_193 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12038.868, 12699.035, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_193 = _this; - _this setPos [12038.868, 12699.035, -3.0517578e-005]; -}; - -_vehicle_194 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12025.358, 12705.295, -0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_194 = _this; - _this setPos [12025.358, 12705.295, -0.0001373291]; -}; - -_vehicle_195 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12029.154, 12716.378, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_195 = _this; - _this setPos [12029.154, 12716.378, 3.0517578e-005]; -}; - -_vehicle_196 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12030.744, 12728.67, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_196 = _this; - _this setPos [12030.744, 12728.67, 4.5776367e-005]; -}; - -_vehicle_197 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12034.885, 12740.086, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_197 = _this; - _this setPos [12034.885, 12740.086, 4.5776367e-005]; -}; - -_vehicle_198 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12042.495, 12751.11, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_198 = _this; - _this setPos [12042.495, 12751.11, 0]; -}; - -_vehicle_199 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12023.882, 12756.131, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_199 = _this; - _this setPos [12023.882, 12756.131, 1.5258789e-005]; -}; - -_vehicle_200 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12018.824, 12740.827, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_200 = _this; - _this setPos [12018.824, 12740.827, 1.5258789e-005]; -}; - -_vehicle_201 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12015.533, 12726.803, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_201 = _this; - _this setPos [12015.533, 12726.803, 0]; -}; - -_vehicle_202 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12011.602, 12713.39, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_202 = _this; - _this setPos [12011.602, 12713.39, 3.0517578e-005]; -}; - -_vehicle_203 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12013.309, 12704.627, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_203 = _this; - _this setPos [12013.309, 12704.627, 1.5258789e-005]; -}; - -_vehicle_204 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11996.918, 12713.501, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_204 = _this; - _this setPos [11996.918, 12713.501, -9.1552734e-005]; -}; - -_vehicle_205 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11997.146, 12727.386, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_205 = _this; - _this setPos [11997.146, 12727.386, 0]; -}; - -_vehicle_206 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12004.312, 12737.837, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_206 = _this; - _this setPos [12004.312, 12737.837, 4.5776367e-005]; -}; - -_vehicle_207 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12004.698, 12750.066, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_207 = _this; - _this setPos [12004.698, 12750.066, 0]; -}; - -_vehicle_208 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [12010.233, 12763.051, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_208 = _this; - _this setPos [12010.233, 12763.051, 1.5258789e-005]; -}; - -_vehicle_209 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11995.073, 12766.032, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_209 = _this; - _this setPos [11995.073, 12766.032, 0]; -}; - -_vehicle_210 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11991.207, 12752.036, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_210 = _this; - _this setPos [11991.207, 12752.036, 0]; -}; - -_vehicle_211 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11987.48, 12739.922, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_211 = _this; - _this setPos [11987.48, 12739.922, 1.5258789e-005]; -}; - -_vehicle_212 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11983.766, 12728.175, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_212 = _this; - _this setPos [11983.766, 12728.175, 4.5776367e-005]; -}; - -_vehicle_213 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11981.706, 12717.673, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_213 = _this; - _this setPos [11981.706, 12717.673, -1.5258789e-005]; -}; - -_vehicle_214 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11969.366, 12722.753, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_214 = _this; - _this setPos [11969.366, 12722.753, 1.5258789e-005]; -}; - -_vehicle_215 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11971.897, 12736.396, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_215 = _this; - _this setPos [11971.897, 12736.396, -3.0517578e-005]; -}; - -_vehicle_216 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11975.418, 12749.836, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_216 = _this; - _this setPos [11975.418, 12749.836, 0]; -}; - -_vehicle_217 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11979.256, 12762.235, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_217 = _this; - _this setPos [11979.256, 12762.235, 3.0517578e-005]; -}; - -_vehicle_218 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11981.789, 12772.279, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_218 = _this; - _this setPos [11981.789, 12772.279, 0]; -}; - -_vehicle_219 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11967.7, 12775.415, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_219 = _this; - _this setPos [11967.7, 12775.415, 1.5258789e-005]; -}; - -_vehicle_220 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11962.764, 12761.74, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_220 = _this; - _this setPos [11962.764, 12761.74, 1.5258789e-005]; -}; - -_vehicle_221 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11958.729, 12746.606, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_221 = _this; - _this setPos [11958.729, 12746.606, -3.0517578e-005]; -}; - -_vehicle_222 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11956.446, 12733.641, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_222 = _this; - _this setPos [11956.446, 12733.641, -3.0517578e-005]; -}; - -_vehicle_223 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11940.328, 12736.415, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_223 = _this; - _this setPos [11940.328, 12736.415, -1.5258789e-005]; -}; - -_vehicle_224 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11945.175, 12749.42, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_224 = _this; - _this setPos [11945.175, 12749.42, -3.0517578e-005]; -}; - -_vehicle_225 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11949.998, 12761.021, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_225 = _this; - _this setPos [11949.998, 12761.021, 3.0517578e-005]; -}; - -_vehicle_226 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11952.954, 12773.387, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_226 = _this; - _this setPos [11952.954, 12773.387, 0]; -}; - -_vehicle_227 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11952.819, 12781.21, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_227 = _this; - _this setPos [11952.819, 12781.21, 1.5258789e-005]; -}; - -_vehicle_228 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11940.223, 12784.269, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_228 = _this; - _this setPos [11940.223, 12784.269, 0]; -}; - -_vehicle_229 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11938.025, 12769.682, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_229 = _this; - _this setPos [11938.025, 12769.682, 4.5776367e-005]; -}; - -_vehicle_230 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11932.69, 12756.665, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_230 = _this; - _this setPos [11932.69, 12756.665, 0]; -}; - -_vehicle_231 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11929.305, 12746.166, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_231 = _this; - _this setPos [11929.305, 12746.166, -3.0517578e-005]; -}; - -_vehicle_232 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11925.022, 12741.172, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_232 = _this; - _this setPos [11925.022, 12741.172, 0]; -}; - -_vehicle_233 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11910.994, 12741.087, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_233 = _this; - _this setPos [11910.994, 12741.087, -1.5258789e-005]; -}; - -_vehicle_234 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11916.012, 12753.709, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_234 = _this; - _this setPos [11916.012, 12753.709, 7.6293945e-005]; -}; - -_vehicle_235 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11920.03, 12765.092, 0.00015258789]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_235 = _this; - _this setPos [11920.03, 12765.092, 0.00015258789]; -}; - -_vehicle_236 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11923.17, 12776.996, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_236 = _this; - _this setPos [11923.17, 12776.996, 1.5258789e-005]; -}; - -_vehicle_237 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11926.937, 12789.116, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_237 = _this; - _this setPos [11926.937, 12789.116, 1.5258789e-005]; -}; - -_vehicle_238 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11914.802, 12794.158, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_238 = _this; - _this setPos [11914.802, 12794.158, 0.00012207031]; -}; - -_vehicle_239 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11910.124, 12780.403, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_239 = _this; - _this setPos [11910.124, 12780.403, 0]; -}; - -_vehicle_240 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11906.202, 12767.164, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_240 = _this; - _this setPos [11906.202, 12767.164, 3.0517578e-005]; -}; - -_vehicle_241 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11901.23, 12753.686, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_241 = _this; - _this setPos [11901.23, 12753.686, 4.5776367e-005]; -}; - -_vehicle_242 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11895.944, 12743.282, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_242 = _this; - _this setPos [11895.944, 12743.282, -7.6293945e-005]; -}; - -_vehicle_243 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11898.353, 12733.475, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_243 = _this; - _this setPos [11898.353, 12733.475, 0]; -}; - -_vehicle_244 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11885.398, 12736.582, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_244 = _this; - _this setPos [11885.398, 12736.582, 4.5776367e-005]; -}; - -_vehicle_245 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11882.461, 12750.276, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_245 = _this; - _this setPos [11882.461, 12750.276, 4.5776367e-005]; -}; - -_vehicle_246 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11888.173, 12764.08, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_246 = _this; - _this setPos [11888.173, 12764.08, 1.5258789e-005]; -}; - -_vehicle_247 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11891.758, 12776.694, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_247 = _this; - _this setPos [11891.758, 12776.694, 1.5258789e-005]; -}; - -_vehicle_248 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11895.475, 12787.936, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_248 = _this; - _this setPos [11895.475, 12787.936, 1.5258789e-005]; -}; - -_vehicle_249 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11900.937, 12799.279, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_249 = _this; - _this setPos [11900.937, 12799.279, 3.0517578e-005]; -}; - -_vehicle_250 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11886.147, 12802.328, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_250 = _this; - _this setPos [11886.147, 12802.328, -7.6293945e-005]; -}; - -_vehicle_251 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11879.968, 12784.727, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_251 = _this; - _this setPos [11879.968, 12784.727, -1.5258789e-005]; -}; - -_vehicle_252 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11875.833, 12772.224, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_252 = _this; - _this setPos [11875.833, 12772.224, 0]; -}; - -_vehicle_253 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11871.435, 12758.445, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_253 = _this; - _this setPos [11871.435, 12758.445, 3.0517578e-005]; -}; - -_vehicle_254 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11856.719, 12765.083, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_254 = _this; - _this setPos [11856.719, 12765.083, 0]; -}; - -_vehicle_255 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11861.524, 12778.303, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_255 = _this; - _this setPos [11861.524, 12778.303, 3.0517578e-005]; -}; - -_vehicle_256 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11865.798, 12791.208, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_256 = _this; - _this setPos [11865.798, 12791.208, 0]; -}; - -_vehicle_257 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11874.163, 12797.659, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_257 = _this; - _this setPos [11874.163, 12797.659, 0]; -}; - -_vehicle_258 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11872.476, 12808.461, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_258 = _this; - _this setPos [11872.476, 12808.461, 3.0517578e-005]; -}; - -_vehicle_259 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11859.593, 12811.783, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_259 = _this; - _this setPos [11859.593, 12811.783, 1.5258789e-005]; -}; - -_vehicle_260 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11853.344, 12798.78, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_260 = _this; - _this setPos [11853.344, 12798.78, -3.0517578e-005]; -}; - -_vehicle_261 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11849.701, 12786.646, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_261 = _this; - _this setPos [11849.701, 12786.646, -3.0517578e-005]; -}; - -_vehicle_262 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11844.969, 12775.577, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_262 = _this; - _this setPos [11844.969, 12775.577, 1.5258789e-005]; -}; - -_vehicle_263 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11836.27, 12767.147, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_263 = _this; - _this setPos [11836.27, 12767.147, 4.5776367e-005]; -}; - -_vehicle_264 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11825.144, 12772.774, -0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_264 = _this; - _this setPos [11825.144, 12772.774, -0.0001373291]; -}; - -_vehicle_265 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11830.603, 12788.523, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_265 = _this; - _this setPos [11830.603, 12788.523, 0]; -}; - -_vehicle_266 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11837.979, 12799.686, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_266 = _this; - _this setPos [11837.979, 12799.686, 1.5258789e-005]; -}; - -_vehicle_267 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11843.769, 12816.066, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_267 = _this; - _this setPos [11843.769, 12816.066, 0]; -}; - -_vehicle_268 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11831.392, 12822.454, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_268 = _this; - _this setPos [11831.392, 12822.454, 1.5258789e-005]; -}; - -_vehicle_269 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11825.23, 12809.662, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_269 = _this; - _this setPos [11825.23, 12809.662, 3.0517578e-005]; -}; - -_vehicle_270 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11822.757, 12797.668, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_270 = _this; - _this setPos [11822.757, 12797.668, -1.5258789e-005]; -}; - -_vehicle_271 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11813.723, 12778.324, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_271 = _this; - _this setPos [11813.723, 12778.324, 3.0517578e-005]; -}; - -_vehicle_272 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11821.674, 12759.75, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_272 = _this; - _this setPos [11821.674, 12759.75, 4.5776367e-005]; -}; - -_vehicle_273 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11809.189, 12764.7, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_273 = _this; - _this setPos [11809.189, 12764.7, 0]; -}; - -_vehicle_274 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11804.84, 12747.866, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_274 = _this; - _this setPos [11804.84, 12747.866, 4.5776367e-005]; -}; - -_vehicle_275 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11811.66, 12744.911, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_275 = _this; - _this setPos [11811.66, 12744.911, 0]; -}; - -_vehicle_276 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11806.695, 12730.663, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_276 = _this; - _this setPos [11806.695, 12730.663, 0]; -}; - -_vehicle_277 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11797.649, 12732.933, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_277 = _this; - _this setPos [11797.649, 12732.933, -1.5258789e-005]; -}; - -_vehicle_278 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11793.252, 12715.276, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_278 = _this; - _this setPos [11793.252, 12715.276, 4.5776367e-005]; -}; - -_vehicle_279 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11806.406, 12716.162, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_279 = _this; - _this setPos [11806.406, 12716.162, 0]; -}; - -_vehicle_280 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11817.4, 12722.155, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_280 = _this; - _this setPos [11817.4, 12722.155, 3.0517578e-005]; -}; - -_vehicle_281 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11830.942, 12718.061, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_281 = _this; - _this setPos [11830.942, 12718.061, 6.1035156e-005]; -}; - -_vehicle_282 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11841.141, 12713.279, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_282 = _this; - _this setPos [11841.141, 12713.279, 3.0517578e-005]; -}; - -_vehicle_283 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11835.865, 12697.854, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_283 = _this; - _this setPos [11835.865, 12697.854, 3.0517578e-005]; -}; - -_vehicle_284 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11820.331, 12705.365, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_284 = _this; - _this setPos [11820.331, 12705.365, 0]; -}; - -_vehicle_285 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11828.585, 12684.733, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_285 = _this; - _this setPos [11828.585, 12684.733, 1.5258789e-005]; -}; - -_vehicle_286 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11836.787, 12693.276, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_286 = _this; - _this setPos [11836.787, 12693.276, 1.5258789e-005]; -}; - -_vehicle_287 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11826.392, 12671.255, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_287 = _this; - _this setPos [11826.392, 12671.255, -1.5258789e-005]; -}; - -_vehicle_288 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11820.186, 12657.934, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_288 = _this; - _this setPos [11820.186, 12657.934, -1.5258789e-005]; -}; - -_vehicle_289 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11820.368, 12653.997, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_289 = _this; - _this setPos [11820.368, 12653.997, 4.5776367e-005]; -}; - -_vehicle_290 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11806.033, 12658.229, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_290 = _this; - _this setPos [11806.033, 12658.229, 0]; -}; - -_vehicle_291 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11810.665, 12673.477, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_291 = _this; - _this setPos [11810.665, 12673.477, 4.5776367e-005]; -}; - -_vehicle_292 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11812.374, 12685.495, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_292 = _this; - _this setPos [11812.374, 12685.495, 3.0517578e-005]; -}; - -_vehicle_293 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11815.515, 12695.948, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_293 = _this; - _this setPos [11815.515, 12695.948, 1.5258789e-005]; -}; - -_vehicle_294 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11802.278, 12702.396, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_294 = _this; - _this setPos [11802.278, 12702.396, 1.5258789e-005]; -}; - -_vehicle_295 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11787.498, 12700.336, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_295 = _this; - _this setPos [11787.498, 12700.336, 3.0517578e-005]; -}; - -_vehicle_296 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11791.898, 12687.368, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_296 = _this; - _this setPos [11791.898, 12687.368, 0]; -}; - -_vehicle_297 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11793.908, 12671.397, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_297 = _this; - _this setPos [11793.908, 12671.397, -1.5258789e-005]; -}; - -_vehicle_298 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11801.524, 12680.248, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_298 = _this; - _this setPos [11801.524, 12680.248, 1.5258789e-005]; -}; - -_vehicle_299 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11789.115, 12661.667, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_299 = _this; - _this setPos [11789.115, 12661.667, 1.5258789e-005]; -}; - -_vehicle_300 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11782.063, 12677.065, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_300 = _this; - _this setPos [11782.063, 12677.065, 3.0517578e-005]; -}; - -_vehicle_301 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11774.023, 12662.949, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_301 = _this; - _this setPos [11774.023, 12662.949, 0]; -}; - -_vehicle_302 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11780.288, 12651.354, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_302 = _this; - _this setPos [11780.288, 12651.354, 1.5258789e-005]; -}; - -_vehicle_303 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11765.765, 12645.647, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_303 = _this; - _this setPos [11765.765, 12645.647, 3.0517578e-005]; -}; - -_vehicle_304 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11763.456, 12629.358, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_304 = _this; - _this setPos [11763.456, 12629.358, 0]; -}; - -_vehicle_305 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11778.76, 12635.271, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_305 = _this; - _this setPos [11778.76, 12635.271, 1.5258789e-005]; -}; - -_vehicle_306 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11792.172, 12628.86, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_306 = _this; - _this setPos [11792.172, 12628.86, 0]; -}; - -_vehicle_307 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11783.394, 12623.555, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_307 = _this; - _this setPos [11783.394, 12623.555, -1.5258789e-005]; -}; - -_vehicle_308 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11803.389, 12620.284, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_308 = _this; - _this setPos [11803.389, 12620.284, 3.0517578e-005]; -}; - -_vehicle_309 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11795.783, 12616.799, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_309 = _this; - _this setPos [11795.783, 12616.799, 4.5776367e-005]; -}; - -_vehicle_310 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11817.398, 12615.993, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_310 = _this; - _this setPos [11817.398, 12615.993, 1.5258789e-005]; -}; - -_vehicle_311 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11812.417, 12612.769, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_311 = _this; - _this setPos [11812.417, 12612.769, 3.0517578e-005]; -}; - -_vehicle_312 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11833.799, 12617.956, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_312 = _this; - _this setPos [11833.799, 12617.956, 3.0517578e-005]; -}; - -_vehicle_313 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11829.273, 12607.154, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_313 = _this; - _this setPos [11829.273, 12607.154, 3.0517578e-005]; -}; - -_vehicle_314 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11844.231, 12602.542, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_314 = _this; - _this setPos [11844.231, 12602.542, 1.5258789e-005]; -}; - -_vehicle_315 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11838.94, 12600.573, -0.00016784668]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_315 = _this; - _this setPos [11838.94, 12600.573, -0.00016784668]; -}; - -_vehicle_316 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11843.749, 12625.197, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_316 = _this; - _this setPos [11843.749, 12625.197, -1.5258789e-005]; -}; - -_vehicle_317 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11848.851, 12613.918, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_317 = _this; - _this setPos [11848.851, 12613.918, 4.5776367e-005]; -}; - -_vehicle_318 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11854.81, 12627.729, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_318 = _this; - _this setPos [11854.81, 12627.729, 6.1035156e-005]; -}; - -_vehicle_319 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11856.999, 12641.527, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_319 = _this; - _this setPos [11856.999, 12641.527, 3.0517578e-005]; -}; - -_vehicle_320 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11848.563, 12638.356, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_320 = _this; - _this setPos [11848.563, 12638.356, 4.5776367e-005]; -}; - -_vehicle_321 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11855.679, 12655.58, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_321 = _this; - _this setPos [11855.679, 12655.58, 0]; -}; - -_vehicle_322 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11864.201, 12654.292, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_322 = _this; - _this setPos [11864.201, 12654.292, 1.5258789e-005]; -}; - -_vehicle_323 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11868.429, 12665.724, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_323 = _this; - _this setPos [11868.429, 12665.724, -1.5258789e-005]; -}; - -_vehicle_324 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11861.743, 12672.924, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_324 = _this; - _this setPos [11861.743, 12672.924, 1.5258789e-005]; -}; - -_vehicle_325 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11867.039, 12687.274, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_325 = _this; - _this setPos [11867.039, 12687.274, 1.5258789e-005]; -}; - -_vehicle_326 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11871.112, 12700.725, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_326 = _this; - _this setPos [11871.112, 12700.725, 3.0517578e-005]; -}; - -_vehicle_327 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11874.452, 12679.165, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_327 = _this; - _this setPos [11874.452, 12679.165, -4.5776367e-005]; -}; - -_vehicle_328 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11879.123, 12697.389, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_328 = _this; - _this setPos [11879.123, 12697.389, 3.0517578e-005]; -}; - -_vehicle_329 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11884.053, 12711.415, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_329 = _this; - _this setPos [11884.053, 12711.415, 1.5258789e-005]; -}; - -_vehicle_330 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11877.112, 12720.295, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_330 = _this; - _this setPos [11877.112, 12720.295, 1.5258789e-005]; -}; - -_vehicle_331 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11887.821, 12723.569, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_331 = _this; - _this setPos [11887.821, 12723.569, -1.5258789e-005]; -}; - -_vehicle_332 = objNull; -if (true) then -{ - _this = "Land_a_stationhouse" createVehicle [11783.938, 12719.723, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_332 = _this; - _this setDir 289.05072; - _this setPos [11783.938, 12719.723, 7.6293945e-005]; -}; - -_vehicle_333 = objNull; -if (true) then -{ - _this = "Land_Hangar_2" createVehicle [11819.66, 12660.729, -0.033175748]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_333 = _this; - _this setDir -250.42317; - _this setVehicleInit "this setVectorUp [0,0,1];"; - _this setPos [11819.66, 12660.729, -0.033175748]; -}; - -_vehicle_334 = objNull; -if (true) then -{ - _this = "Land_Hangar_2" createVehicle [11835.981, 12707.853, -0.079139128]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_334 = _this; - _this setDir 109.25477; - _this setVehicleInit "this setVectorUp [0,0,1];"; - _this setPos [11835.981, 12707.853, -0.079139128]; -}; - -_vehicle_336 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11761.144, 12703.628, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_336 = _this; - _this setPos [11761.144, 12703.628, 7.6293945e-005]; -}; - -_vehicle_337 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11762.61, 12695.992, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_337 = _this; - _this setPos [11762.61, 12695.992, -1.5258789e-005]; -}; - -_vehicle_338 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11761.371, 12714.642, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_338 = _this; - _this setPos [11761.371, 12714.642, -3.0517578e-005]; -}; - -_vehicle_339 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11770.902, 12727.278, -7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_339 = _this; - _this setPos [11770.902, 12727.278, -7.6293945e-005]; -}; - -_vehicle_340 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11773.456, 12738.76, -0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_340 = _this; - _this setPos [11773.456, 12738.76, -0.0001373291]; -}; - -_vehicle_341 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11762.16, 12723.547, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_341 = _this; - _this setPos [11762.16, 12723.547, 7.6293945e-005]; -}; - -_vehicle_342 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11764.688, 12733.994, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_342 = _this; - _this setPos [11764.688, 12733.994, 4.5776367e-005]; -}; - -_vehicle_343 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11753.16, 12627.361, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_343 = _this; - _this setPos [11753.16, 12627.361, 1.5258789e-005]; -}; - -_vehicle_344 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11767.412, 12616.044, -0.00010681152]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_344 = _this; - _this setPos [11767.412, 12616.044, -0.00010681152]; -}; - -_vehicle_345 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11780.59, 12610.603, -0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_345 = _this; - _this setPos [11780.59, 12610.603, -0.00012207031]; -}; - -_vehicle_346 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11761.78, 12618.979, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_346 = _this; - _this setPos [11761.78, 12618.979, 1.5258789e-005]; -}; - -_vehicle_347 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11757.4, 12622.27, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_347 = _this; - _this setPos [11757.4, 12622.27, -1.5258789e-005]; -}; - -_vehicle_348 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11755.268, 12614.63, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_348 = _this; - _this setPos [11755.268, 12614.63, 7.6293945e-005]; -}; - -_vehicle_349 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11811.876, 12641.568]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_349 = _this; - _this setPos [11811.876, 12641.568]; -}; - -_vehicle_350 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11804.383, 12642.653, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_350 = _this; - _this setPos [11804.383, 12642.653, -3.0517578e-005]; -}; - -_vehicle_351 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11808.641, 12637.809, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_351 = _this; - _this setPos [11808.641, 12637.809, 3.0517578e-005]; -}; - -_vehicle_352 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11818.883, 12641.522, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_352 = _this; - _this setPos [11818.883, 12641.522, 6.1035156e-005]; -}; - -_vehicle_353 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11832.808, 12730.636, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_353 = _this; - _this setPos [11832.808, 12730.636, -1.5258789e-005]; -}; - -_vehicle_354 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11855.613, 12712.761, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_354 = _this; - _this setPos [11855.613, 12712.761, -6.1035156e-005]; -}; - -_vehicle_355 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11841.183, 12731.658, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_355 = _this; - _this setPos [11841.183, 12731.658, 9.1552734e-005]; -}; - -_vehicle_356 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11850.245, 12724.468, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_356 = _this; - _this setPos [11850.245, 12724.468, 6.1035156e-005]; -}; - -_vehicle_357 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11842.886, 12725.788]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_357 = _this; - _this setPos [11842.886, 12725.788]; -}; - -_vehicle_358 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11836.327, 12735.938, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_358 = _this; - _this setPos [11836.327, 12735.938, 1.5258789e-005]; -}; - -_vehicle_359 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11856.617, 12721.298]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_359 = _this; - _this setPos [11856.617, 12721.298]; -}; - -_vehicle_361 = objNull; -if (true) then -{ - _this = "MAP_t_betula2w" createVehicle [11799.246, 12647.899, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_361 = _this; - _this setDir -8.6476421; - _this setPos [11799.246, 12647.899, -1.5258789e-005]; -}; - -_vehicle_362 = objNull; -if (true) then -{ - _this = "MAP_t_betula2w" createVehicle [11773.365, 12610.281, 9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_362 = _this; - _this setPos [11773.365, 12610.281, 9.1552734e-005]; -}; - -_vehicle_363 = objNull; -if (true) then -{ - _this = "MAP_t_betula2w" createVehicle [11838.711, 12664.848]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_363 = _this; - _this setPos [11838.711, 12664.848]; -}; - -_vehicle_364 = objNull; -if (true) then -{ - _this = "MAP_t_betula2w" createVehicle [11758.773, 12708.232, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_364 = _this; - _this setPos [11758.773, 12708.232, -4.5776367e-005]; -}; - -_vehicle_365 = objNull; -if (true) then -{ - _this = "HMMWVWreck" createVehicle [11817.271, 12694.664, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_365 = _this; - _this setDir -36.19305; - _this setPos [11817.271, 12694.664, 1.5258789e-005]; -}; - -_vehicle_366 = objNull; -if (true) then -{ - _this = "ClutterCutter_EP1" createVehicle [11803.979, 12692.044, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_366 = _this; - _this setPos [11803.979, 12692.044, -9.1552734e-005]; -}; - -_vehicle_367 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [11821.301, 12694.59]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_367 = _this; - _this setDir 44.085854; - _this setPos [11821.301, 12694.59]; -}; - -_vehicle_368 = objNull; -if (true) then -{ - _this = "Body1" createVehicle [11812.969, 12694.115, 0]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_368 = _this; - _this setPos [11812.969, 12694.115, 0]; -}; - -_vehicle_369 = objNull; -if (true) then -{ - _this = "Body2" createVehicle [11815.298, 12692.105]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_369 = _this; - _this setDir -60.295448; - _this setPos [11815.298, 12692.105]; -}; - -_vehicle_370 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11817.798, 12693.678, -0.17121282]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_370 = _this; - _this setPos [11817.798, 12693.678, -0.17121282]; -}; - -_vehicle_371 = objNull; -if (true) then -{ - _this = "Land_Ind_TankSmall" createVehicle [11821.184, 12678.874, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_371 = _this; - _this setDir 19.464277; - _this setPos [11821.184, 12678.874, -1.5258789e-005]; -}; - -_vehicle_372 = objNull; -if (true) then -{ - _this = "Land_Ind_TankSmall" createVehicle [11831.584, 12675.185, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_372 = _this; - _this setDir 19.754786; - _this setPos [11831.584, 12675.185, 3.0517578e-005]; -}; - -_vehicle_373 = objNull; -if (true) then -{ - _this = "Paleta2" createVehicle [11816.019, 12739.777]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_373 = _this; - _this setDir -32.01495; - _this setPos [11816.019, 12739.777]; -}; - -_vehicle_374 = objNull; -if (true) then -{ - _this = "Rubbish1" createVehicle [11781.125, 12688.866]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_374 = _this; - _this setDir -57.322929; - _this setPos [11781.125, 12688.866]; -}; - -_vehicle_375 = objNull; -if (true) then -{ - _this = "Rubbish2" createVehicle [11786.964, 12656.147, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_375 = _this; - _this setDir -127.71127; - _this setPos [11786.964, 12656.147, 3.0517578e-005]; -}; - -_vehicle_376 = objNull; -if (true) then -{ - _this = "Land_Misc_Garb_Heap_EP1" createVehicle [11786.287, 12652.268, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_376 = _this; - _this setDir -23.96274; - _this setPos [11786.287, 12652.268, 1.5258789e-005]; -}; - -_vehicle_377 = objNull; -if (true) then -{ - _this = "Garbage_can" createVehicle [11788.643, 12657.678, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_377 = _this; - _this setPos [11788.643, 12657.678, -3.0517578e-005]; -}; - -_vehicle_378 = objNull; -if (true) then -{ - _this = "Garbage_container" createVehicle [11789.275, 12654.626, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_378 = _this; - _this setDir 2.9569733; - _this setPos [11789.275, 12654.626, -1.5258789e-005]; -}; - -_vehicle_379 = objNull; -if (true) then -{ - _this = "Garbage_container" createVehicle [11790.565, 12653.663, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_379 = _this; - _this setDir 31.469322; - _this setPos [11790.565, 12653.663, -1.5258789e-005]; -}; - -_vehicle_380 = objNull; -if (true) then -{ - _this = "UralWreck" createVehicle [11767.774, 12658.969, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_380 = _this; - _this setDir 52.665707; - _this setPos [11767.774, 12658.969, 3.0517578e-005]; -}; - -_vehicle_386 = objNull; -if (true) then -{ - _this = "MAP_dum_rasovna_ruins" createVehicle [11851.539, 12747.081, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_386 = _this; - _this setDir -67.506355; - _this setPos [11851.539, 12747.081, 3.0517578e-005]; -}; - -_vehicle_387 = objNull; -if (true) then -{ - _this = "MAP_domek_rosa_ruins" createVehicle [11863.676, 12747.392, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_387 = _this; - _this setDir -21.380117; - _this setPos [11863.676, 12747.392, 3.0517578e-005]; -}; - -_vehicle_388 = objNull; -if (true) then -{ - _this = "C130J_wreck_EP1" createVehicle [11858.439, 12751.198, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_388 = _this; - _this setDir 77.720589; - _this setPos [11858.439, 12751.198, -1.5258789e-005]; -}; - -_vehicle_391 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [11849.661, 12739.366, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_391 = _this; - _this setDir -122.1315; - _this setPos [11849.661, 12739.366, -1.5258789e-005]; -}; - -_vehicle_393 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenSpruce" createVehicle [11852.476, 12755.897]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_393 = _this; - _this setDir -79.998436; - _this setPos [11852.476, 12755.897]; -}; - -_vehicle_395 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [11846.301, 12746.378]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_395 = _this; - _this setDir -76.856926; - _this setPos [11846.301, 12746.378]; -}; - -_vehicle_397 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [11862.85, 12745.421]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_397 = _this; - _this setDir 161.46614; - _this setPos [11862.85, 12745.421]; -}; - -_vehicle_398 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [11865.15, 12744.08, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_398 = _this; - _this setDir -35.405952; - _this setPos [11865.15, 12744.08, 1.5258789e-005]; -}; - -_vehicle_399 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11862.348, 12748.077, -0.35221288]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_399 = _this; - _this setPos [11862.348, 12748.077, -0.35221288]; -}; - -_vehicle_400 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11863.922, 12749.056, -0.31857094]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_400 = _this; - _this setPos [11863.922, 12749.056, -0.31857094]; -}; - -_vehicle_401 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11862.964, 12748.467, -0.34177306]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_401 = _this; - _this setPos [11862.964, 12748.467, -0.34177306]; -}; - -_vehicle_402 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11846.282, 12751.074, -0.27414048]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_402 = _this; - _this setPos [11846.282, 12751.074, -0.27414048]; -}; - -_vehicle_403 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11844.693, 12749.784, -0.14887024]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_403 = _this; - _this setPos [11844.693, 12749.784, -0.14887024]; -}; - -_vehicle_404 = objNull; -if (true) then -{ - _this = "Land_Camp_Fire_DZ" createVehicle [11845.191, 12747.735, -0.15923657]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_404 = _this; - _this setPos [11845.191, 12747.735, -0.15923657]; -}; - -_vehicle_405 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11886.819, 12680.772, -9.1552734e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_405 = _this; - _this setPos [11886.819, 12680.772, -9.1552734e-005]; -}; - -_vehicle_406 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11887.217, 12670.516, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_406 = _this; - _this setPos [11887.217, 12670.516, -3.0517578e-005]; -}; - -_vehicle_407 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11881.556, 12662.431, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_407 = _this; - _this setPos [11881.556, 12662.431, 6.1035156e-005]; -}; - -_vehicle_408 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11890.409, 12661.362, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_408 = _this; - _this setPos [11890.409, 12661.362, 6.1035156e-005]; -}; - -_vehicle_409 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11903.142, 12663.133, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_409 = _this; - _this setPos [11903.142, 12663.133, -1.5258789e-005]; -}; - -_vehicle_410 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11896.127, 12667.582, -6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_410 = _this; - _this setPos [11896.127, 12667.582, -6.1035156e-005]; -}; - -_vehicle_411 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11883.93, 12675.075, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_411 = _this; - _this setPos [11883.93, 12675.075, -3.0517578e-005]; -}; - -_vehicle_412 = objNull; -if (true) then -{ - _this = "MAP_t_picea1s" createVehicle [11897.16, 12649.117, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_412 = _this; - _this setPos [11897.16, 12649.117, -4.5776367e-005]; -}; - -_vehicle_413 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11906.478, 12654.97, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_413 = _this; - _this setPos [11906.478, 12654.97, 6.1035156e-005]; -}; - -_vehicle_414 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11903.38, 12643.253, 0.00012207031]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_414 = _this; - _this setPos [11903.38, 12643.253, 0.00012207031]; -}; - -_vehicle_415 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11896.461, 12656.793, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_415 = _this; - _this setPos [11896.461, 12656.793, 4.5776367e-005]; -}; - -_vehicle_416 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11888.38, 12651.196, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_416 = _this; - _this setPos [11888.38, 12651.196, -3.0517578e-005]; -}; - -_vehicle_417 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11891.998, 12642.348, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_417 = _this; - _this setPos [11891.998, 12642.348, 1.5258789e-005]; -}; - -_vehicle_418 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11896.085, 12633.092, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_418 = _this; - _this setPos [11896.085, 12633.092, 1.5258789e-005]; -}; - -_vehicle_419 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11911.656, 12669.844, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_419 = _this; - _this setPos [11911.656, 12669.844, 4.5776367e-005]; -}; - -_vehicle_420 = objNull; -if (true) then -{ - _this = "MAP_t_picea2s" createVehicle [11897.552, 12674.797, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_420 = _this; - _this setPos [11897.552, 12674.797, 3.0517578e-005]; -}; - -_vehicle_421 = objNull; -if (true) then -{ - _this = "MAP_t_betula2w" createVehicle [11906.236, 12677.297, -3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_421 = _this; - _this setPos [11906.236, 12677.297, -3.0517578e-005]; -}; - -_vehicle_422 = objNull; -if (true) then -{ - _this = "Land_Mil_Barracks_i" createVehicle [12572.636, 12497.678, 6.1035156e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_422 = _this; - _this setDir -3.3692484; - _this setPos [12572.636, 12497.678, 6.1035156e-005]; -}; - -_vehicle_423 = objNull; -if (true) then -{ - _this = "Land_Ind_Workshop01_01" createVehicle [11836.992, 12685.103, 7.6293945e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_423 = _this; - _this setDir -71.381462; - _this setPos [11836.992, 12685.103, 7.6293945e-005]; -}; +[[ + ["MAP_runway_beton",[11833.352,12724.786,3.0517578e-005],199.17528], + ["MAP_runway_dirt_1",[12104.935,12714.147,0.00015258789],-70.88578], + ["MAP_runway_dirt_2",[12029.501,12740.337,6.1035156e-005],-70.997932], + ["MAP_runway_dirt_3",[11953.965,12766.381,3.0517578e-005],-70.944405], + ["MAP_runway_end15",[11822.007,12812.468,3.0517578e-005],-70.471237], + ["MAP_runway_end33",[12444.145,12595.791],-70.591644], + ["MAP_runway_poj_draha",[12115.081,12679.46,1.5258789e-005],-71.017082], + ["MAP_runway_poj_draha",[12039.447,12705.5,1.5258789e-005],-70.887802], + ["MAP_runway_poj_draha",[12190.391,12653.309],-70.618553], + ["MAP_runway_poj_draha",[12265.765,12626.79,-7.6293945e-005],-70.65612], + ["MAP_runway_poj_draha",[11964.168,12731.456,4.5776367e-005],-70.973801], + ["MAP_runway_poj_draha",[11888.549,12757.641],-70.747444], + ["MAP_runway_poj_L_2_end",[11822.448,12754.064,1.5258789e-005],19.445869], + ["MAP_runway_main",[12180.6,12688.236,-6.1035156e-005],-71.078163], + ["MAP_runway_main",[12255.914,12662.013],-70.771332], + ["MAP_runway_main",[12331.299,12635.485,0.00010681152],-70.614288], + ["MAP_runway_main",[12406.705,12609.01],-70.66494], + ["MAP_runway_poj_L_1_end",[12451.45,12555.947],19.091259], + ["MAP_runway_poj_draha",[12341.155,12600.269,3.0517578e-005],-70.444229], + ["MAP_runway_poj_draha",[12414.951,12574.252,0.00010681152],-70.63224], + ["MAP_runway_poj_draha",[11791.481,12695.446],19.106287], + ["MAP_runway_poj_L_2_end",[11795.605,12631.493,-3.0517578e-005],-70.53743], + ["MAP_runway_poj_L_2_end",[11842.692,12630.96,-4.5776367e-005],-160.8102], + ["MAP_runway_poj_draha",[11873.847,12689.994,3.0517578e-005],-160.6732], + ["MAP_runway_poj_T_1",[11890.456,12735.828,-1.5258789e-005],-70.75457], + ["ClutterCutter_EP1",[12449.138,12601.985,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12448.269,12583.205,6.1035156e-005],0], + ["ClutterCutter_EP1",[12457.416,12591.121,3.0517578e-005],0], + ["ClutterCutter_EP1",[12443.967,12572.388,1.5258789e-005],0], + ["ClutterCutter_EP1",[12440.153,12558.789,3.0517578e-005],0], + ["ClutterCutter_EP1",[12443.545,12547.887,9.1552734e-005],0], + ["ClutterCutter_EP1",[12441.473,12609.4,3.0517578e-005],0], + ["ClutterCutter_EP1",[12430.711,12593.027,0.0001373291],0], + ["ClutterCutter_EP1",[12425.938,12581.104,4.5776367e-005],0], + ["ClutterCutter_EP1",[12424.284,12565.177,3.0517578e-005],0], + ["ClutterCutter_EP1",[12410.519,12572.005,-9.1552734e-005],0], + ["ClutterCutter_EP1",[12414.055,12590.268,3.0517578e-005],0], + ["ClutterCutter_EP1",[12424.613,12606.827,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12427.446,12617.969,1.5258789e-005],0], + ["ClutterCutter_EP1",[12411.921,12620.701,3.0517578e-005],0], + ["ClutterCutter_EP1",[12408.554,12605.682,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12400.531,12594.063,1.5258789e-005],0], + ["ClutterCutter_EP1",[12400.095,12582.44,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12393.105,12577.232,0],0], + ["ClutterCutter_EP1",[12380.116,12582.962,4.5776367e-005],0], + ["ClutterCutter_EP1",[12384.822,12597.572,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12391.923,12609.14,1.5258789e-005],0], + ["ClutterCutter_EP1",[12396.623,12622.667,3.0517578e-005],0], + ["ClutterCutter_EP1",[12384.899,12630.688,0],0], + ["ClutterCutter_EP1",[12378.116,12617.534,0],0], + ["ClutterCutter_EP1",[12370.082,12606.084,1.5258789e-005],0], + ["ClutterCutter_EP1",[12367.645,12594.518,1.5258789e-005],0], + ["ClutterCutter_EP1",[12364.29,12588.428,0],0], + ["ClutterCutter_EP1",[12352.762,12594.353,0],0], + ["ClutterCutter_EP1",[12356.578,12605.061,0],0], + ["ClutterCutter_EP1",[12360.133,12616.088,0],0], + ["ClutterCutter_EP1",[12365.306,12628.296,3.0517578e-005],0], + ["ClutterCutter_EP1",[12370.574,12637.955,1.5258789e-005],0], + ["ClutterCutter_EP1",[12355.402,12640.513,0],0], + ["ClutterCutter_EP1",[12347.492,12627.549,1.5258789e-005],0], + ["ClutterCutter_EP1",[12343.257,12613.442,0],0], + ["ClutterCutter_EP1",[12338.662,12600.644,-6.1035156e-005],0], + ["ClutterCutter_EP1",[12325.665,12603.455,4.5776367e-005],0], + ["ClutterCutter_EP1",[12328.533,12614.692,1.5258789e-005],0], + ["ClutterCutter_EP1",[12334.059,12626.479,0],0], + ["ClutterCutter_EP1",[12337.212,12639.277,4.5776367e-005],0], + ["ClutterCutter_EP1",[12341.688,12649.561,0],0], + ["ClutterCutter_EP1",[12326.564,12651.172,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12321.225,12637.012,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12316.511,12625.511,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12312.228,12614.416,1.5258789e-005],0], + ["ClutterCutter_EP1",[12311.803,12607.522,3.0517578e-005],0], + ["ClutterCutter_EP1",[12300.34,12610.76,0],0], + ["ClutterCutter_EP1",[12303.121,12619.515,-6.1035156e-005],0], + ["ClutterCutter_EP1",[12306.826,12631.679,3.0517578e-005],0], + ["ClutterCutter_EP1",[12309.497,12643.105,0],0], + ["ClutterCutter_EP1",[12313.968,12655.063,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12302.725,12659.687,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12298.065,12648.667,3.0517578e-005],0], + ["ClutterCutter_EP1",[12294.225,12636.635,0],0], + ["ClutterCutter_EP1",[12291.446,12626.848,1.5258789e-005],0], + ["ClutterCutter_EP1",[12287.464,12614.992,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12276.107,12618.728,4.5776367e-005],0], + ["ClutterCutter_EP1",[12279.14,12630.001,0.00016784668],0], + ["ClutterCutter_EP1",[12282.44,12640.776,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12287.094,12654.634,0],0], + ["ClutterCutter_EP1",[12290.029,12664.062,1.5258789e-005],0], + ["ClutterCutter_EP1",[12279.977,12667.794,1.5258789e-005],0], + ["ClutterCutter_EP1",[12274.697,12654.005,1.5258789e-005],0], + ["ClutterCutter_EP1",[12269.475,12641.901,3.0517578e-005],0], + ["ClutterCutter_EP1",[12265.341,12628.562,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12261.723,12623.555,4.5776367e-005],0], + ["ClutterCutter_EP1",[12266.063,12670.29,4.5776367e-005],0], + ["ClutterCutter_EP1",[12260.409,12655.261,3.0517578e-005],0], + ["ClutterCutter_EP1",[12252.529,12643.91,3.0517578e-005],0], + ["ClutterCutter_EP1",[12248.785,12630.418,0],0], + ["ClutterCutter_EP1",[12237.637,12634.719,0],0], + ["ClutterCutter_EP1",[12240.345,12644.953,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12245.996,12656.736,3.0517578e-005],0], + ["ClutterCutter_EP1",[12250.003,12669.15,1.5258789e-005],0], + ["ClutterCutter_EP1",[12253.217,12678.033,1.5258789e-005],0], + ["ClutterCutter_EP1",[12236.409,12683.36,3.0517578e-005],0], + ["ClutterCutter_EP1",[12234.014,12668.953,0],0], + ["ClutterCutter_EP1",[12227.477,12655.744,1.5258789e-005],0], + ["ClutterCutter_EP1",[12224.586,12645.112,1.5258789e-005],0], + ["ClutterCutter_EP1",[12224.12,12636.691,-4.5776367e-005],0], + ["ClutterCutter_EP1",[12210.236,12642.979,1.5258789e-005],0], + ["ClutterCutter_EP1",[12213.331,12655.859,0],0], + ["ClutterCutter_EP1",[12217.076,12667.909,6.1035156e-005],0], + ["ClutterCutter_EP1",[12222.063,12679.743,1.5258789e-005],0], + ["ClutterCutter_EP1",[12223.627,12688.579,1.5258789e-005],0], + ["ClutterCutter_EP1",[12211.212,12691.705,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12206.646,12678.009,3.0517578e-005],0], + ["ClutterCutter_EP1",[12202.547,12667.329,0],0], + ["ClutterCutter_EP1",[12198.567,12656.072,3.0517578e-005],0], + ["ClutterCutter_EP1",[12196.364,12646.344,-6.1035156e-005],0], + ["ClutterCutter_EP1",[12184.147,12652.874,6.1035156e-005],0], + ["ClutterCutter_EP1",[12185.381,12665.954,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12190.479,12679.198,0],0], + ["ClutterCutter_EP1",[12195.455,12694.118,0],0], + ["ClutterCutter_EP1",[12203.523,12698.949,0],0], + ["ClutterCutter_EP1",[12184.054,12700.647,0],0], + ["ClutterCutter_EP1",[12178.159,12686.023,3.0517578e-005],0], + ["ClutterCutter_EP1",[12173.937,12673.232,0],0], + ["ClutterCutter_EP1",[12170.143,12661.287,4.5776367e-005],0], + ["ClutterCutter_EP1",[12172.007,12653.897,7.6293945e-005],0], + ["ClutterCutter_EP1",[12157.32,12660.926,0],0], + ["ClutterCutter_EP1",[12160.194,12672.946,3.0517578e-005],0], + ["ClutterCutter_EP1",[12162.611,12684.836,0],0], + ["ClutterCutter_EP1",[12165.782,12696.961,0],0], + ["ClutterCutter_EP1",[12170.319,12706.323,1.5258789e-005],0], + ["ClutterCutter_EP1",[12157.438,12710.313,3.0517578e-005],0], + ["ClutterCutter_EP1",[12152.704,12695.341,0],0], + ["ClutterCutter_EP1",[12148.332,12682.457,0],0], + ["ClutterCutter_EP1",[12144.785,12670.386,1.5258789e-005],0], + ["ClutterCutter_EP1",[12135.607,12665.504,1.5258789e-005],0], + ["ClutterCutter_EP1",[12136.784,12679.706,0],0], + ["ClutterCutter_EP1",[12138.868,12691.088,1.5258789e-005],0], + ["ClutterCutter_EP1",[12142.33,12703.661,6.1035156e-005],0], + ["ClutterCutter_EP1",[12143.224,12715.053,0],0], + ["ClutterCutter_EP1",[12134.386,12718.184,3.0517578e-005],0], + ["ClutterCutter_EP1",[12128.65,12704.532,0],0], + ["ClutterCutter_EP1",[12123.266,12688.767,3.0517578e-005],0], + ["ClutterCutter_EP1",[12123.714,12674.122,3.0517578e-005],0], + ["ClutterCutter_EP1",[12109.708,12678.537,3.0517578e-005],0], + ["ClutterCutter_EP1",[12113.136,12693.396,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12117.562,12707.989,0],0], + ["ClutterCutter_EP1",[12122.133,12720.513,3.0517578e-005],0], + ["ClutterCutter_EP1",[12111.721,12725.703,3.0517578e-005],0], + ["ClutterCutter_EP1",[12105.696,12710.837,-1.5258789e-005],0], + ["ClutterCutter_EP1",[12100.185,12695.581,3.0517578e-005],0], + ["ClutterCutter_EP1",[12095.888,12686.208,0],0], + ["ClutterCutter_EP1",[12080.766,12690.188,3.0517578e-005],0], + ["ClutterCutter_EP1",[12085.862,12701.523,1.5258789e-005],0], + ["ClutterCutter_EP1",[12088.903,12713.447,3.0517578e-005],0], + ["ClutterCutter_EP1",[12092.709,12725.762,1.5258789e-005],0], + ["ClutterCutter_EP1",[12096.975,12733.729,1.5258789e-005],0], + ["ClutterCutter_EP1",[12085.109,12736.413,0],0], + ["ClutterCutter_EP1",[12079.017,12724.349,1.5258789e-005],0], + ["ClutterCutter_EP1",[12073.448,12712.842,0],0], + ["ClutterCutter_EP1",[12069.974,12701.076,1.5258789e-005],0], + ["ClutterCutter_EP1",[12065.617,12690.351,9.1552734e-005],0], + ["ClutterCutter_EP1",[12053.842,12696.022,0],0], + ["ClutterCutter_EP1",[12057.136,12708.982,6.1035156e-005],0], + ["ClutterCutter_EP1",[12060.514,12720.233,1.5258789e-005],0], + ["ClutterCutter_EP1",[12064.432,12730.609,1.5258789e-005],0], + ["ClutterCutter_EP1",[12071.859,12740.11,0],0], + ["ClutterCutter_EP1",[12056.973,12745.313,1.5258789e-005],0], + ["ClutterCutter_EP1",[12052.312,12730.878,4.5776367e-005],0], + ["ClutterCutter_EP1",[12047.233,12717.738,1.5258789e-005],0], + ["ClutterCutter_EP1",[12044.311,12707.099,3.0517578e-005],0], + ["ClutterCutter_EP1",[12038.868,12699.035,-3.0517578e-005],0], + ["ClutterCutter_EP1",[12025.358,12705.295,-0.0001373291],0], + ["ClutterCutter_EP1",[12029.154,12716.378,3.0517578e-005],0], + ["ClutterCutter_EP1",[12030.744,12728.67,4.5776367e-005],0], + ["ClutterCutter_EP1",[12034.885,12740.086,4.5776367e-005],0], + ["ClutterCutter_EP1",[12042.495,12751.11,0],0], + ["ClutterCutter_EP1",[12023.882,12756.131,1.5258789e-005],0], + ["ClutterCutter_EP1",[12018.824,12740.827,1.5258789e-005],0], + ["ClutterCutter_EP1",[12015.533,12726.803,0],0], + ["ClutterCutter_EP1",[12011.602,12713.39,3.0517578e-005],0], + ["ClutterCutter_EP1",[12013.309,12704.627,1.5258789e-005],0], + ["ClutterCutter_EP1",[11996.918,12713.501,-9.1552734e-005],0], + ["ClutterCutter_EP1",[11997.146,12727.386,0],0], + ["ClutterCutter_EP1",[12004.312,12737.837,4.5776367e-005],0], + ["ClutterCutter_EP1",[12004.698,12750.066,0],0], + ["ClutterCutter_EP1",[12010.233,12763.051,1.5258789e-005],0], + ["ClutterCutter_EP1",[11995.073,12766.032,0],0], + ["ClutterCutter_EP1",[11991.207,12752.036,0],0], + ["ClutterCutter_EP1",[11987.48,12739.922,1.5258789e-005],0], + ["ClutterCutter_EP1",[11983.766,12728.175,4.5776367e-005],0], + ["ClutterCutter_EP1",[11981.706,12717.673,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11969.366,12722.753,1.5258789e-005],0], + ["ClutterCutter_EP1",[11971.897,12736.396,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11975.418,12749.836,0],0], + ["ClutterCutter_EP1",[11979.256,12762.235,3.0517578e-005],0], + ["ClutterCutter_EP1",[11981.789,12772.279,0],0], + ["ClutterCutter_EP1",[11967.7,12775.415,1.5258789e-005],0], + ["ClutterCutter_EP1",[11962.764,12761.74,1.5258789e-005],0], + ["ClutterCutter_EP1",[11958.729,12746.606,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11956.446,12733.641,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11940.328,12736.415,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11945.175,12749.42,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11949.998,12761.021,3.0517578e-005],0], + ["ClutterCutter_EP1",[11952.954,12773.387,0],0], + ["ClutterCutter_EP1",[11952.819,12781.21,1.5258789e-005],0], + ["ClutterCutter_EP1",[11940.223,12784.269,0],0], + ["ClutterCutter_EP1",[11938.025,12769.682,4.5776367e-005],0], + ["ClutterCutter_EP1",[11932.69,12756.665,0],0], + ["ClutterCutter_EP1",[11929.305,12746.166,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11925.022,12741.172,0],0], + ["ClutterCutter_EP1",[11910.994,12741.087,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11916.012,12753.709,7.6293945e-005],0], + ["ClutterCutter_EP1",[11920.03,12765.092,0.00015258789],0], + ["ClutterCutter_EP1",[11923.17,12776.996,1.5258789e-005],0], + ["ClutterCutter_EP1",[11926.937,12789.116,1.5258789e-005],0], + ["ClutterCutter_EP1",[11914.802,12794.158,0.00012207031],0], + ["ClutterCutter_EP1",[11910.124,12780.403,0],0], + ["ClutterCutter_EP1",[11906.202,12767.164,3.0517578e-005],0], + ["ClutterCutter_EP1",[11901.23,12753.686,4.5776367e-005],0], + ["ClutterCutter_EP1",[11895.944,12743.282,-7.6293945e-005],0], + ["ClutterCutter_EP1",[11898.353,12733.475,0],0], + ["ClutterCutter_EP1",[11885.398,12736.582,4.5776367e-005],0], + ["ClutterCutter_EP1",[11882.461,12750.276,4.5776367e-005],0], + ["ClutterCutter_EP1",[11888.173,12764.08,1.5258789e-005],0], + ["ClutterCutter_EP1",[11891.758,12776.694,1.5258789e-005],0], + ["ClutterCutter_EP1",[11895.475,12787.936,1.5258789e-005],0], + ["ClutterCutter_EP1",[11900.937,12799.279,3.0517578e-005],0], + ["ClutterCutter_EP1",[11886.147,12802.328,-7.6293945e-005],0], + ["ClutterCutter_EP1",[11879.968,12784.727,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11875.833,12772.224,0],0], + ["ClutterCutter_EP1",[11871.435,12758.445,3.0517578e-005],0], + ["ClutterCutter_EP1",[11856.719,12765.083,0],0], + ["ClutterCutter_EP1",[11861.524,12778.303,3.0517578e-005],0], + ["ClutterCutter_EP1",[11865.798,12791.208,0],0], + ["ClutterCutter_EP1",[11874.163,12797.659,0],0], + ["ClutterCutter_EP1",[11872.476,12808.461,3.0517578e-005],0], + ["ClutterCutter_EP1",[11859.593,12811.783,1.5258789e-005],0], + ["ClutterCutter_EP1",[11853.344,12798.78,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11849.701,12786.646,-3.0517578e-005],0], + ["ClutterCutter_EP1",[11844.969,12775.577,1.5258789e-005],0], + ["ClutterCutter_EP1",[11836.27,12767.147,4.5776367e-005],0], + ["ClutterCutter_EP1",[11825.144,12772.774,-0.0001373291],0], + ["ClutterCutter_EP1",[11830.603,12788.523,0],0], + ["ClutterCutter_EP1",[11837.979,12799.686,1.5258789e-005],0], + ["ClutterCutter_EP1",[11843.769,12816.066,0],0], + ["ClutterCutter_EP1",[11831.392,12822.454,1.5258789e-005],0], + ["ClutterCutter_EP1",[11825.23,12809.662,3.0517578e-005],0], + ["ClutterCutter_EP1",[11822.757,12797.668,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11813.723,12778.324,3.0517578e-005],0], + ["ClutterCutter_EP1",[11821.674,12759.75,4.5776367e-005],0], + ["ClutterCutter_EP1",[11809.189,12764.7,0],0], + ["ClutterCutter_EP1",[11804.84,12747.866,4.5776367e-005],0], + ["ClutterCutter_EP1",[11811.66,12744.911,0],0], + ["ClutterCutter_EP1",[11806.695,12730.663,0],0], + ["ClutterCutter_EP1",[11797.649,12732.933,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11793.252,12715.276,4.5776367e-005],0], + ["ClutterCutter_EP1",[11806.406,12716.162,0],0], + ["ClutterCutter_EP1",[11817.4,12722.155,3.0517578e-005],0], + ["ClutterCutter_EP1",[11830.942,12718.061,6.1035156e-005],0], + ["ClutterCutter_EP1",[11841.141,12713.279,3.0517578e-005],0], + ["ClutterCutter_EP1",[11835.865,12697.854,3.0517578e-005],0], + ["ClutterCutter_EP1",[11820.331,12705.365,0],0], + ["ClutterCutter_EP1",[11828.585,12684.733,1.5258789e-005],0], + ["ClutterCutter_EP1",[11836.787,12693.276,1.5258789e-005],0], + ["ClutterCutter_EP1",[11826.392,12671.255,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11820.186,12657.934,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11820.368,12653.997,4.5776367e-005],0], + ["ClutterCutter_EP1",[11806.033,12658.229,0],0], + ["ClutterCutter_EP1",[11810.665,12673.477,4.5776367e-005],0], + ["ClutterCutter_EP1",[11812.374,12685.495,3.0517578e-005],0], + ["ClutterCutter_EP1",[11815.515,12695.948,1.5258789e-005],0], + ["ClutterCutter_EP1",[11802.278,12702.396,1.5258789e-005],0], + ["ClutterCutter_EP1",[11787.498,12700.336,3.0517578e-005],0], + ["ClutterCutter_EP1",[11791.898,12687.368,0],0], + ["ClutterCutter_EP1",[11793.908,12671.397,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11801.524,12680.248,1.5258789e-005],0], + ["ClutterCutter_EP1",[11789.115,12661.667,1.5258789e-005],0], + ["ClutterCutter_EP1",[11782.063,12677.065,3.0517578e-005],0], + ["ClutterCutter_EP1",[11774.023,12662.949,0],0], + ["ClutterCutter_EP1",[11780.288,12651.354,1.5258789e-005],0], + ["ClutterCutter_EP1",[11765.765,12645.647,3.0517578e-005],0], + ["ClutterCutter_EP1",[11763.456,12629.358,0],0], + ["ClutterCutter_EP1",[11778.76,12635.271,1.5258789e-005],0], + ["ClutterCutter_EP1",[11792.172,12628.86,0],0], + ["ClutterCutter_EP1",[11783.394,12623.555,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11803.389,12620.284,3.0517578e-005],0], + ["ClutterCutter_EP1",[11795.783,12616.799,4.5776367e-005],0], + ["ClutterCutter_EP1",[11817.398,12615.993,1.5258789e-005],0], + ["ClutterCutter_EP1",[11812.417,12612.769,3.0517578e-005],0], + ["ClutterCutter_EP1",[11833.799,12617.956,3.0517578e-005],0], + ["ClutterCutter_EP1",[11829.273,12607.154,3.0517578e-005],0], + ["ClutterCutter_EP1",[11844.231,12602.542,1.5258789e-005],0], + ["ClutterCutter_EP1",[11838.94,12600.573,-0.00016784668],0], + ["ClutterCutter_EP1",[11843.749,12625.197,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11848.851,12613.918,4.5776367e-005],0], + ["ClutterCutter_EP1",[11854.81,12627.729,6.1035156e-005],0], + ["ClutterCutter_EP1",[11856.999,12641.527,3.0517578e-005],0], + ["ClutterCutter_EP1",[11848.563,12638.356,4.5776367e-005],0], + ["ClutterCutter_EP1",[11855.679,12655.58,0],0], + ["ClutterCutter_EP1",[11864.201,12654.292,1.5258789e-005],0], + ["ClutterCutter_EP1",[11868.429,12665.724,-1.5258789e-005],0], + ["ClutterCutter_EP1",[11861.743,12672.924,1.5258789e-005],0], + ["ClutterCutter_EP1",[11867.039,12687.274,1.5258789e-005],0], + ["ClutterCutter_EP1",[11871.112,12700.725,3.0517578e-005],0], + ["ClutterCutter_EP1",[11874.452,12679.165,-4.5776367e-005],0], + ["ClutterCutter_EP1",[11879.123,12697.389,3.0517578e-005],0], + ["ClutterCutter_EP1",[11884.053,12711.415,1.5258789e-005],0], + ["ClutterCutter_EP1",[11877.112,12720.295,1.5258789e-005],0], + ["ClutterCutter_EP1",[11887.821,12723.569,-1.5258789e-005],0], + ["Land_a_stationhouse",[11783.938,12719.723,7.6293945e-005],289.05072], + ["Land_Hangar_2",[11819.66,12660.729,-0.033175748],-250.42317], + ["Land_Hangar_2",[11835.981,12707.853,-0.079139128],109.25477], + ["MAP_t_picea1s",[11761.144,12703.628,7.6293945e-005],0], + ["MAP_t_picea2s",[11762.61,12695.992,-1.5258789e-005],0], + ["MAP_t_picea2s",[11761.371,12714.642,-3.0517578e-005],0], + ["MAP_t_picea2s",[11770.902,12727.278,-7.6293945e-005],0], + ["MAP_t_picea2s",[11773.456,12738.76,-0.0001373291],0], + ["MAP_t_picea2s",[11762.16,12723.547,7.6293945e-005],0], + ["MAP_t_picea2s",[11764.688,12733.994,4.5776367e-005],0], + ["MAP_t_picea2s",[11753.16,12627.361,1.5258789e-005],0], + ["MAP_t_picea2s",[11767.412,12616.044,-0.00010681152],0], + ["MAP_t_picea2s",[11780.59,12610.603,-0.00012207031],0], + ["MAP_t_picea1s",[11761.78,12618.979,1.5258789e-005],0], + ["MAP_t_picea1s",[11757.4,12622.27,-1.5258789e-005],0], + ["MAP_t_picea2s",[11755.268,12614.63,7.6293945e-005],0], + ["MAP_t_picea2s",[11811.876,12641.568],0], + ["MAP_t_picea2s",[11804.383,12642.653,-3.0517578e-005],0], + ["MAP_t_picea1s",[11808.641,12637.809,3.0517578e-005],0], + ["MAP_t_picea1s",[11818.883,12641.522,6.1035156e-005],0], + ["MAP_t_picea2s",[11832.808,12730.636,-1.5258789e-005],0], + ["MAP_t_picea2s",[11855.613,12712.761,-6.1035156e-005],0], + ["MAP_t_picea2s",[11841.183,12731.658,9.1552734e-005],0], + ["MAP_t_picea2s",[11850.245,12724.468,6.1035156e-005],0], + ["MAP_t_picea1s",[11842.886,12725.788],0], + ["MAP_t_picea1s",[11836.327,12735.938,1.5258789e-005],0], + ["MAP_t_picea1s",[11856.617,12721.298],0], + ["MAP_t_betula2w",[11799.246,12647.899,-1.5258789e-005],-8.6476421], + ["MAP_t_betula2w",[11773.365,12610.281,9.1552734e-005],0], + ["MAP_t_betula2w",[11838.711,12664.848],0], + ["MAP_t_betula2w",[11758.773,12708.232,-4.5776367e-005],0], + ["HMMWVWreck",[11817.271,12694.664,1.5258789e-005],-36.19305], + ["ClutterCutter_EP1",[11803.979,12692.044,-9.1552734e-005],0], + ["Body2",[11821.301,12694.59],44.085854], + ["Body1",[11812.969,12694.115,0],0], + ["Body2",[11815.298,12692.105],-60.295448], + ["Land_Camp_Fire_DZ",[11817.798,12693.678,-0.17121282],0], + ["Land_Ind_TankSmall",[11821.184,12678.874,-1.5258789e-005],19.464277], + ["Land_Ind_TankSmall",[11831.584,12675.185,3.0517578e-005],19.754786], + ["Paleta2",[11816.019,12739.777],-32.01495], + ["Rubbish1",[11781.125,12688.866],-57.322929], + ["Rubbish2",[11786.964,12656.147,3.0517578e-005],-127.71127], + ["Land_Misc_Garb_Heap_EP1",[11786.287,12652.268,1.5258789e-005],-23.96274], + ["Garbage_can",[11788.643,12657.678,-3.0517578e-005],0], + ["Garbage_container",[11789.275,12654.626,-1.5258789e-005],2.9569733], + ["Garbage_container",[11790.565,12653.663,-1.5258789e-005],31.469322], + ["UralWreck",[11767.774,12658.969,3.0517578e-005],52.665707], + ["MAP_dum_rasovna_ruins",[11851.539,12747.081,3.0517578e-005],-67.506355], + ["MAP_domek_rosa_ruins",[11863.676,12747.392,3.0517578e-005],-21.380117], + ["C130J_wreck_EP1",[11858.439,12751.198,-1.5258789e-005],77.720589], + ["MAP_misc_FallenTree2",[11849.661,12739.366,-1.5258789e-005],-122.1315], + ["MAP_misc_FallenSpruce",[11852.476,12755.897],-79.998436], + ["MAP_misc_FallenTree2",[11846.301,12746.378],-76.856926], + ["MAP_misc_stub2",[11862.85,12745.421],161.46614], + ["MAP_misc_stub2",[11865.15,12744.08,1.5258789e-005],-35.405952], + ["Land_Camp_Fire_DZ",[11862.348,12748.077,-0.35221288],0], + ["Land_Camp_Fire_DZ",[11863.922,12749.056,-0.31857094],0], + ["Land_Camp_Fire_DZ",[11862.964,12748.467,-0.34177306],0], + ["Land_Camp_Fire_DZ",[11846.282,12751.074,-0.27414048],0], + ["Land_Camp_Fire_DZ",[11844.693,12749.784,-0.14887024],0], + ["Land_Camp_Fire_DZ",[11845.191,12747.735,-0.15923657],0], + ["MAP_t_picea2s",[11886.819,12680.772,-9.1552734e-005],0], + ["MAP_t_picea2s",[11887.217,12670.516,-3.0517578e-005],0], + ["MAP_t_picea2s",[11881.556,12662.431,6.1035156e-005],0], + ["MAP_t_picea2s",[11890.409,12661.362,6.1035156e-005],0], + ["MAP_t_picea2s",[11903.142,12663.133,-1.5258789e-005],0], + ["MAP_t_picea1s",[11896.127,12667.582,-6.1035156e-005],0], + ["MAP_t_picea1s",[11883.93,12675.075,-3.0517578e-005],0], + ["MAP_t_picea1s",[11897.16,12649.117,-4.5776367e-005],0], + ["MAP_t_picea2s",[11906.478,12654.97,6.1035156e-005],0], + ["MAP_t_picea2s",[11903.38,12643.253,0.00012207031],0], + ["MAP_t_picea2s",[11896.461,12656.793,4.5776367e-005],0], + ["MAP_t_picea2s",[11888.38,12651.196,-3.0517578e-005],0], + ["MAP_t_picea2s",[11891.998,12642.348,1.5258789e-005],0], + ["MAP_t_picea2s",[11896.085,12633.092,1.5258789e-005],0], + ["MAP_t_picea2s",[11911.656,12669.844,4.5776367e-005],0], + ["MAP_t_picea2s",[11897.552,12674.797,3.0517578e-005],0], + ["MAP_t_betula2w",[11906.236,12677.297,-3.0517578e-005],0], + ["Land_Mil_Barracks_i",[12572.636,12497.678,6.1035156e-005],-3.3692484], + ["Land_Ind_Workshop01_01",[11836.992,12685.103,7.6293945e-005],-71.381462] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/NWATentCamp.sqf b/SQF/dayz_code/system/mission/chernarus/poi/NWATentCamp.sqf new file mode 100644 index 000000000..6adfb79c1 --- /dev/null +++ b/SQF/dayz_code/system/mission/chernarus/poi/NWATentCamp.sqf @@ -0,0 +1,195 @@ +[[ + ["Misc_Cargo1Bo_military",[3890.2683,11011.416,0.042650443],-132.28661], + ["HMMWVWreck",[3926.7175,10959.546,-3.0517578e-005],-20.396053], + ["Mi8Wreck",[3952.6052,11055.924],3.9880834], + ["UralWreck",[3889.4087,11042.636,3.0517578e-005],-375.14511], + ["BMP2Wreck",[3923.8643,10978.193,-0.0064422311],-49.264545], + ["UAZWreck",[3879.3914,11035.235,9.1552734e-005],-225.91878], + ["datsun02Wreck",[3930.4602,10968.363,9.1552734e-005],-19.265348], + ["Sign_Checkpoint_EP1",[3926.8413,10984.315],0], + ["AmmoCrates_NoInteractive_Large",[3916.5845,11006.377,-3.0517578e-005],133.20999], + ["AmmoCrates_NoInteractive_Medium",[3965.4653,11060.445],0], + ["AmmoCrates_NoInteractive_Small",[3964.8689,11061.323,-9.1552734e-005],0], + ["PowGen_Big",[3945.8833,11077.228],94.93306], + ["Camp",[3916.978,11056.58,-3.0517578e-005],46.633144], + ["Misc_Cargo1B_military",[3892.7014,11008.477,-0.019631863],48.62606], + ["Camp",[3921.8591,11051.58,-3.0517578e-005],46.633144], + ["Camp",[3926.9348,11045.705],46.633144], + ["Camp",[3930.9038,11058.846,3.0517578e-005],230.97359], + ["Camp",[3926.1023,11064.544],230.97359], + ["Land_Toilet",[3909.1519,11049.229,3.0517578e-005],407.06842], + ["Land_radar_EP1",[3934.9553,11235.147],159.35098], + ["Land_Ind_TankSmall",[3879.323,11041.94,-6.1035156e-005],-44.442314], + ["Land_Ind_TankSmall2",[3961.1069,11067.325,-3.0517578e-005],48.722527], + ["Land_Fort_Watchtower",[3919.3335,11004.488,0.021191061],-44.249626], + ["Land_HBarrier3",[3890.3984,11002.224,-3.0517578e-005],-40.811821], + ["Land_HBarrier1",[3934.1211,11023.296],107.08715], + ["ZavoraAnim",[3933.1504,10995.512,3.0517578e-005],360.07468], + ["Land_HBarrier5",[3960.4856,11047.874],-40.935375], + ["MAP_Wall_IndFnc_3",[3934.2615,11011.859,6.1035156e-005],-33.592312], + ["MAP_Wall_IndFnc_3",[3923.3259,11002.253,-3.0517578e-005],-47.739304], + ["MAP_Wall_IndFnc_Pole",[3924.2529,11003.306],-47.435883], + ["Land_Toilet",[3911.8259,11046.045,-3.0517578e-005],410.85168], + ["Land_Toilet",[3910.3691,11047.762],407.35742], + ["Land_Ind_TankSmall",[3955.8899,11072.895,3.0517578e-005],48.479504], + ["Land_HBarrier5",[3896.4202,11007.482,0.00012207031],-221.52559], + ["Land_HBarrier5",[3897.2339,11008.399,3.0517578e-005],-42.035709], + ["Land_HBarrier5",[3889.6357,11000.879,-3.0517578e-005],-130.7234], + ["Land_HBarrier5",[3885.7905,11005.141,0.00021362305],-132.96863], + ["Land_HBarrier5",[3908.5933,11011.088,3.0517578e-005],-139.14868], + ["Land_HBarrier5",[3909.1624,11009.737,0.00021362305],-321.31256], + ["Land_HBarrier5",[3933.5264,11011.874,-6.1035156e-005],-88.364952], + ["Land_HBarrier5",[3933.6663,11017.552,3.0517578e-005],-87.355087], + ["Land_HBarrier5",[3938.293,11027.42,-3.0517578e-005],-220.63132], + ["Land_HBarrier5",[3939.1626,11028.37],-43.761044], + ["Land_HBarrier5",[3943.4441,11032.145,-3.0517578e-005],-42.807655], + ["Land_HBarrier5",[3948.6501,11036.696],-40.709114], + ["Land_HBarrier5",[3955.1833,11042.4,6.1035156e-005],-39.870502], + ["Land_HBarrier5",[3964.7356,11051.678],-41.617138], + ["MAP_Heli_H_cross",[3953.8809,11055.072,6.1035156e-005],0], + ["MAP_Heli_H_cross",[3940.5549,11071.127,-6.1035156e-005],0], + ["Land_HBarrier5",[3969.5073,11056.625,3.0517578e-005],-132.29822], + ["Land_HBarrier5",[3967.3645,11061.326],-131.6759], + ["Land_HBarrier1",[3969.0088,11055.492,3.0517578e-005],136.46523], + ["Land_HBarrier1",[3969.9678,11056.365,3.0517578e-005],136.46523], + ["Land_HBarrier5",[3961.5984,11069.999,3.0517578e-005],-132.29822], + ["Land_HBarrier5",[3953.4353,11076.45,-3.0517578e-005],-132.29822], + ["Land_HBarrier5",[3965.4519,11065.786],-132.29822], + ["Land_HBarrier5",[3957.6367,11074.252,-3.0517578e-005],-132.29822], + ["Camp",[3935.4446,11053.462,-3.0517578e-005],230.97359], + ["Land_HBarrier5",[3949.5503,11080.751],-132.29822], + ["Land_HBarrier5",[3941.6497,11087.372,3.0517578e-005],-223.29887], + ["Land_HBarrier1",[3931.9006,11011.67,3.0517578e-005],82.981972], + ["Land_HBarrier5",[3937.5693,11083.276,-9.1552734e-005],-223.29887], + ["Land_HBarrier5",[3933.3994,11079.257,-9.1552734e-005],-223.29887], + ["Land_HBarrier5",[3928.6194,11074.534,9.1552734e-005],-223.29887], + ["MAP_Hlidac_budka",[3925.0127,10988.146],630.42322], + ["MAP_fort_bagfence_corner",[3924.0623,10985.124,-3.0517578e-005],2.2258055], + ["MAP_CncBlock",[3929.6238,10972.504,0.0028391904],1.5170435], + ["MAP_CncBlock",[3926.7927,10972.521],0.96982956], + ["Land_HBarrier1",[3943.1277,11087.921],160.80922], + ["Land_HBarrier1",[3945.6211,11085.415],222.69772], + ["Land_HBarrier5",[3881.3391,11010.534,-3.0517578e-005],-128.03677], + ["Land_HBarrier5",[3877.7144,11014.983,6.1035156e-005],-128.03677], + ["Misc_Cargo1B_military",[3888.2156,11014.706,6.1035156e-005],48.268764], + ["Misc_Cargo1B_military",[3886.4006,11016.949,6.1035156e-005],43.230724], + ["Misc_Cargo1B_military",[3888.1787,11014.727,2.4500997],228.59882], + ["MAP_misc_amplion_wood",[3892.6082,11033.824,-3.0517578e-005],-166.00587], + ["MAP_drevena_bedna",[3891.854,11012.223],141.02856], + ["Land_HBarrier1",[3945.6348,11088.727],231.51234], + ["Land_HBarrier1",[3953.1792,11040.681,6.1035156e-005],149.50349], + ["Land_HBarrier5",[3924.3425,11070.637,-3.0517578e-005],-220.3396], + ["Land_HBarrier5",[3920.0825,11066.521,3.0517578e-005],-224.30481], + ["Land_HBarrier1",[3915.7876,11062.602,-6.1035156e-005],129.68227], + ["Land_HBarrier1",[3913.2483,11062.121,-6.1035156e-005],161.49112], + ["Land_HBarrier1",[3912.9346,11060.215],127.98961], + ["Land_HBarrier5",[3912.1348,11059.161,6.1035156e-005],-224.30481], + ["Land_HBarrier5",[3908.2458,11055.146,-6.1035156e-005],-224.30481], + ["Land_HBarrier5",[3903.885,11051.306,3.0517578e-005],-222.24062], + ["Land_HBarrier5",[3895.4761,11045.241,3.0517578e-005],-135.36388], + ["Land_HBarrier5",[3891.5979,11049.498,3.0517578e-005],-135.36388], + ["Land_HBarrier5",[3874.1519,11019.541,0.00012207031],-128.03677], + ["Land_HBarrier5",[3870.7314,11024.147,-6.1035156e-005],-128.03677], + ["Land_HBarrier5",[3887.5137,11053.805],-225.6996], + ["Land_HBarrier5",[3883.4102,11049.721,-3.0517578e-005],-225.6996], + ["Land_HBarrier5",[3868.0457,11033.869,6.1035156e-005],-228.25618], + ["Land_HBarrier1",[3867.0417,11028.646],65.725311], + ["Land_HBarrier1",[3866.3826,11029.756,6.1035156e-005],50.645046], + ["Land_HBarrier5",[3872.2158,11037.831,6.1035156e-005],-220.49664], + ["Land_HBarrier1",[3873.178,11038.983,6.1035156e-005],-57.472492], + ["Land_tent_east",[3940.1069,11040.798],-133.63884], + ["Land_HBarrier1",[3882.0564,11009.451,0.00018310547],-129.04329], + ["Land_tent_east",[3930.6797,11031.964,0.00012207031],-222.19072], + ["UAZWreck",[3882.624,11037.957,-6.1035156e-005],-385.28848], + ["Land_Fort_Watchtower",[3872.2214,11029.103,-3.0517578e-005],-39.170345], + ["Land_HBarrier5",[3879.29,11045.612,0.00015258789],-225.6996], + ["USMC_WarfareBFieldhHospital",[3894.4197,11021.018,-0.10382144],135.35919], + ["UralWreck",[3879.6946,11027.001,0.00030517578],-473.62155], + ["Land_Toilet",[3914.9788,11047.928,3.0517578e-005],233.04257], + ["Land_Toilet",[3913.2917,11049.845,0.00015258789],223.1655], + ["Land_Toilet",[3911.7246,11051.477,0.00021362305],560.56427], + ["Land_HBarrier1",[3875.0376,11041.893,3.0517578e-005],-41.082367], + ["Land_HBarrier1",[3872.1035,11041.907,3.0517578e-005],-57.472492], + ["RU_WarfareBVehicleServicePoint",[3876.4482,11020.225],410.29111], + ["Land_HBarrier5",[3899.6135,11047.374],-224.26852], + ["hiluxWreck",[3928.6189,11000.549,-3.0517578e-005],-161.06534], + ["UralWreck",[3937.8904,11061.807,3.0517578e-005],-389.63504], + ["BMP2Wreck",[3916.8054,11012.497],-99.934082], + ["AmmoCrates_NoInteractive_Large",[3914.7695,11045.874],-177.98792], + ["AmmoCrates_NoInteractive_Medium",[3913.4922,11045.173,-6.1035156e-005],-44.77565], + ["Land_CamoNetVar_EAST",[3914.1277,11048.075,0.16966489],-131.92813], + ["MAP_Barbedwire",[3934.5552,11001.538],89.441734], + ["MAP_Barbedwire",[3933.9561,11007.279,-3.0517578e-005],89.441734], + ["MAP_Barbedwire",[3924.6062,10994.094,6.1035156e-005],89.441734], + ["MAP_Barbedwire",[3924.5537,10999.546],89.441734], + ["MAP_garbage_paleta",[3899.5264,11025.557,3.0517578e-005],0], + ["MAP_ground_garbage_long",[3915.1479,11028.792,-6.1035156e-005],0], + ["MAP_ground_garbage_square3",[3918.9116,11026.861,-3.0517578e-005],0], + ["MAP_ground_garbage_square5",[3919.5437,11030.021,0],0], + ["MAP_garbage_paleta",[3914.9065,11044.02,-3.0517578e-005],0], + ["MAP_garbage_paleta",[3950.6409,11075.237,-3.0517578e-005],0], + ["Land_HBarrier1",[3904.0269,11014.88,-3.0517578e-005],6.75213], + ["Land_HBarrier1",[3901.2493,11012.736,-3.0517578e-005],-43.10437], + ["Land_HBarrier1",[3900.8831,11014.613],-65.760361], + ["MAP_b_canina2s",[3933.5659,11055.147],0], + ["MAP_b_corylus",[3935.9395,11079.084,-3.0517578e-005],0], + ["MAP_b_corylus2s",[3910.7593,11061.272,-6.1035156e-005],0], + ["MAP_b_craet1",[3918.2095,11052.664],0], + ["MAP_b_prunus",[3911.4248,11049.113],0], + ["MAP_b_craet1",[3896.8748,11025.564],-47.956081], + ["MAP_b_craet1",[3872.6326,11036.002,-6.1035156e-005],-33.796577], + ["MAP_b_corylus2s",[3944.1904,11090.22],0], + ["MAP_ruiny_kopa_1Tv",[3917.5198,11043.328,0.00018310547],0], + ["MAP_ruiny_kopa_1Tv",[3963.9709,11055.825,0.00018310547],0], + ["MAP_ruiny_kopa_1Tv",[3930.6887,11014.858,0.00012207031],0], + ["MAP_Barel7",[3883.4114,11044.823],0], + ["MAP_Barels2",[3881.4788,11045.384,9.1552734e-005],110.23277], + ["MAP_Barels3",[3958.1116,11069.606],140.82567], + ["MAP_Barel7",[3948.1599,11074.986,0.00015258789],-63.921005], + ["MAP_Barel7",[3946.729,11075.162,6.1035156e-005],0], + ["MAP_Barel7",[3947.1885,11074.5,0.00012207031],-156.50668], + ["MAP_Barel7",[3957.9961,11068.688,3.0517578e-005],80.968987], + ["MAP_Barel7",[3957.4883,11069.698,0.0002746582],0], + ["MAP_Barels3",[3958.6672,11070.562,0.97977328],140.82567], + ["MAP_Barel7",[3963.0327,11064.512,3.0517578e-005],-18.778915], + ["Land_HBarrier1",[3924.8154,11004.533,-3.0517578e-005],117.72036], + ["Land_HBarrier1",[3934.9626,10998.326,-3.0517578e-005],82.981972], + ["Land_HBarrier1",[3933.8025,10996.933],-10.706585], + ["Land_HBarrier1",[3925.9829,10992.259,3.0517578e-005],-10.706585], + ["Land_HBarrier1",[3935.3665,10996.854,9.1552734e-005],-9.7976151], + ["RU_WarfareBFieldhHospital",[3905.1602,11038.551,-0.1152747],-46.321651], + ["RU_WarfareBFieldhHospital",[3912.6558,11031.218,-0.11383289],-45.612534], + ["Land_tent_east",[3922.7493,11023.584,0.10214803],-317.09241], + ["MAP_misc_amplion_wood",[3900.8169,11017.997,3.0517578e-005],-408.19693], + ["MAP_b_prunus",[3915.2917,11041.988],0], + ["Land_CamoNetVar_EAST",[3911.7053,11019.861],-194.55721], + ["MAP_PowGen_Big",[3930.0867,11235.203,-3.0517578e-005],-149.44051], + ["MAP_hromada_beden_dekorativniX",[3926.1436,11054.496,3.0517578e-005],-394.20468], + ["MAP_LocalBasicWeapons",[3925.1895,11056.307,3.0517578e-005],-36.406075], + ["MAP_Barbedwire",[3948.3716,11044.758,-3.0517578e-005],18.56122], + ["MAP_PowerGenerator",[3922.5994,11059.581,6.1035156e-005],-40.753048], + ["MAP_PowerGenerator",[3924.0088,11057.874,9.1552734e-005],-40.753048], + ["MAP_b_prunus",[3935.938,11057.091],60.405724], + ["MAP_b_prunus",[3896.176,11042.676,0.00012207031],0], + ["MAP_b_craet1",[3887.7498,11041.682,6.1035156e-005],-33.796577], + ["MAP_b_craet1",[3924.6016,11003.563,3.0517578e-005],-33.796577], + ["MAP_b_prunus",[3918.4031,11010.768,6.1035156e-005],0], + ["MAP_b_prunus",[3932.1389,11012.96,0.00018310547],0], + ["MAP_Barel7",[3923.9292,11046.224,6.1035156e-005],-63.921005], + ["MAP_Barel7",[3899.9604,11022.378,6.1035156e-005],-74.875923], + ["MAP_Barel7",[3880.3279,11014.064,0.00021362305],-63.921005], + ["MAP_Barel7",[3936.4644,11061.205,6.1035156e-005],10.531802], + ["MAP_Barbedwire",[3943.2668,11049.723,6.1035156e-005],76.099854], + ["Land_CamoNetVar_EAST",[3930.2402,11043.725],-108.10652], + ["MAP_hromada_beden_dekorativniX",[3940.1929,11074.996,0.00018310547],-347.64011], + ["MAP_b_canina2s",[3953.9509,11058.038],0], + ["MAP_b_prunus",[3949.3979,11051.779,9.1552734e-005],1.3066831], + ["MAP_b_canina2s",[3941.5591,11069.095],0], + ["MAP_b_canina2s",[3930.106,11017.404,3.0517578e-005],0], + ["MAP_b_corylus2s",[3914.071,11009.081,0.00039672852],0], + ["MAP_b_corylus2s",[3924.9402,11068.505,-9.1552734e-005],-69.078972], + ["MAP_b_corylus2s",[3948.3203,11079.558,9.1552734e-005],0], + ["MAP_b_prunus",[3940.4402,11031.171,3.0517578e-005],1.3066831], + ["Land_Misc_deerstand",[3887.9919,11048.234,0.44055828],133.44647], + ["Land_Misc_deerstand",[3919.6902,11062.58,-6.1035156e-005],133.44647] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/ZelenogorskBuildings.sqf b/SQF/dayz_code/system/mission/chernarus/poi/ZelenogorskBuildings.sqf index ca4a7bd8b..8210ccb05 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/ZelenogorskBuildings.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/ZelenogorskBuildings.sqf @@ -1,140 +1,15 @@ -//Zelenogorsk Buildings DayZ -//Created by Dr Bane 20/11/2013 -//Copyright Dr Bane And Musty Gaming - - -_vehicle_155 = objNull; -if (true) then -{ - _this = "Land_A_Hospital" createVehicle [2503.7185, 5086.52, -4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_155 = _this; - _this setDir -33.496323; - _this setPos [2503.7185, 5086.52, -4.5776367e-005]; -}; - -_vehicle_160 = objNull; -if (true) then -{ - _this = "Land_A_Office01" createVehicle [2513.2856, 5050.8096]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_160 = _this; - _this setDir -121.60757; - _this setPos [2513.2856, 5050.8096]; -}; - -_vehicle_163 = objNull; -if (true) then -{ - _this = "MAP_misc_FallenTree2" createVehicle [2529.1804, 5010.2158, 1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_163 = _this; - _this setDir -11.951188; - _this setPos [2529.1804, 5010.2158, 1.5258789e-005]; -}; - -_vehicle_166 = objNull; -if (true) then -{ - _this = "MAP_misc_stub2" createVehicle [2531.5798, 5002.7026]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_166 = _this; - _this setPos [2531.5798, 5002.7026]; -}; - -_vehicle_168 = objNull; -if (true) then -{ - _this = "MAP_t_betula2s" createVehicle [2531.5203, 5096.9082, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_168 = _this; - _this setDir 11.079486; - _this setPos [2531.5203, 5096.9082, -1.5258789e-005]; -}; - -_vehicle_169 = objNull; -if (true) then -{ - _this = "MAP_t_betula2s" createVehicle [2492.0283, 5066.7285]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_169 = _this; - _this setDir 40.170475; - _this setPos [2492.0283, 5066.7285]; -}; - -_vehicle_170 = objNull; -if (true) then -{ - _this = "MAP_t_betula2w" createVehicle [2536.5967, 5095.6318, 4.5776367e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_170 = _this; - _this setDir -48.802349; - _this setPos [2536.5967, 5095.6318, 4.5776367e-005]; -}; - -_vehicle_173 = objNull; -if (true) then -{ - _this = "MAP_t_fagus2W" createVehicle [2528.623, 5088.9038]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_173 = _this; - _this setPos [2528.623, 5088.9038]; -}; - -_vehicle_179 = objNull; -if (true) then -{ - _this = "MAP_t_populus3s" createVehicle [2562.9749, 5083.749]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_179 = _this; - _this setPos [2562.9749, 5083.749]; -}; - -_vehicle_182 = objNull; -if (true) then -{ - _this = "MAP_phone_box" createVehicle [2542.759, 5070.0776, 0.0001373291]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_182 = _this; - _this setPos [2542.759, 5070.0776, 0.0001373291]; -}; - -_vehicle_183 = objNull; -if (true) then -{ - _this = "MAP_phone_box" createVehicle [2538.0273, 5070.0796, 3.0517578e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_183 = _this; - _this setPos [2538.0273, 5070.0796, 3.0517578e-005]; -}; - -_vehicle_184 = objNull; -if (true) then -{ - _this = "MAP_phone_box" createVehicle [2540.3445, 5070.0625, -1.5258789e-005]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_184 = _this; - _this setPos [2540.3445, 5070.0625, -1.5258789e-005]; -}; - -_vehicle_188 = objNull; -if (true) then -{ - _this = "MAP_A_statue01" createVehicle [2540.7234, 5062.2808]; -_this setVariable ["", true]; // prevent network SV by loot/zeds spawner - - _vehicle_188 = _this; - _this setPos [2540.7234, 5062.2808]; -}; +[[ + ["Land_A_Hospital",[2503.7185,5086.52,-4.5776367e-005],-33.496323], + ["Land_A_Office01",[2513.2856,5050.8096],-121.60757], + ["MAP_misc_FallenTree2",[2529.1804,5010.2158,1.5258789e-005],-11.951188], + ["MAP_misc_stub2",[2531.5798,5002.7026],0], + ["MAP_t_betula2s",[2531.5203,5096.9082,-1.5258789e-005],11.079486], + ["MAP_t_betula2s",[2492.0283,5066.7285],40.170475], + ["MAP_t_betula2w",[2536.5967,5095.6318,4.5776367e-005],-48.802349], + ["MAP_t_fagus2W",[2528.623,5088.9038],0], + ["MAP_t_populus3s",[2562.9749,5083.749],0], + ["MAP_phone_box",[2542.759,5070.0776,0.0001373291],0], + ["MAP_phone_box",[2538.0273,5070.0796,3.0517578e-005],0], + ["MAP_phone_box",[2540.3445,5070.0625,-1.5258789e-005],0], + ["MAP_A_statue01",[2540.7234,5062.2808],0] +],false,false,false] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus/poi/init.sqf b/SQF/dayz_code/system/mission/chernarus/poi/init.sqf index 55a0cc825..a89b309f3 100644 --- a/SQF/dayz_code/system/mission/chernarus/poi/init.sqf +++ b/SQF/dayz_code/system/mission/chernarus/poi/init.sqf @@ -6,5 +6,9 @@ [] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\KomyshovoRoadblock.sqf"; [] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\MilitaryAirpoort.sqf"; [] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\ZelenogorskBuildings.sqf"; -[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\Twains.sqf"; +[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\NWATentCamp.sqf"; + + +//Filled with Server sleeps, removed for now +//[] execVM "\z\addons\dayz_code\system\mission\chernarus\poi\Twains.sqf"; diff --git a/SQF/dayz_code/system/mission/chernarus11.sqf b/SQF/dayz_code/system/mission/chernarus11.sqf index 54a4faebc..82db5f2db 100644 --- a/SQF/dayz_code/system/mission/chernarus11.sqf +++ b/SQF/dayz_code/system/mission/chernarus11.sqf @@ -169,4 +169,4 @@ ["MAP_R2_RockWall",[13881,11792.8,-14.3209],142.299], ["MAP_R2_RockTower",[13827.3,11770.9,-13.6761],0], ["MAP_R2_Rock1",[13817.8,11746.1,-27.2185],68.5491] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/chernarus17.sqf b/SQF/dayz_code/system/mission/chernarus17.sqf index fd07309d0..8ef7a1ffe 100644 --- a/SQF/dayz_code/system/mission/chernarus17.sqf +++ b/SQF/dayz_code/system/mission/chernarus17.sqf @@ -315,4 +315,4 @@ ["MAP_R2_RockWall",[13881,11792.8,-14.3209],142.299], ["MAP_R2_RockTower",[13827.3,11770.9,-13.6761],0], ["MAP_R2_Rock1",[13817.8,11746.1,-27.2185],68.5491] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/fapovo.sqf b/SQF/dayz_code/system/mission/fapovo.sqf index 444d60355..1f711b041 100644 --- a/SQF/dayz_code/system/mission/fapovo.sqf +++ b/SQF/dayz_code/system/mission/fapovo.sqf @@ -169,4 +169,4 @@ ["Land_Fire_barrel",[4353.02,3655.65,0],48.8184], ["Land_Fire_barrel",[3390.93,4098.64,-1.52588e-005],153.856], ["Land_A_Hospital",[3307.93,1509.43,-1.14441e-005],0.916192] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/fdf_isle1_a.sqf b/SQF/dayz_code/system/mission/fdf_isle1_a.sqf index 0e522fa45..1e30be8ab 100644 --- a/SQF/dayz_code/system/mission/fdf_isle1_a.sqf +++ b/SQF/dayz_code/system/mission/fdf_isle1_a.sqf @@ -156,4 +156,4 @@ ["Info_Board_EP1",[9761.01,4032.71,-3.52859e-005],57.3271], ["Info_Board_EP1",[13575.6,7499.29,0.000282288],90.123], ["HeliHCivil",[7990.66,10591.1,2.47955e-005],0] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/isladuala.sqf b/SQF/dayz_code/system/mission/isladuala.sqf index 7fb1a4739..31dea75c8 100644 --- a/SQF/dayz_code/system/mission/isladuala.sqf +++ b/SQF/dayz_code/system/mission/isladuala.sqf @@ -300,4 +300,4 @@ ["MAP_Barbedwire",[8410.45,3359.27,6.77109e-005],342.125], ["ASC_EU_LHSOld",[8410.74,3380.06,6.67572e-006],0], ["ASC_EU_LHSOld",[8418.09,3380.07,4.76837e-006],0] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/lingor.sqf b/SQF/dayz_code/system/mission/lingor.sqf index 1bcfb6b73..113535b28 100644 --- a/SQF/dayz_code/system/mission/lingor.sqf +++ b/SQF/dayz_code/system/mission/lingor.sqf @@ -243,4 +243,4 @@ ["HeliHEmpty",[9297.45,3854.4,1.33514e-005],0.000364386], ["HeliHCivil",[4210.44,1480.93,0],0], ["Land_HBarrier_large",[4148.3,1479.76,0.0176926],92.8137] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/namalsk.sqf b/SQF/dayz_code/system/mission/namalsk.sqf index 76fdd2e66..3d6e345ff 100644 --- a/SQF/dayz_code/system/mission/namalsk.sqf +++ b/SQF/dayz_code/system/mission/namalsk.sqf @@ -114,4 +114,4 @@ ["Land_Fire_barrel_burning",[6294.21,9927.04,0.573409],0], ["FlagCarrierTFKnight_EP1",[6276.49,9401.92,-0.090519],82.954], ["Land_Fire_barrel_burning",[6275.86,9406.17,0],358.888] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/napf.sqf b/SQF/dayz_code/system/mission/napf.sqf index de196e8ae..0c6002866 100644 --- a/SQF/dayz_code/system/mission/napf.sqf +++ b/SQF/dayz_code/system/mission/napf.sqf @@ -260,4 +260,4 @@ ["Land_HBarrier3",[15473.1,13212.3,-0.00374699],106.213], ["Land_HBarrier3",[15455.8,13214.6,0.00995064],297.611], ["Land_HBarrier3",[15507,13213.2,0.228428],99.1406] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/panthera2.sqf b/SQF/dayz_code/system/mission/panthera2.sqf index c715b109b..e243c1e32 100644 --- a/SQF/dayz_code/system/mission/panthera2.sqf +++ b/SQF/dayz_code/system/mission/panthera2.sqf @@ -115,4 +115,4 @@ ["Land_Fire_barrel",[7223.86,733.89,0.000946999],0.0379978], ["Land_Fire_barrel",[4409.02,1627.98,0.000356674],122.863], ["Land_Fire_barrel",[3794.43,7652.93,3.1340871],0] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/provinggrounds_pmc.sqf b/SQF/dayz_code/system/mission/provinggrounds_pmc.sqf index 7d7b2c5cb..2ac331303 100644 --- a/SQF/dayz_code/system/mission/provinggrounds_pmc.sqf +++ b/SQF/dayz_code/system/mission/provinggrounds_pmc.sqf @@ -290,4 +290,4 @@ ["FlagCarrierOPFOR_EP1",[931.994,1211.14,0.0169449],198.708], ["FlagCarrierOPFOR_EP1",[944.925,1178.76,5.71742],198.708], ["FlagCarrierOPFOR_EP1",[948.911,1174.81,5.66268],198.708] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/sauerland.sqf b/SQF/dayz_code/system/mission/sauerland.sqf index e3e65d956..acc9b5ac6 100644 --- a/SQF/dayz_code/system/mission/sauerland.sqf +++ b/SQF/dayz_code/system/mission/sauerland.sqf @@ -427,4 +427,4 @@ ["Misc_cargo_cont_net3",[2445.79,3894.76,0.0341797],264.582], ["FoldChair",[2446.56,3898.81,0.000793457],103.739], ["FoldTable",[2444.96,3899.14,0.000640869],267.556] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/shapur_baf.sqf b/SQF/dayz_code/system/mission/shapur_baf.sqf index 1cdcb4b9b..30a68046f 100644 --- a/SQF/dayz_code/system/mission/shapur_baf.sqf +++ b/SQF/dayz_code/system/mission/shapur_baf.sqf @@ -61,4 +61,4 @@ ["BMP2Wreck",[472.932,1069.16,0.0105076],54.1738], ["Misc_palletsfoiled_heap",[496.077,1082.61,-0.00848007],62.6169], ["Info_Board_EP1",[505.839,1120,0.00104141],40.2667] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/smd_sahrani_a2.sqf b/SQF/dayz_code/system/mission/smd_sahrani_a2.sqf index ae0f2fc6c..764f4b739 100644 --- a/SQF/dayz_code/system/mission/smd_sahrani_a2.sqf +++ b/SQF/dayz_code/system/mission/smd_sahrani_a2.sqf @@ -145,4 +145,4 @@ ["Misc_cargo_cont_small2",[13246.9,11188.1,7.62939e-006],88.3989], ["AmmoCrate_NoInteractive_",[13244.1,11192.5,7.62939e-006],0], ["AmmoCrates_NoInteractive_Large",[13247.3,11189.7,-1.90735e-006],0] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/takistan.sqf b/SQF/dayz_code/system/mission/takistan.sqf index 1bfbc1e58..baf30ba55 100644 --- a/SQF/dayz_code/system/mission/takistan.sqf +++ b/SQF/dayz_code/system/mission/takistan.sqf @@ -308,4 +308,4 @@ ["LADAWreck",[10867.4,6319.59,0.00982666],359.859], ["FoldTable",[422.854,5589.3,0.00149536],17.7976], ["Misc_cargo_cont_net1",[428.667,5574.01,0.000213623],323.529] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/tavi.sqf b/SQF/dayz_code/system/mission/tavi.sqf index 991b55b8d..3d2790ebf 100644 --- a/SQF/dayz_code/system/mission/tavi.sqf +++ b/SQF/dayz_code/system/mission/tavi.sqf @@ -723,4 +723,4 @@ ["MAP_R2_RockWall",[7440.15,5567.71,-20.5011],112.729], ["MAP_R2_RockWall",[7494.54,5608.71,-20.677],290.173], ["MAP_R2_RockWall",[7512.41,5583.7,-12.2722],171.501] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/utes.sqf b/SQF/dayz_code/system/mission/utes.sqf index 2c17ad321..bd516b5fc 100644 --- a/SQF/dayz_code/system/mission/utes.sqf +++ b/SQF/dayz_code/system/mission/utes.sqf @@ -58,4 +58,4 @@ ["Fort_StoneWall_EP1",[4022.83,2882.98,0.0588207],342.867], ["T72Wreck",[4022.61,2917.04,0.0561008],339.954], ["Info_Board_EP1",[4012.73,2897.31,0.00329018],262.568] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/SQF/dayz_code/system/mission/zargabad.sqf b/SQF/dayz_code/system/mission/zargabad.sqf index dc2ce0bf8..076859230 100644 --- a/SQF/dayz_code/system/mission/zargabad.sqf +++ b/SQF/dayz_code/system/mission/zargabad.sqf @@ -84,4 +84,4 @@ ["Land_Fire_barrel",[3577.17,6830.6,0.000236511],359.997], ["Info_Board_EP1",[3612.99,6829.27,0.000593185],86.5122], ["Land_Fire_barrel",[4723.34,833.238,0.000152588],0.00214848] -],true] call local_spawnObjects; \ No newline at end of file +],true,false,true] call fnc_spawnObjects; \ No newline at end of file diff --git a/Server Files/Battleye/scripts.txt b/Server Files/Battleye/scripts.txt index f2b278651..cd119b064 100644 --- a/Server Files/Battleye/scripts.txt +++ b/Server Files/Battleye/scripts.txt @@ -13,7 +13,7 @@ 5 createDisplay 5 createMarker !"\"createMarkerLocal\",\n\"setMarkerPosLocal\"," !="rcreateMarkerLocal = 'createMarkerLocal'" !"rcreateMarkerLocalcode" !"\"createMarkerLocal\", \"createSimpleTask\"," !"if (isnil 'BIS_GITA_fnc_createMarkers' || false) then {" !"_marker = createMarkerLocal [format[\"groupMember" !="_marker = createMarkerLocal [\"MyBody\",_pos];" 5 createUnit !="_newUnit = _group createUnit [_class,respawn_west_original,[],0,\"NONE\"];" !="BIS_MPF_logic = BIS_MPF_dummygroup createUnit [\"Logic\", [1000,10,0], [], 0, \"NONE\"];" -5 createVehicleLocal !="_object = (_x select 1) createVehicleLocal [0,0,0];" !"_o = _type createVehicleLocal _pos;\n_o setDir _dir;" !="_Crater= \"CraterLong\" createvehiclelocal [_pos select 0, _pos select 1, 0];" !="_plant = _x createVehicleLocal (getMarkerPos \"center\");" !="_point = \"Logic\" createVehicleLocal getPosATL _unit;" !="_obj = _class createVehicleLocal _new;" !="_obj = _class createVehicleLocal (getMarkerpos \"respawn_west\");" !" = \"#lightpoint\" createVehicleLocal " !" = \"#particlesource\" createVehicleLocal " !="_object = _ghost createVehicleLocal getMarkerpos \"respawn_west\";" !="_cursorTarget = _upgrade createVehicleLocal getMarkerpos \"respawn_west\";" !="_sign = \"Sign_arrow_down_large_EP1\" createVehicleLocal [0,0,0];" !="_obj = \"Sign_sphere10cm_EP1\" createVehicleLocal [0,0,0];" !="_obj = _model createVehicleLocal [0,0,0];" !="_objectSnapGizmo = \"Sign_sphere10cm_EP1\" createVehicleLocal [0,0,0];" !"_object = _type createVehicleLocal [0,0,0];\n_object setDir (_x select 2);" +5 createVehicleLocal !="_object = (_x select 1) createVehicleLocal [0,0,0];" !="_Crater= \"CraterLong\" createvehiclelocal [_pos select 0, _pos select 1, 0];" !="_plant = _x createVehicleLocal (getMarkerPos \"center\");" !="_point = \"Logic\" createVehicleLocal getPosATL _unit;" !="_obj = _class createVehicleLocal _new;" !="_obj = _class createVehicleLocal (getMarkerpos \"respawn_west\");" !" = \"#lightpoint\" createVehicleLocal " !" = \"#particlesource\" createVehicleLocal " !="_object = _ghost createVehicleLocal getMarkerpos \"respawn_west\";" !="_cursorTarget = _upgrade createVehicleLocal getMarkerpos \"respawn_west\";" !="_sign = \"Sign_arrow_down_large_EP1\" createVehicleLocal [0,0,0];" !="_obj = \"Sign_sphere10cm_EP1\" createVehicleLocal [0,0,0];" !="_obj = _model createVehicleLocal [0,0,0];" !="_objectSnapGizmo = \"Sign_sphere10cm_EP1\" createVehicleLocal [0,0,0];" !"_object = _type createVehicleLocal [0,0,0];\n_object setDir (_x select 2);" 5 ctrlAddEventHandler 5 ctrlRemoveAllEventHandlers 5 ctrlSetPosition !="_control ctrlSetPosition [_posX, _posY];" !"if (_h != -1) then {_pos set [3,_h]};\n_control ctrlsetposition _pos;" !="_control ctrlSetPosition [0, (_y + _deltaY)];" !="_disp_ctrl ctrlSetPosition [_posX, _posY];" !="_control ctrlSetPosition _grpPos;" !="_group ctrlSetPosition _pos;" !="_control ctrlSetPosition [_controlPos select 0, _controlPos select 1, _controlPos select 2, 0.03921 * _lines];" !="((uiNamespace getVariable 'DAYZ_GUI_waiting') displayCtrl 1400) ctrlSetPosition _sandLevel;" !="_delayControl ctrlSetPosition [0, _pos];" !="_icon ctrlSetPosition [(_screen select 0),(_screen select 1),.99,.65];"