mirror of
https://github.com/EpochModTeam/DayZ-Epoch.git
synced 2025-12-13 19:52:38 +03:00
@@ -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 <null> value for "rh_factor" and array for "bloodtype" in character_data medical field. @ebayShopper
|
||||
|
||||
70
SQF/dayz_code/compile/fn_spawnObjects.sqf
Normal file
70
SQF/dayz_code/compile/fn_spawnObjects.sqf
Normal file
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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
|
||||
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],false,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
@@ -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;
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
@@ -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;
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
195
SQF/dayz_code/system/mission/chernarus/poi/NWATentCamp.sqf
Normal file
195
SQF/dayz_code/system/mission/chernarus/poi/NWATentCamp.sqf
Normal file
@@ -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;
|
||||
@@ -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;
|
||||
@@ -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";
|
||||
|
||||
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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;
|
||||
],true,false,true] call fnc_spawnObjects;
|
||||
@@ -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];"
|
||||
|
||||
Reference in New Issue
Block a user