Jump to content

[Release] Base Copy/Paste


Recommended Posts

 

Right, its working but i have now encountered a real issue, when i go to copy bases my server rpt doesn't have the objects saved into the log, instead i get.

 

 2:09:38 Server: Object 4:458 not found (message 70)
 2:09:38 Server: Object 4:457 not found (message 94)
 2:09:38 Server: Object 4:459 not found (message 94)
 2:09:38 Server: Object 4:460 not found (message 94)
 2:09:38 Server: Object 4:461 not found (message 94)
 2:09:38 Server: Object 4:462 not found (message 94)
 2:09:38 Server: Object 4:463 not found (message 94)
 2:09:38 Server: Object 4:464 not found (message 94)
 2:09:38 Server: Object 4:465 not found (message 94)

 

 

 

Having same issue - I combine this with infistar, Kept the infistar base delete and used the copy/paste. But as you said, it isnt showing in the logs

Link to comment
Share on other sites

diag_log "========= Copying Objects [start] =========";
		{
			private ["_obj_type", "_direction", "_obj_position", "_relative_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_relative_position = [
				(_obj_position select 0) - (_position select 0),
				(_obj_position select 1) - (_position select 1),
				(_obj_position select 2) - (_position select 2)
			];
			_row = [_obj_type, _relative_position, _direction];
			diag_log str(_row);
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Copied %1 items", count _nearest_objects];
		diag_log "========= Copying Objects [end] =========";

Just wondering if the diag_log is wrong. Infistar uses "diag_log format" alot and do we need to use the PVAH_WriteLog ? Im no coder, so just throwing ideas out there

Link to comment
Share on other sites

Found a small problem, after deleting a base with this script, it reappears when the server restarts.

 

This is correct, the base destruct is missing the defining of variables _objectID,_objectUID.

 

fn_BCConfirmDelete = {
	private ["_position", "_distance", "_nearest_objects"];
	if (isNil "BC_Center" or isNil "BC_radius") exitWith
	{
		systemChat "Center not set";
	};
	_position = BC_center;
	_distance = BC_radius;
	_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
	{
                _objectID = _x getVariable ["ObjectID","0"];
                _objectUID = _x getVariable ["ObjectUID","0"];
		PVDZE_obj_Delete = [_objectID,_objectUID,_activatingPlayer];
		publicVariableServer "PVDZE_obj_Delete";
		deleteVehicle _x;
		true
	} count _nearest_objects;
	[format["<t size='0.6'>Deleted %1 objects</t>", count _nearest_objects],0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
};

Link to comment
Share on other sites

diag_log "========= Copying Objects [start] =========";
		{
			private ["_obj_type", "_direction", "_obj_position", "_relative_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_relative_position = [
				(_obj_position select 0) - (_position select 0),
				(_obj_position select 1) - (_position select 1),
				(_obj_position select 2) - (_position select 2)
			];
			_row = [_obj_type, _relative_position, _direction];
			diag_log str(_row);
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Copied %1 items", count _nearest_objects];
		diag_log "========= Copying Objects [end] =========";

Just wondering if the diag_log is wrong. Infistar uses "diag_log format" alot and do we need to use the PVAH_WriteLog ? Im no coder, so just throwing ideas out there

 

 

This is correct. Infistar is most likely using an event handler for it. The normal use of it is:

diag_log "RPT output text";
Link to comment
Share on other sites

We decided to use this script over at FP to help convert players' bases into map edits. With this in mind, I added SQF export functionality to it, and fixed the deletion so that it isn't blocked by infiSTAR's PVDZE_obj_delete interception.
 
Here's the modified version, I add this underneath fnc_AdminBaseDestruction:
 

	//Base Management Integration by Michael Cullen
	admin_BaseManagementMenu =
	{
		if (isNil "BCCurrentBase") then {
			BCCurrentBase = [];
		};

		TraderDialogLoadItemList = {};
		TraderDialogShowPrices = {};
		TraderDialogSell = {};
		TraderDialogBuy = {
			systemChat str [lbCurSel 12000, lbCurSel 12001];
			[lbCurSel 12000, lbCurSel 12001] spawn {
				private ["_pindex", "_bindex", "_base", "_player", "_base_objects"];
				systemChat str _this;
				_pindex = _this select 0;
				_bindex = _this select 1;
				if (_pindex < 0 or _bindex < 0) exitWith {};
				_base = BCBaseList select _bindex;
				_player = BCNearbyList select _pindex;
				_attach_position = player modelToWorld (_base select 2);
				_attach_position set [2, getPosASL player select 2];
				_base_objects = [_base select 3, _attach_position, _player] call fn_BCCreateBase;
				[_base_objects] call fn_BCBuildbase;
			};
		};

		BCMainMenu =
		[
			["Base Manager",true],
			["Insert",			[2], "", -5, [["expression", "[] spawn fn_BCInsert"]], "1", "1"],
			["========",		[3], "", -5, [["expression", ""]], "1", "1"],
			["Set Center",		[4], "", -5, [["expression", "[] spawn fn_BCSetCenter"]], "1", "1"],
			["Set Radius",		[5], "", -5, [["expression", "[] spawn fn_BCSetRadius"]], "1", "1"],
			["========", 		[6], "", -5, [["expression", ""]], "1", "1"],
			["Export (SQF)",	[7], "", -5, [["expression", "[] spawn fn_BCExport"]], "1", "1"],
			["Export All (SQF)",	[8], "", -5, [["expression", "[] spawn fn_BCExportAll"]], "1", "1"],
			["Copy",			[9], "", -5, [["expression", "[] spawn fn_BCCopy"]], "1", "1"],
			["Paste",			[10], "", -5, [["expression", "[] spawn fn_BCPaste"]], "1", "1"],
			["Delete",			[11], "", -5, [["expression", "[] spawn fn_BCDelete"]], "1", "1"],
			["========",		[12], "", -5, [["expression", ""]], "1", "1"],
			["Exit",			[13], "", -5, [["expression", ""]], "1", "1"]
		];
		showCommandingMenu "#USER:BCMainMenu";
	};
	BCBaseSaveMenu = [
		["",true],
			["Save",			[2], "", -5, [["expression", "[] spawn fn_BCSaveToDb"]], "1", "1"],
			["Exit",			[3], "", -5, [["expression", "[] spawn fn_BCCancelBase"]], "1", "1"]
	];

	fn_BCInsert = {
		createdialog "TraderDialog";
		lbClear 12000;
		lbClear 12001;
		ctrlShow [12005, false];
		{
			lbAdd [12001, format["%1 (%2)", _x select 1, _x select 0]];
			true
		} count BCBaseList;

		BCNearbyList = [];
		{
			if (_x isKindOf "Man" and !(_x isKindOf "zZombie_base")) then {
				BCNearbyList set [count BCNearbyList, _x];
				lbAdd [12000, format["%1", name _x]];
			};
			true
		} count (player nearEntities ["CAManBase", 10]);
	};

	fn_BCSetCenter = {
		private ["_centerSign"];
		BC_radius = nil;
		BC_Center = getPosASL player;
		_centerSign = createVehicle ["Sign_arrow_down_large_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
		_centerSign setPosASL BC_Center;
		_centerSign spawn {sleep 30; deleteVehicle _this;};
		showCommandingMenu "#USER:BCMainMenu";
	};

	fn_BCSetRadius = {
		if (isNil "BC_Center") exitWith
		{
			systemChat "Center not set";
		};
		BC_radius = [player, BC_center] call BIS_fnc_distance2D;
		showCommandingMenu "#USER:BCMainMenu";
		[] spawn {
			private ["_pos", "_radius", "_angle", "_distance", "_count", "_step", "_count", "_step", "_objects"];
			_angle = 0;
			_count = round((2 * pi * BC_radius) / 2);
			_objects = [];
			for "_x" from 0 to _count do
			{
				private["_a", "_b", "_obj"];
				_a = (BC_Center select 0) + (sin(_angle)*BC_radius);
				_b = (BC_Center select 1) + (cos(_angle)*BC_radius);
				_obj = createVehicle ["Sign_sphere100cm_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
				_obj setPosASL [_a, _b, BC_center select 2];
				_objects set [count _objects, _obj];
				_angle = _angle + (360/_count);
			};
			
			for "_x" from 0 to _count do
			{
				private["_a", "_b", "_obj"];
				_a = (BC_Center select 0) + (sin(_angle)*BC_radius);
				_b = (BC_Center select 2) + (cos(_angle)*BC_radius);
				_obj = createVehicle ["Sign_sphere100cm_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
				_obj setPosASL [_a, BC_center select 1, _b];
				_objects set [count _objects, _obj];
				_angle = _angle + (360/_count);
			};
			
			for "_x" from 0 to _count do
			{
				private["_a", "_b", "_obj"];
				_a = (BC_Center select 1) + (sin(_angle)*BC_radius);
				_b = (BC_Center select 2) + (cos(_angle)*BC_radius);
				_obj = createVehicle ["Sign_sphere100cm_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
				_obj setPosASL [BC_center select 0, _a, _b];
				_objects set [count _objects, _obj];
				_angle = _angle + (360/_count);
			};

			sleep 30;
			{ deleteVehicle _x; true } count _objects;
		};
	};

	fn_BCCopy = {
		private ["_objects", "_position", "_distance", "_nearest_objects"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_objects = [];
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
		diag_log text "========= Copying Objects [start] =========";
		{
			private ["_obj_type", "_direction", "_obj_position", "_relative_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_relative_position = [
				(_obj_position select 0) - (_position select 0),
				(_obj_position select 1) - (_position select 1),
				(_obj_position select 2) - (_position select 2)
			];
			_row = [_obj_type, _relative_position, _direction];
			diag_log text str(_row + ",");
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Copied %1 items", count _nearest_objects];
		diag_log "========= Copying Objects [end] =========";
		BCCopiedBase = _objects;
		["<t size='0.6'>Base copied to logs</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
		showCommandingMenu "#USER:BCMainMenu";
		_objects
	};

	fn_BCExport = {
		private ["_objects", "_position", "_distance", "_nearest_objects"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_objects = [];
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
		diag_log text ("/" + "/ --------- Start Base Export --------- /" + "/");
		diag_log text "if (isServer) then {";
		{
			private ["_obj_type", "_direction", "_obj_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_row = [_obj_type, _obj_position, [], 0, "CAN_COLLIDE"];
			if ((_obj_type != "VaultStorageLocked") && (_obj_type != "CinderWallDoorSmallLocked_DZ") && (_obj_type != "") && (_obj_type != "LockboxStorageLocked") && (_obj_type != "StorageShed_DZ") && (_obj_type != "CinderWallDoorLocked_DZ") && (_obj_type != "Land_DZE_GarageWoodDoorLocked") && (_obj_type != "Land_DZE_LargeWoodDoorLocked") && (_obj_type != "GunRack_DZ") && (_obj_type != "Wooden_shed_DZ") && (_obj_type != "WoodCrate_DZ") && (_obj_type != "Sign_sphere100cm_EP1") && (_obj_type != "Sign_arrow_down_large_EP1")) then {
				diag_log text "_bldObj = objNull;";
				diag_log text "if (true) then {";
				diag_log text format["_bldObj = createVehicle %1;", _row];
				diag_log text format["_bldObj setDir %1;",_direction];
				diag_log text format["_bldObj setPosASL %1;",_obj_position];
				diag_log text "};";
				diag_log text "";
			};
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Exported %1 items", count _nearest_objects];
		diag_log text "};";
		diag_log text ("/" + "/ --------- End Base Export --------- /" + "/");
		BCCopiedBase = _objects;
		["<t size='0.6'>Base exported to logs in SQF Format</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
		showCommandingMenu "#USER:BCMainMenu";
		_objects
	};

	fn_BCExportAll = {
		private ["_objects", "_position", "_distance", "_nearest_objects"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_objects = [];
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], ["All"], _distance];
		diag_log text ("/" + "/ --------- Start Base Export --------- /" + "/");
		diag_log text "if (isServer) then {";
		{
			private ["_obj_type", "_direction", "_obj_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_row = [_obj_type, _obj_position, [], 0, "CAN_COLLIDE"];
			if ((_obj_type != "VaultStorageLocked") && (_obj_type != "CinderWallDoorSmallLocked_DZ") && (_obj_type != "") && (_obj_type != "LockboxStorageLocked") && (_obj_type != "StorageShed_DZ") && (_obj_type != "CinderWallDoorLocked_DZ") && (_obj_type != "Land_DZE_GarageWoodDoorLocked") && (_obj_type != "Land_DZE_LargeWoodDoorLocked") && (_obj_type != "GunRack_DZ") && (_obj_type != "Wooden_shed_DZ") && (_obj_type != "WoodCrate_DZ") && (_obj_type != "Sign_sphere100cm_EP1") && (_obj_type != "Sign_arrow_down_large_EP1")) then {
				diag_log text "_bldObj = objNull;";
				diag_log text "if (true) then {";
				diag_log text format["_bldObj = createVehicle %1;", _row];
				diag_log text format["_bldObj setDir %1;",_direction];
				diag_log text format["_bldObj setPosASL %1;",_obj_position];
				diag_log text "};";
				diag_log text "";
			};
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Exported %1 items", count _nearest_objects];
		diag_log text "};";
		diag_log text ("/" + "/ --------- End Base Export --------- /" + "/");
		BCCopiedBase = _objects;
		["<t size='0.6'>Base exported to logs in SQF Format</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
		showCommandingMenu "#USER:BCMainMenu";
		_objects
	};

	fn_BCPaste = {
		private ["_dimensions", "_attach_position", "_base_objects"];
		if (isNil "BCCopiedBase") exitWith
		{
			systemChat "Base not copied not set";
		};
		_dimensions = BCCopiedBase call fn_BCGetDimensions;
		_attach_position = player modelToWorld [0, ((_dimensions select 0) max (_dimensions select 1)), 0];
		diag_log str [0, ((_dimensions select 0) max (_dimensions select 1)), 0];
		_attach_position set [2, getPosASL player select 2];
		_base_objects = [BCCopiedBase, _attach_position] call fn_BCCreateBase;
		[_base_objects] call fn_BCBuildbase;
	};

	fn_BCDelete = {
		BCConfirmBaseDelete = [
			["Are you sure?",true],
				["No", 	[2], "", -5, [["expression", ""]], "1", "1"],
				["Yes", 	[3], "", -5, [["expression", "[] spawn fn_BCConfirmDelete"]], "1", "1"]
		];
		showCommandingMenu "#USER:BCConfirmBaseDelete";
	};

	fn_BCConfirmDelete = {
		private ["_position", "_distance", "_nearest_objects", "_obj_type", "_objectID", "_objectUID"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
		{
			_obj_type = typeOf _x;
			_objectID = _x getVariable["ObjectID","0"]; 
			_objectUID = _x getVariable["ObjectUID","0"]; 
			if ((_obj_type != "VaultStorageLocked") && (_obj_type != "CinderWallDoorSmallLocked_DZ") && (_obj_type != "") && (_obj_type != "LockboxStorageLocked") && (_obj_type != "StorageShed_DZ") && (_obj_type != "CinderWallDoorLocked_DZ") && (_obj_type != "Land_DZE_GarageWoodDoorLocked") && (_obj_type != "Land_DZE_LargeWoodDoorLocked") && (_obj_type != "GunRack_DZ") && (_obj_type != "Wooden_shed_DZ") && (_obj_type != "WoodCrate_DZ")) then {
				if (_objectID == "0" && _objectUID == "0") then {
					deleteVehicle _x;
				} else {
					PVAH_AdminReq = [-2,player,_x];
					publicVariableServer "PVAH_AdminReq";
				};
				true
			};
		} count _nearest_objects;
		[format["<t size='0.6'>Deleted %1 objects</t>", count _nearest_objects],0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
	};

	fn_BCSaveToDb = {
		{
			PVDZE_obj_Publish = [_x getVariable ["CharacterID", dayz_characterID],_x,[getDir _x, getPosATL _x], typeOf _x];
			publicVariableServer "PVDZE_obj_Publish";
		} count BCCurrentBase;
		[format["<t size='0.6'>Added %1 objects to database</t>", count BCCurrentBase],0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
	};

	fn_BCCancelBase = {
		{
			detach _x; deleteVehicle _x;
		} count BCCurrentBase;
		BCCurrentBase = [];
		["<t size='0.6'>Cancelled</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
	};

	fn_BCCenter = {
		private ["_objects", "_ax", "_ay", "_az", "_total"];
		_objects = [];
		_ax = 0;
		_ay = 0;
		_az = 0;
		{
			private ["_pos"];
			_pos = getPosASL _x;
			_ax = _ax + (_pos select 0);
			_ay = _ay + (_pos select 1);
			_az = _az + (_pos select 2);
		} count _this;
		_total = count _this;
		_center = [_ax / _total, _ay / _total, _az / _total];
		_center
	};

	fn_BCCreateBase = {
		private ["_objects", "_items", "_position", "_player"];
		_objects = [];
		_items = _this select 0;
		_position = _this select 1;
		if (count _this == 3) then {
			_player = _this select 2;
		};
		{
			private ["_object", "_orig_obj"];
			_object = createVehicle [_x select 0, [0,0,0], [], 0, "CAN_COLLIDE"];
			_object setPosASL [
				((_x select 1) select 0) + (_position select 0),
				((_x select 1) select 1) + (_position select 1),
				((_x select 1) select 2) + (_position select 2) 
			];
			_object attachTo [player];
			_object setDir ((_x select 2) - getDir player);
			if (count _x == 4) then {
				_orig_obj = _x select 3;
				_object setVariable ["CharacterID", _orig_obj getVariable ["CharacterID", ""], true];
			};
			if (!isNil "_player") then {
				_object setVariable ["CharacterID", (_player getVariable ["CharacterID","0"]), true];
			};
			_objects set [count _objects, _object];
			true
		} count _items;
		_objects
	};

	fn_BCBuildbase = {
		private ["_base_objects", "_finished", "_place"];
		_base_objects = _this select 0;
		{
			_x attachTo [player];
			true
		} count _base_objects;
		_finished = false;
		DZE_Q = false;
		DZE_Z = false;
		DZE_4 = false;
		DZE_6 = false;
		DZE_5 = false;
		DZE_cancelBuilding = false;
		_place = false;
		while {!_finished} do {
			private ["_player_direction"];
			["<t size='0.6'>SPACE: Place | Q/R: Rotate | PgUp/PgDn: Height</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
			_player_direction = getDir player;
			if (DZE_Q or DZE_Z) then {
				{
					private ["_obj_direction", "_position"];
					detach _x;
					_obj_direction = getDir _x;
					_position = getPosASL _x;
					_position set [2, (_position select 2) + (if (DZE_Q) then {0.5} else {-0.5})];
					_x setPosASL _position;
					_x attachTo [player];
					_x setDir (_obj_direction - _player_direction);
					true
				} count _base_objects;
				DZE_Q = false;
				DZE_Z = false;
			};
			if (DZE_4 or DZE_6) then {
				private ["_center_position"];
				_center_position = _base_objects call fn_BCCenter;
				{
					private ["_position", "_obj_direction", "_dif_direction", "_new_direction", "_distance", "_rotated_position"];
					detach _x;
					_position = getPosASL _x;
					_obj_direction = ([_center_position, _position] call BIS_fnc_dirTo);
					_dif_direction = if (DZE_4) then {10} else {-10};
					_new_direction = _obj_direction + _dif_direction;
					_distance = [_center_position, _position] call BIS_fnc_distance2D;
					_obj_direction = getDir _x;
					_rotated_position = [_center_position, _distance, _new_direction] call BIS_fnc_relPos;
					_rotated_position set [2, _position select 2];
					_x setPosASL _rotated_position;
					_x attachTo [player];
					_x setDir (((_obj_direction - _player_direction) + _dif_direction) % 360);
					true
				} count _base_objects;
				DZE_4 = false;
				DZE_6 = false;
			};
			if(DZE_5) exitWith {
				_finished = true;
				_place = true;
			};
			if (DZE_cancelBuilding) exitWith {
				_finished = true;
				_place = false;
			};
			sleep 0.1;
		};
		{detach _x; true} count _base_objects;
		BCCurrentBase = _base_objects;
		if (_place) then {
			showCommandingMenu "#USER:BCBaseSaveMenu";
		} else {
			call fn_BCCancelBase;
		};
	};

	fn_BCGetDimensions = {
		private ["_xmin", "_xmax", "_ymin", "_ymax"];
		_xmin = 0;
		_xmax = 0;
		_ymin = 0;
		_ymax = 0;
		{
			private ["_position"];
			_position = _x select 1;
			if ((_position select 0) < _xmin) then {
				_xmin = _position select 0;
			};
			if ((_position select 0) > _xmax) then {
				_xmax = _position select 0;
			};
			
			if ((_position select 1) < _ymin) then {
				_ymin = _position select 1;
			};
			if ((_position select 1) > _ymax) then {
				_ymax = _position select 1;
			};
			true
		} count _this;
		[abs _xmin + abs _xmax, abs _ymin + abs _ymax]
	};

Then add this into your keybinds:

			if (_key == 0x40) then {call admin_BaseManagementMenu;};

Menu is now triggered by F6. By default, Export (SQF) exports all epoch objects except for storage units and locked doors; Export (All) will export all objects except locked doors and storage units, and even non-epoch objects like inserted MAP/LAND buildings and even vehicles. The exported stuff is put in your client-side Arma2OA.rpt in SQF format; copy and paste it into a new .sqf file to load in as a map edit. The delete function will remove everything except for storage units and locked doors, so you can export then delete a players' base, then load it in as a map edit to reduce the load on the DB.

Link to comment
Share on other sites

We decided to use this script over at FP to help convert players' bases into map edits. With this in mind, I added SQF export functionality to it, and fixed the deletion so that it isn't blocked by infiSTAR's PVDZE_obj_delete interception.

 

Here's the modified version, I add this underneath fnc_AdminBaseDestruction:

 

	//Base Management Integration by Michael Cullen
	admin_BaseManagementMenu =
	{
		if (isNil "BCCurrentBase") then {
			BCCurrentBase = [];
		};

		TraderDialogLoadItemList = {};
		TraderDialogShowPrices = {};
		TraderDialogSell = {};
		TraderDialogBuy = {
			systemChat str [lbCurSel 12000, lbCurSel 12001];
			[lbCurSel 12000, lbCurSel 12001] spawn {
				private ["_pindex", "_bindex", "_base", "_player", "_base_objects"];
				systemChat str _this;
				_pindex = _this select 0;
				_bindex = _this select 1;
				if (_pindex < 0 or _bindex < 0) exitWith {};
				_base = BCBaseList select _bindex;
				_player = BCNearbyList select _pindex;
				_attach_position = player modelToWorld (_base select 2);
				_attach_position set [2, getPosASL player select 2];
				_base_objects = [_base select 3, _attach_position, _player] call fn_BCCreateBase;
				[_base_objects] call fn_BCBuildbase;
			};
		};

		BCMainMenu =
		[
			["Base Manager",true],
			["Insert",			[2], "", -5, [["expression", "[] spawn fn_BCInsert"]], "1", "1"],
			["========",		[3], "", -5, [["expression", ""]], "1", "1"],
			["Set Center",		[4], "", -5, [["expression", "[] spawn fn_BCSetCenter"]], "1", "1"],
			["Set Radius",		[5], "", -5, [["expression", "[] spawn fn_BCSetRadius"]], "1", "1"],
			["========", 		[6], "", -5, [["expression", ""]], "1", "1"],
			["Export (SQF)",	[7], "", -5, [["expression", "[] spawn fn_BCExport"]], "1", "1"],
			["Export All (SQF)",	[8], "", -5, [["expression", "[] spawn fn_BCExportAll"]], "1", "1"],
			["Copy",			[9], "", -5, [["expression", "[] spawn fn_BCCopy"]], "1", "1"],
			["Paste",			[10], "", -5, [["expression", "[] spawn fn_BCPaste"]], "1", "1"],
			["Delete",			[11], "", -5, [["expression", "[] spawn fn_BCDelete"]], "1", "1"],
			["========",		[12], "", -5, [["expression", ""]], "1", "1"],
			["Exit",			[13], "", -5, [["expression", ""]], "1", "1"]
		];
		showCommandingMenu "#USER:BCMainMenu";
	};
	BCBaseSaveMenu = [
		["",true],
			["Save",			[2], "", -5, [["expression", "[] spawn fn_BCSaveToDb"]], "1", "1"],
			["Exit",			[3], "", -5, [["expression", "[] spawn fn_BCCancelBase"]], "1", "1"]
	];

	fn_BCInsert = {
		createdialog "TraderDialog";
		lbClear 12000;
		lbClear 12001;
		ctrlShow [12005, false];
		{
			lbAdd [12001, format["%1 (%2)", _x select 1, _x select 0]];
			true
		} count BCBaseList;

		BCNearbyList = [];
		{
			if (_x isKindOf "Man" and !(_x isKindOf "zZombie_base")) then {
				BCNearbyList set [count BCNearbyList, _x];
				lbAdd [12000, format["%1", name _x]];
			};
			true
		} count (player nearEntities ["CAManBase", 10]);
	};

	fn_BCSetCenter = {
		private ["_centerSign"];
		BC_radius = nil;
		BC_Center = getPosASL player;
		_centerSign = createVehicle ["Sign_arrow_down_large_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
		_centerSign setPosASL BC_Center;
		_centerSign spawn {sleep 30; deleteVehicle _this;};
		showCommandingMenu "#USER:BCMainMenu";
	};

	fn_BCSetRadius = {
		if (isNil "BC_Center") exitWith
		{
			systemChat "Center not set";
		};
		BC_radius = [player, BC_center] call BIS_fnc_distance2D;
		showCommandingMenu "#USER:BCMainMenu";
		[] spawn {
			private ["_pos", "_radius", "_angle", "_distance", "_count", "_step", "_count", "_step", "_objects"];
			_angle = 0;
			_count = round((2 * pi * BC_radius) / 2);
			_objects = [];
			for "_x" from 0 to _count do
			{
				private["_a", "_b", "_obj"];
				_a = (BC_Center select 0) + (sin(_angle)*BC_radius);
				_b = (BC_Center select 1) + (cos(_angle)*BC_radius);
				_obj = createVehicle ["Sign_sphere100cm_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
				_obj setPosASL [_a, _b, BC_center select 2];
				_objects set [count _objects, _obj];
				_angle = _angle + (360/_count);
			};
			
			for "_x" from 0 to _count do
			{
				private["_a", "_b", "_obj"];
				_a = (BC_Center select 0) + (sin(_angle)*BC_radius);
				_b = (BC_Center select 2) + (cos(_angle)*BC_radius);
				_obj = createVehicle ["Sign_sphere100cm_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
				_obj setPosASL [_a, BC_center select 1, _b];
				_objects set [count _objects, _obj];
				_angle = _angle + (360/_count);
			};
			
			for "_x" from 0 to _count do
			{
				private["_a", "_b", "_obj"];
				_a = (BC_Center select 1) + (sin(_angle)*BC_radius);
				_b = (BC_Center select 2) + (cos(_angle)*BC_radius);
				_obj = createVehicle ["Sign_sphere100cm_EP1", [0,0,0], [], 0, "CAN_COLLIDE"];
				_obj setPosASL [BC_center select 0, _a, _b];
				_objects set [count _objects, _obj];
				_angle = _angle + (360/_count);
			};

			sleep 30;
			{ deleteVehicle _x; true } count _objects;
		};
	};

	fn_BCCopy = {
		private ["_objects", "_position", "_distance", "_nearest_objects"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_objects = [];
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
		diag_log text "========= Copying Objects [start] =========";
		{
			private ["_obj_type", "_direction", "_obj_position", "_relative_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_relative_position = [
				(_obj_position select 0) - (_position select 0),
				(_obj_position select 1) - (_position select 1),
				(_obj_position select 2) - (_position select 2)
			];
			_row = [_obj_type, _relative_position, _direction];
			diag_log text str(_row + ",");
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Copied %1 items", count _nearest_objects];
		diag_log "========= Copying Objects [end] =========";
		BCCopiedBase = _objects;
		["<t size='0.6'>Base copied to logs</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
		showCommandingMenu "#USER:BCMainMenu";
		_objects
	};

	fn_BCExport = {
		private ["_objects", "_position", "_distance", "_nearest_objects"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_objects = [];
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
		diag_log text ("/" + "/ --------- Start Base Export --------- /" + "/");
		diag_log text "if (isServer) then {";
		{
			private ["_obj_type", "_direction", "_obj_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_row = [_obj_type, _obj_position, [], 0, "CAN_COLLIDE"];
			if ((_obj_type != "VaultStorageLocked") && (_obj_type != "CinderWallDoorSmallLocked_DZ") && (_obj_type != "") && (_obj_type != "LockboxStorageLocked") && (_obj_type != "StorageShed_DZ") && (_obj_type != "CinderWallDoorLocked_DZ") && (_obj_type != "Land_DZE_GarageWoodDoorLocked") && (_obj_type != "Land_DZE_LargeWoodDoorLocked") && (_obj_type != "GunRack_DZ") && (_obj_type != "Wooden_shed_DZ") && (_obj_type != "WoodCrate_DZ") && (_obj_type != "Sign_sphere100cm_EP1") && (_obj_type != "Sign_arrow_down_large_EP1")) then {
				diag_log text "_bldObj = objNull;";
				diag_log text "if (true) then {";
				diag_log text format["_bldObj = createVehicle %1;", _row];
				diag_log text format["_bldObj setDir %1;",_direction];
				diag_log text format["_bldObj setPosASL %1;",_obj_position];
				diag_log text "};";
				diag_log text "";
			};
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Exported %1 items", count _nearest_objects];
		diag_log text "};";
		diag_log text ("/" + "/ --------- End Base Export --------- /" + "/");
		BCCopiedBase = _objects;
		["<t size='0.6'>Base exported to logs in SQF Format</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
		showCommandingMenu "#USER:BCMainMenu";
		_objects
	};

	fn_BCExportAll = {
		private ["_objects", "_position", "_distance", "_nearest_objects"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_objects = [];
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], ["All"], _distance];
		diag_log text ("/" + "/ --------- Start Base Export --------- /" + "/");
		diag_log text "if (isServer) then {";
		{
			private ["_obj_type", "_direction", "_obj_position", "_row"];
			_obj_type = typeOf _x;
			_direction = getDir _x;
			_obj_position = getPosASL _x;
			_row = [_obj_type, _obj_position, [], 0, "CAN_COLLIDE"];
			if ((_obj_type != "VaultStorageLocked") && (_obj_type != "CinderWallDoorSmallLocked_DZ") && (_obj_type != "") && (_obj_type != "LockboxStorageLocked") && (_obj_type != "StorageShed_DZ") && (_obj_type != "CinderWallDoorLocked_DZ") && (_obj_type != "Land_DZE_GarageWoodDoorLocked") && (_obj_type != "Land_DZE_LargeWoodDoorLocked") && (_obj_type != "GunRack_DZ") && (_obj_type != "Wooden_shed_DZ") && (_obj_type != "WoodCrate_DZ") && (_obj_type != "Sign_sphere100cm_EP1") && (_obj_type != "Sign_arrow_down_large_EP1")) then {
				diag_log text "_bldObj = objNull;";
				diag_log text "if (true) then {";
				diag_log text format["_bldObj = createVehicle %1;", _row];
				diag_log text format["_bldObj setDir %1;",_direction];
				diag_log text format["_bldObj setPosASL %1;",_obj_position];
				diag_log text "};";
				diag_log text "";
			};
			_row set [count _row, _x];
			_objects set [count _objects, _row];
			true
		} count _nearest_objects;
		systemChat format["Exported %1 items", count _nearest_objects];
		diag_log text "};";
		diag_log text ("/" + "/ --------- End Base Export --------- /" + "/");
		BCCopiedBase = _objects;
		["<t size='0.6'>Base exported to logs in SQF Format</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
		showCommandingMenu "#USER:BCMainMenu";
		_objects
	};

	fn_BCPaste = {
		private ["_dimensions", "_attach_position", "_base_objects"];
		if (isNil "BCCopiedBase") exitWith
		{
			systemChat "Base not copied not set";
		};
		_dimensions = BCCopiedBase call fn_BCGetDimensions;
		_attach_position = player modelToWorld [0, ((_dimensions select 0) max (_dimensions select 1)), 0];
		diag_log str [0, ((_dimensions select 0) max (_dimensions select 1)), 0];
		_attach_position set [2, getPosASL player select 2];
		_base_objects = [BCCopiedBase, _attach_position] call fn_BCCreateBase;
		[_base_objects] call fn_BCBuildbase;
	};

	fn_BCDelete = {
		BCConfirmBaseDelete = [
			["Are you sure?",true],
				["No", 	[2], "", -5, [["expression", ""]], "1", "1"],
				["Yes", 	[3], "", -5, [["expression", "[] spawn fn_BCConfirmDelete"]], "1", "1"]
		];
		showCommandingMenu "#USER:BCConfirmBaseDelete";
	};

	fn_BCConfirmDelete = {
		private ["_position", "_distance", "_nearest_objects", "_obj_type", "_objectID", "_objectUID"];
		if (isNil "BC_Center" or isNil "BC_radius") exitWith
		{
			systemChat "Center not set";
		};
		_position = BC_center;
		_distance = BC_radius;
		_nearest_objects = nearestObjects [[_position select 0, _position select 1], dayz_allowedObjects, _distance];
		{
			_obj_type = typeOf _x;
			_objectID = _x getVariable["ObjectID","0"]; 
			_objectUID = _x getVariable["ObjectUID","0"]; 
			if ((_obj_type != "VaultStorageLocked") && (_obj_type != "CinderWallDoorSmallLocked_DZ") && (_obj_type != "") && (_obj_type != "LockboxStorageLocked") && (_obj_type != "StorageShed_DZ") && (_obj_type != "CinderWallDoorLocked_DZ") && (_obj_type != "Land_DZE_GarageWoodDoorLocked") && (_obj_type != "Land_DZE_LargeWoodDoorLocked") && (_obj_type != "GunRack_DZ") && (_obj_type != "Wooden_shed_DZ") && (_obj_type != "WoodCrate_DZ")) then {
				if (_objectID == "0" && _objectUID == "0") then {
					deleteVehicle _x;
				} else {
					PVAH_AdminReq = [-2,player,_x];
					publicVariableServer "PVAH_AdminReq";
				};
				true
			};
		} count _nearest_objects;
		[format["<t size='0.6'>Deleted %1 objects</t>", count _nearest_objects],0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
	};

	fn_BCSaveToDb = {
		{
			PVDZE_obj_Publish = [_x getVariable ["CharacterID", dayz_characterID],_x,[getDir _x, getPosATL _x], typeOf _x];
			publicVariableServer "PVDZE_obj_Publish";
		} count BCCurrentBase;
		[format["<t size='0.6'>Added %1 objects to database</t>", count BCCurrentBase],0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
	};

	fn_BCCancelBase = {
		{
			detach _x; deleteVehicle _x;
		} count BCCurrentBase;
		BCCurrentBase = [];
		["<t size='0.6'>Cancelled</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
	};

	fn_BCCenter = {
		private ["_objects", "_ax", "_ay", "_az", "_total"];
		_objects = [];
		_ax = 0;
		_ay = 0;
		_az = 0;
		{
			private ["_pos"];
			_pos = getPosASL _x;
			_ax = _ax + (_pos select 0);
			_ay = _ay + (_pos select 1);
			_az = _az + (_pos select 2);
		} count _this;
		_total = count _this;
		_center = [_ax / _total, _ay / _total, _az / _total];
		_center
	};

	fn_BCCreateBase = {
		private ["_objects", "_items", "_position", "_player"];
		_objects = [];
		_items = _this select 0;
		_position = _this select 1;
		if (count _this == 3) then {
			_player = _this select 2;
		};
		{
			private ["_object", "_orig_obj"];
			_object = createVehicle [_x select 0, [0,0,0], [], 0, "CAN_COLLIDE"];
			_object setPosASL [
				((_x select 1) select 0) + (_position select 0),
				((_x select 1) select 1) + (_position select 1),
				((_x select 1) select 2) + (_position select 2) 
			];
			_object attachTo [player];
			_object setDir ((_x select 2) - getDir player);
			if (count _x == 4) then {
				_orig_obj = _x select 3;
				_object setVariable ["CharacterID", _orig_obj getVariable ["CharacterID", ""], true];
			};
			if (!isNil "_player") then {
				_object setVariable ["CharacterID", (_player getVariable ["CharacterID","0"]), true];
			};
			_objects set [count _objects, _object];
			true
		} count _items;
		_objects
	};

	fn_BCBuildbase = {
		private ["_base_objects", "_finished", "_place"];
		_base_objects = _this select 0;
		{
			_x attachTo [player];
			true
		} count _base_objects;
		_finished = false;
		DZE_Q = false;
		DZE_Z = false;
		DZE_4 = false;
		DZE_6 = false;
		DZE_5 = false;
		DZE_cancelBuilding = false;
		_place = false;
		while {!_finished} do {
			private ["_player_direction"];
			["<t size='0.6'>SPACE: Place | Q/R: Rotate | PgUp/PgDn: Height</t>",0,0.8,0.5,0,0,8] spawn BIS_fnc_dynamicText;
			_player_direction = getDir player;
			if (DZE_Q or DZE_Z) then {
				{
					private ["_obj_direction", "_position"];
					detach _x;
					_obj_direction = getDir _x;
					_position = getPosASL _x;
					_position set [2, (_position select 2) + (if (DZE_Q) then {0.5} else {-0.5})];
					_x setPosASL _position;
					_x attachTo [player];
					_x setDir (_obj_direction - _player_direction);
					true
				} count _base_objects;
				DZE_Q = false;
				DZE_Z = false;
			};
			if (DZE_4 or DZE_6) then {
				private ["_center_position"];
				_center_position = _base_objects call fn_BCCenter;
				{
					private ["_position", "_obj_direction", "_dif_direction", "_new_direction", "_distance", "_rotated_position"];
					detach _x;
					_position = getPosASL _x;
					_obj_direction = ([_center_position, _position] call BIS_fnc_dirTo);
					_dif_direction = if (DZE_4) then {10} else {-10};
					_new_direction = _obj_direction + _dif_direction;
					_distance = [_center_position, _position] call BIS_fnc_distance2D;
					_obj_direction = getDir _x;
					_rotated_position = [_center_position, _distance, _new_direction] call BIS_fnc_relPos;
					_rotated_position set [2, _position select 2];
					_x setPosASL _rotated_position;
					_x attachTo [player];
					_x setDir (((_obj_direction - _player_direction) + _dif_direction) % 360);
					true
				} count _base_objects;
				DZE_4 = false;
				DZE_6 = false;
			};
			if(DZE_5) exitWith {
				_finished = true;
				_place = true;
			};
			if (DZE_cancelBuilding) exitWith {
				_finished = true;
				_place = false;
			};
			sleep 0.1;
		};
		{detach _x; true} count _base_objects;
		BCCurrentBase = _base_objects;
		if (_place) then {
			showCommandingMenu "#USER:BCBaseSaveMenu";
		} else {
			call fn_BCCancelBase;
		};
	};

	fn_BCGetDimensions = {
		private ["_xmin", "_xmax", "_ymin", "_ymax"];
		_xmin = 0;
		_xmax = 0;
		_ymin = 0;
		_ymax = 0;
		{
			private ["_position"];
			_position = _x select 1;
			if ((_position select 0) < _xmin) then {
				_xmin = _position select 0;
			};
			if ((_position select 0) > _xmax) then {
				_xmax = _position select 0;
			};
			
			if ((_position select 1) < _ymin) then {
				_ymin = _position select 1;
			};
			if ((_position select 1) > _ymax) then {
				_ymax = _position select 1;
			};
			true
		} count _this;
		[abs _xmin + abs _xmax, abs _ymin + abs _ymax]
	};

Then add this into your keybinds:

			if (_key == 0x40) then {call admin_BaseManagementMenu;};

Menu is now triggered by F6. By default, Export (SQF) exports all epoch objects except for storage units and locked doors; Export (All) will export all objects except locked doors and storage units, and even non-epoch objects like inserted MAP/LAND buildings and even vehicles. The exported stuff is put in your client-side Arma2OA.rpt in SQF format; copy and paste it into a new .sqf file to load in as a map edit. The delete function will remove everything except for storage units and locked doors, so you can export then delete a players' base, then load it in as a map edit to reduce the load on the DB.

 

the copy and paste options dont work for me...

Link to comment
Share on other sites

This is somewhat included in the latest infistar update. However, when I tried to do this, it red-chained by server and kicked everyone. Suppose I'll use it with caution, however. It does look like a neat tool to use! Nice share.

Link to comment
Share on other sites

  • 3 weeks later...

finally got around to adding and testing on one of my servers...have to copy info from my base now I would like to add it to my other server...
How?
I know I can paste info and create sqf but what other info needs to go into pasted info?
example:
"["BagFenceRound_DZ",[-2.26611,-1.59766,0.0572815],268.101]"
"["BagFenceRound_DZ",[1.96387,2.38281,0.0755615],341.326]"
"["LightPole_DZ",[1.20361,3.19238,-2.52496],134.029]"
"["LightPole_DZ",[-3.40625,-0.916992,-2.27927],133.396]"
 
a small portion of copied info .. If I want to add this to 2nd server what are the proper formats needed?
Ive looked at various other downloadable premade bases...the formats are totally different
 
THANKS

"========= Copying Objects [start] ========="


"["BagFenceRound_DZ",[-2.26611,-1.59766,0.0572815],268.101]"
"["BagFenceRound_DZ",[1.96387,2.38281,0.0755615],341.326]"
"["LightPole_DZ",[1.20361,3.19238,-2.52496],134.029]"
"["LightPole_DZ",[-3.40625,-0.916992,-2.27927],133.396]"
"["Sandbag1_DZ",[-3.65625,-1.69727,1.44235],311.378]"
"["Sandbag1_DZ",[1.89355,3.59277,1.57242],319.175]"
"["Sandbag1_DZ",[-3.30615,-3.15723,-0.0269165],320.918]"
"["Land_HBarrier5_DZ",[-4.63623,-2.74707,1.25101],316.06]"
"["Land_HBarrier5_DZ",[-4.63623,-2.74707,0.144012],316.06]"
"["Sandbag1_DZ",[3.71387,3.96289,0.0872498],314.44]"
"["Land_HBarrier5_DZ",[2.89355,4.66309,1.25363],316.702]"
"["Land_HBarrier5_DZ",[2.89355,4.66309,0.246643],316.702]"
"["ParkBench_DZ",[-3.06641,-4.86719,0.00735474],314.778]"
"["Sandbag1_DZ",[-4.75635,-4.35742,-0.0466003],315.924]"
"["OutHouse_DZ",[5.04395,4.0332,-0.180023],313.467]"
"["Sandbag1_DZ",[5.80371,5.99316,0.0969849],316.712]"
"["FireBarrel_DZ",[6.73389,5.20313,0.0359802],308.406]"
"["Sandbag1_DZ",[-6.73633,-6.26758,-0.0735168],315.924]"
"["HeliH",[-4.24609,8.44238,-0.0961609],49.9137]"
"["Land_HBarrier5_DZ",[-8.59619,-6.56738,0.174225],316.06]"
"["Land_HBarrier5_DZ",[-8.59619,-6.56738,1.18121],316.06]"
"["Land_HBarrier5_DZ",[6.89355,8.43262,1.22333],316.702]"
"["Land_HBarrier5_DZ",[6.89355,8.43262,0.216309],316.702]"
"["TentStorageDomed",[8.66357,6.71289,0.0466309],310.249]"
"["Sandbag1_DZ",[7.80371,7.88281,0.0985107],316.712]"
"["Sandbag1_DZ",[-8.70605,-8.1875,-0.100281],315.924]"
"["Sandbag1_DZ",[10.0137,9.8623,0.120575],319.046]"
"["Sandbag1_DZ",[-10.686,-10.0977,-0.127197],315.924]"
"["BagFenceRound_DZ",[-14.2861,4.35254,2.74887],259.799]"
"["Sandbag1_DZ",[-15.4263,2.1123,2.7525],136.191]"
"["Land_HBarrier5_DZ",[-12.5562,-10.377,0.203369],316.06]"
"["Land_HBarrier5_DZ",[-12.5562,-10.377,1.21039],316.06]"
"["Land_HBarrier5_DZ",[10.9038,12.2031,1.26468],136.702]"
"["Land_HBarrier5_DZ",[10.9038,12.2031,0.187683],136.702]"
"["Sandbag1_DZ",[12.084,11.6631,0.121338],319.046]"
"["MetalFloor_DZ",[-16.3364,4.04297,2.62039],135.811]"
"["WoodFloor_DZ",[-16.3364,4.04297,2.42041],135.777]"
"["Sandbag1_DZ",[-17.4063,0.212891,2.75153],136.191]"
"["Sandbag1_DZ",[-12.6563,-12.0068,-0.153961],315.924]"
"["ParkBench_DZ",[-18.8862,0.5625,-0.210571],225.57]"
"["BagFenceRound_DZ",[-18.9561,-2.10742,-0.160522],266.363]"
"["Sandbag1_DZ",[-19.396,-1.69727,2.74948],136.191]"
"["Sandbag1_DZ",[14.1235,13.7324,0.149109],311.977]"
"["MAP_Misc_WellPump",[-13.5864,14.3525,-0.242523],340.782]"
"["MetalFloor_DZ",[-19.896,0.573242,2.6207],135.811]"
"["WoodFloor_DZ",[-19.896,0.573242,2.42072],135.777]"
"["WoodCrate_DZ",[-14.666,13.7627,-0.175201],311.652]"
"["Sandbag1_DZ",[-20.1265,-0.407227,-0.181427],226.9]"
"["Sandbag1_DZ",[-14.6362,-13.9268,-0.180847],315.924]"
"["WoodRamp_DZ",[-5.38623,19.8125,-0.191101],226.219]"
"["Sandbag1_DZ",[-20.1265,-4.14746,-0.255432],317.779]"
"["Sandbag1_DZ",[-14.2163,15.2324,-0.136108],315.154]"
"["WoodFloor_DZ",[-19.5664,7.35254,2.42053],135.777]"
"["MetalFloor_DZ",[-19.5664,7.35254,2.62051],135.811]"
"["WoodSmallWallWin_DZ",[-14.4663,15.4932,-0.386505],316.225]"
"["WoodSmallWallThird_DZ",[-21.1763,-1.20703,-0.641693],227.126]"
"["BagFenceRound_DZ",[-16.1362,14.1523,-0.175201],356.501]"
"["Sandbag1_DZ",[-20.9863,-5.02734,-0.26712],317.802]"
"["FireBarrel_DZ",[-21.3262,-3.30762,-0.271729],78.1699]"
"["Sandbag1_DZ",[-21.3765,-3.59766,2.74857],136.191]"
"["WoodLargeWallWin_DZ",[-21.6563,-1.1377,2.55078],225.776]"
"["Land_HBarrier5_DZ",[-16.5161,-14.1973,0.232605],316.06]"
"["Land_HBarrier5_DZ",[-16.5161,-14.1973,1.23962],316.06]"
"["WoodSmallWallThird_DZ",[-21.3062,-4.67676,-0.642456],317.128]"
"["Land_DZE_GarageWoodDoorLocked",[-11.1064,18.793,-0.371124],315.415]"
"["Land_HBarrier5_DZ",[14.9038,15.9824,0.216461],316.702]"
"["Land_HBarrier5_DZ",[14.9038,15.9824,1.31345],316.702]"
"["BagFenceRound_DZ",[-21.8765,0.913086,-0.219208],183.026]"
"["WoodCrate_DZ",[-16.0562,14.9932,-0.195099],226.113]"
"["MAP_P_bath",[-22.1064,-1.54688,2.71265],45.3809]"
"["WoodLargeWallWin_DZ",[-21.8262,-4.56738,2.55048],315.777]"
"["Sandbag1_DZ",[16.1738,15.833,0.148865],317.722]"
"["Sandbag1_DZ",[-7.61621,21.6025,-0.0804138],316.074]"
"["Sandbag1_DZ",[-16.6162,-15.8369,-0.207764],315.924]"
"["GunRack_DZ",[-16.8364,15.8027,-0.223724],226.614]"
"["MAP_P_Basin_A",[-23.2363,-0.137695,3.19131],183.951]"
"["Hanged",[-22.2563,-6.81738,0.0816345],317.281]"
"["WoodSmallWallWin_DZ",[-7.84619,21.9727,-0.385529],316.225]"
"["MAP_lekarnicka",[-22.666,-5.69727,3.99106],133.376]"
"["LightPole_DZ",[-9.13623,21.5225,-3.62408],315.694]"
"["WoodFloor_DZ",[-23.1265,3.89258,2.42053],135.777]"
"["MetalFloor_DZ",[-23.1265,3.89258,2.62051],135.811]"
"["Hedgehog_DZ",[-5.44629,22.9023,-0.111908],326.579]"
"["MetalFloor_DZ",[-15.6763,17.6025,2.62006],135.811]"
"["WoodFloor_DZ",[-15.6763,17.6025,2.42004],135.777]"
"["WoodSmallWallWin_DZ",[-17.7764,15.5625,-0.386475],226.224]"
"["WoodFloor_DZ",[-23.4561,-2.89746,5.42032],135.777]"
"["WoodFloor_DZ",[-23.4561,-2.89746,2.42032],135.777]"
"["WoodFloor_DZ",[-19.2363,14.1426,2.42065],315.777]"
"["MetalFloor_DZ",[-19.2363,14.1426,2.62067],315.811]"
"["Sandbag1_DZ",[-23.3564,-5.49707,2.75067],136.191]"
"["HeliHRescue",[10.4336,21.6523,0.0395508],224.915]"
"["Sandbag1_DZ",[-23.2061,-7.03711,-0.297272],317.802]"
"["MetalFloor_DZ",[-12.1162,21.0732,2.62036],135.811]"
"["WoodFloor_DZ",[-12.1162,21.0732,2.42038],135.777]"
"["FireBarrel_DZ",[-16.8662,17.6826,-0.245117],226.808]"
"["WorkBench_DZ",[-17.6162,16.9531,-0.25531],225.55]"
"["WoodSmallWallWin_DZ",[-21.0864,12.3926,-0.386017],226.224]"
"["WoodLargeWallWin_DZ",[-25.0762,-1.22754,2.55029],135.777]"
"["MetalFloor_DZ",[-22.7964,10.6729,2.62048],135.811]"
"["WoodFloor_DZ",[-22.7964,10.6729,2.42047],135.777]"
"["Sandbag1_DZ",[-4.35645,24.8828,-0.0466309],315.768]"
"["Sandbag1_DZ",[18.2139,17.6826,0.149628],317.722]"
"["WoodSmallWallWin_DZ",[-4.54639,25.1328,-0.385468],316.225]"
"["Sandbag1_DZ",[-18.5864,-17.7471,-0.234497],315.924]"
"["VaultStorageLocked",[-18.8462,17.7324,-0.256042],225.406]"
"["Sr_border",[-22.3564,-13.2168,-0.255737],224.164]"
"["WoodFloor_DZ",[-8.54639,24.543,2.42038],315.777]"
"["MetalFloor_DZ",[-8.54639,24.543,2.62039],315.811]"
"["Hedgehog_DZ",[-2.08643,26.0225,-0.091217],333.966]"
"["Plastic_Pole_EP1_DZ",[-5.27637,25.583,-0.132904],131.757]"
"["WoodSmallWallThird_DZ",[-24.896,-8.00684,-0.642242],317.128]"
"["Land_Table_EP1",[-25.7964,-4.44727,-0.314484],228.978]"
"["MAP_P_toilet_b_02",[-26.186,-2.83691,2.69122],83.4177]"
"["WoodLargeWallWin_DZ",[-26.3662,0.123047,2.52075],315.85]"
"["WoodFloor_DZ",[-26.3662,0.123047,5.42075],315.85]"
"["Sandbag1_DZ",[-25.3462,-7.40723,2.75165],136.191]"
"["M240Nest_DZ",[-26.1265,-4.1377,5.84003],136.215]"
"["WoodLargeWallWin_DZ",[-26.2261,3.50293,2.52069],225.851]"
"["Sandbag1_DZ",[-26.3062,3.08301,5.7486],45.0978]"
"["WoodStairs_DZ",[-26.4863,-1.29688,-0.354858],135.277]"
"["MetalPanel_DZ",[-2.79639,26.4424,-0.488586],316.76]"
"["WoodLargeWallWin_DZ",[-25.3862,-8.03711,2.55109],315.777]"
"["Sandbag1_DZ",[-25.3262,-9.05762,-0.324066],318.976]"
"["MAP_F_Vojenska_palanda",[-27.0562,0.642578,2.4614],226.32]"
"["GunRack_DZ",[-19.5762,18.8428,-0.259949],227.013]"
"["WoodRamp_DZ",[-25.936,8.18262,2.63007],137.419]"
"["Land_HBarrier5_DZ",[-20.4761,-18.0176,0.262817],316.06]"
"["Land_HBarrier5_DZ",[-20.4761,-18.0176,1.26981],316.06]"
"["MetalFloor_DZ",[-26.3564,7.21289,2.62024],135.811]"
"["WoodFloor_DZ",[-26.3564,7.21289,2.42023],135.777]"
"["Land_HBarrier5_DZ",[18.9038,19.7529,1.353],316.702]"
"["Land_HBarrier5_DZ",[18.9038,19.7529,0.246002],316.702]"
"["Land_Water_pipe_EP1",[-27.2661,4.0127,2.69656],46.9923]"
"["WoodFloor_DZ",[-26.8462,-6.32715,5.41925],46.8745]"
"["Land_DZE_LargeWoodDoorLocked",[-27.5063,-2.4375,2.6488],226.875]"
"["WoodFloor_DZ",[-27.0161,-6.36719,2.42093],135.777]"
"["Sandbag1_DZ",[-0.956055,27.9229,-0.0295715],315.967]"
"["WoodFloor_DZ",[-27.9863,1.79297,2.39047],135.85]"
"["GunRack_DZ",[-20.2061,19.4629,-0.269073],226.113]"
"["Sr_border",[4.34375,27.7432,0.0602417],231.487]"
"["Land_Pillow_EP1",[-27.9761,3.37305,2.63455],39.7474]"
"["WoodSmallWallWin_DZ",[-20.8765,18.9424,-0.386139],226.224]"
"["MetalFloor_DZ",[-18.9063,20.9229,2.62015],315.811]"
"["WoodFloor_DZ",[-18.9063,20.9229,2.42014],315.777]"
"["Sandbag1_DZ",[20.2539,19.6729,0.19635],314.858]"
"["CinderWallDoorLocked_DZ",[20.6636,-19.2871,2.11978],318.809]"
"["CinderWallDoorLocked_DZ",[20.6636,-19.2871,2.11978],318.809]"
"["WoodSmallWallWin_DZ",[-1.22607,28.3232,-0.385864],316.225]"
"["WoodFloor_DZ",[-4.98633,28.0029,2.4201],315.777]"
"["WoodFloor_DZ",[-22.4663,17.4629,2.42047],135.777]"
"["MetalFloor_DZ",[-22.4663,17.4629,2.62045],135.811]"
"["StorageShed_DZ",[-4.30615,28.1631,-0.888031],134.249]"
"["Land_DZE_WoodDoorLocked",[-28.4961,2.10254,-0.473145],316.64]"
"["Land_HBarrier5_DZ",[16.4536,-23.3672,1.22116],315.846]"
"["Land_HBarrier5_DZ",[16.4536,-23.3672,0.214172],315.846]"
"["Land_HBarrier5_DZ",[16.4536,-23.3672,2.52118],315.811]"
"["Sandbag1_DZ",[-20.7563,-19.8174,-0.263977],317.722]"
"["WoodLargeWall_DZ",[-28.2363,5.5625,2.52722],226.64]"
"["MAP_Dkamna_uhli",[-27.396,-8.86719,2.6918],136.065]"
"["WoodFloor_DZ",[-15.3364,24.3926,2.42014],135.777]"
"["MetalFloor_DZ",[-15.3364,24.3926,2.62015],135.811]"
"["Sandbag1_DZ",[-27.3262,-9.30762,2.75372],136.191]"
"["WoodSmallWallWin_DZ",[-24.2563,15.7031,-0.385742],226.224]"
"["WoodSmallWallWin_DZ",[-28.396,5.41309,-0.473236],226.64]"
"["Land_Rack_EP1",[-28.8765,-1.58691,2.57541],137.466]"
"["FireBarrel_DZ",[-25.0161,14.6426,-0.196625],313.228]"
"["M240Nest_DZ",[-5.95605,28.4531,2.69089],133.34]"
"["Hedgehog_DZ",[1.18359,29.1025,-0.0765686],341.904]"
"["LightPole_DZ",[19.2339,-22.0469,-1.94598],130.178]"
"["Land_HBarrier5_DZ",[25.1636,-15.1475,1.36615],314.189]"
"["Land_HBarrier5_DZ",[25.1636,-15.1475,2.56613],314.189]"
"["Land_HBarrier5_DZ",[25.1636,-15.1475,0.326141],314.189]"
"["MetalFloor_DZ",[-26.0264,13.9932,2.62024],315.811]"
"["WoodFloor_DZ",[-26.0264,13.9932,2.42023],315.777]"
"["LightPole_DZ",[23.6338,-17.8574,-1.89386],133.381]"
"["MetalPanel_DZ",[0.633789,29.6826,-0.533203],316.2]"
"["Sandbag1_DZ",[-27.5864,-11.0273,-0.32489],318.976]"
"["WoodFloor_DZ",[-29.6064,-3.37695,5.41879],226.875]"
"["WoodFloor_DZ",[-29.646,3.46289,5.42044],225.776]"
"["OutHouse_DZ",[-23.5762,18.4229,-0.534576],316.365]"
"["Land_HBarrier5_DZ",[12.3638,-27.3369,0.176605],315.846]"
"["Land_HBarrier5_DZ",[12.3638,-27.3369,1.18359],315.846]"
"["Land_HBarrier5_DZ",[12.4336,-27.4072,2.48489],315.811]"
"["WoodFloor_DZ",[-29.916,3.74316,2.41998],135.777]"
"["FoldChair",[-29.646,-5.76758,2.69241],116.801]"
"["WoodFloor_DZ",[-11.7764,27.8623,2.4205],135.777]"
"["MetalFloor_DZ",[-11.7764,27.8623,2.62048],135.811]"
"["Sandbag1_DZ",[21.7139,21.2227,0.207092],310.578]"
"["WoodFloor_DZ",[-30.2461,-3.04688,2.42099],135.777]"
"["WoodSmallWallThird_DZ",[-28.4863,-11.3369,-0.642059],317.128]"
"["WoodSmallWallWin_DZ",[-24.186,19.0127,-0.386108],136.225]"
"["Sandbag1_DZ",[-23.666,19.7627,2.7496],316.837]"
"["Sr_border",[-17.9663,-25.1377,-0.0950623],314.029]"
"["Land_HBarrier5_DZ",[28.7236,-11.457,0.360962],315.846]"
"["Land_HBarrier5_DZ",[28.7236,-11.457,2.56796],315.811]"
"["Land_HBarrier5_DZ",[28.7236,-11.457,1.36795],315.846]"
"["Sandbag1_DZ",[-23.9761,19.7832,-0.273224],137.826]"
"["WoodLargeWallWin_DZ",[-28.896,-11.4668,2.55023],315.777]"
"["Sandbag1_DZ",[2.27393,31.1328,-0.0148926],316.026]"
"["StorageShed_DZ",[-21.666,22.5625,-1.01529],228.028]"
"["Sandbag1_DZ",[-25.6763,17.8828,2.7514],316.837]"
"["Land_HBarrier1_DZ",[9.88379,-29.7373,1.91132],315.811]"
"["Sandbag1_DZ",[-29.3164,-11.207,2.75443],136.191]"
"["MetalPanel_DZ",[-26.0361,17.5332,-0.655853],132.684]"
"["MetalFloor_DZ",[-29.5864,10.5332,2.61996],315.811]"
"["WoodFloor_DZ",[-29.5864,10.5332,2.41995],315.777]"
"["MAP_vending_machine",[-30.6362,7.10254,2.65045],46.34]"
"["Sandbag1_DZ",[22.6235,21.8926,0.211304],315.42]"
"["WoodFloor_DZ",[-1.42627,31.4727,2.42004],135.777]"
"["MetalFloor_DZ",[-1.42627,31.4727,2.62006],135.811]"
"["Sandbag1_DZ",[-31.5161,-1.34766,-0.323517],316.35]"
"["WoodFloor_DZ",[-30.1265,-9.3877,5.42108],225.192]"
"["WoodSmallWallWin_DZ",[2.08398,31.4932,-0.386261],316.225]"
"["Sandbag1_DZ",[-22.8462,-21.7871,-0.292389],315.846]"
"["SmallTV",[-30.896,-6.79688,3.4281],4.01791]"
"["Land_Campfire_burning",[26.2637,-17.7969,0.361084],296.677]"
"["WoodSmallWallWin_DZ",[-27.5664,15.7725,-0.385925],316.225]"
"["Desk",[-31.166,-6.2373,2.58365],45.9313]"
"["Land_HBarrier3_DZ",[22.1235,22.8525,1.35745],310.578]"
"["Land_HBarrier3_DZ",[22.1235,22.8525,0.129456],310.578]"
"["Sandbag1_DZ",[-27.6763,15.7432,2.7486],313.207]"
"["WoodSmallWallWin_DZ",[-31.8262,-1.04688,-0.473328],316.64]"
"["WoodRamp_DZ",[-26.896,-17.3271,-0.306458],137.67]"
"["Sandbag1_DZ",[-23.6064,21.7129,2.74814],226.839]"
"["MAP_Misc_Boogieman",[18.8037,-26.0273,0.514191],300.992]"
"["WoodFloor_DZ",[-30.5762,-9.82715,2.42001],135.777]"
"["BagFenceRound_DZ",[-29.4961,-12.8076,-0.32251],325.923]"
"["Sandbag1_DZ",[-31.1362,8.1123,5.74902],44.9198]"
"["Sandbag1_DZ",[-28.3765,15.4824,-0.304596],132.807]"
"["Land_HBarrier5_DZ",[8.27393,-31.3076,0.130432],315.846]"
"["Land_HBarrier5_DZ",[8.27393,-31.3076,1.13742],315.846]"
"["WoodFloor_DZ",[-8.21631,31.3232,2.42047],135.777]"
"["MetalFloor_DZ",[-8.21631,31.3232,2.62048],135.811]"
"["MAP_c_fern",[-30.6064,10.6328,3.10724],243.199]"
"["Land_HBarrier1_DZ",[31.2036,-9.05762,1.99573],315.811]"
"["WoodLargeWallWin_DZ",[-31.3462,8.82324,2.55038],225.776]"
"["Sandbag1_DZ",[-29.5562,13.7432,2.75009],313.207]"
"["Hedgehog_DZ",[4.42383,32.4131,-0.0662231],357.495]"
"["WoodSmallWallWin_DZ",[-31.5464,8.74316,-0.472839],226.64]"
"["Land_HBarrier5_DZ",[-24.436,-21.8271,0.291992],316.06]"
"["Land_HBarrier5_DZ",[-24.436,-21.8271,1.29901],316.06]"
"["MetalFloor_DZ",[-22.1362,24.2432,2.62045],315.811]"
"["WoodFloor_DZ",[-22.1362,24.2432,2.42044],315.777]"
"["WoodSmallWallWin_DZ",[-24.1162,22.3232,-0.385468],46.2236]"
"["WoodFloor_DZ",[-32.9863,0.212891,5.42117],225.776]"
"["WoodCrate_DZ",[-30.7163,-12.0576,2.70428],133.381]"
"["MetalPanel_DZ",[3.94385,32.8232,-0.521423],138.141]"
"["LightPole_DZ",[21.9736,24.7725,-2.12665],259.148]"
"["CinderWallDoorSmallLocked_DZ",[25.9937,20.7129,-0.0858459],227.741]"
"["BagFenceRound_DZ",[-30.8765,-12.4072,5.64957],355.526]"
"["WoodLargeWallWin_DZ",[-30.9263,12.4424,-0.364105],315.056]"
"["CinderWall_DZ",[22.2939,24.793,-0.0858459],227.741]"
"["MetalFloor_DZ",[-18.5664,27.7129,2.62088],135.811]"
"["WoodFloor_DZ",[-18.5664,27.7129,2.4209],135.777]"
"["Wooden_shed_DZ",[-33.0962,4.84277,-0.405823],225.038]"
"["WoodFloor_DZ",[-33.4761,0.272461,2.42075],135.777]"
"["WoodFloor_DZ",[-32.9063,-6.54688,5.42093],225.776]"
"["Sandbag1_DZ",[-31.436,11.7324,2.75174],313.207]"
"["Sandbag1_DZ",[-31.0562,12.7129,-0.339691],139.189]"
"["WoodFloorHalf_DZ",[-31.7861,-11.0273,5.40845],135.194]"
"["Land_HBarrier5_DZ",[32.814,-7.4873,0.398499],315.846]"
"["Land_HBarrier5_DZ",[32.814,-7.4873,1.40549],315.846]"
"["MAP_washing_machine",[-32.396,9.23242,2.69168],44.4329]"
"["WoodFloor_DZ",[-33.0664,6.97266,5.42044],225.776]"
"["Sandbag1_DZ",[-31.5562,-12.1768,-0.322632],228.112]"
"["WoodSmallWallThird_DZ",[-31.9561,-11.207,-0.641663],47.1258]"
"["WoodFloor_DZ",[-33.146,7.0625,2.42075],315.777]"
"["BagFenceRound_DZ",[-26.436,-21.2471,-0.283173],356.22]"
"["CinderWall_DZ",[29.7036,16.6426,-0.0860291],227.741]"
"["Sandbag1_DZ",[-32.4463,10.7227,2.74799],313.887]"
"["Sandbag1_DZ",[-24.8164,-23.707,-0.291168],315.846]"
"["WoodLargeWallWin_DZ",[-32.3364,-11.5371,2.54968],45.7756]"
"["CinderWall_DZ",[18.5938,28.8623,-0.0857849],227.741]"
"["WoodFloor_DZ",[-33.8062,-6.50684,2.41977],135.777]"
"["DeerStand_DZ",[-28.6162,19.3926,-0.0696411],298.009]"
"["MetalFloor_DZ",[-15.0063,31.1729,2.62009],315.811]"
"["WoodFloor_DZ",[-15.0063,31.1729,2.4201],315.777]"
"["Sandbag1_DZ",[-26.0161,22.8232,-0.30069],45.7305]"
"["CanvasHut_DZ",[-33.8462,7.70313,6.17941],139.576]"
"["Sandbag1_DZ",[5.83398,34.293,0.00305176],318.609]"
"["WoodLadder_DZ",[-33.5762,9.1123,1.99146],313.706]"
"["MAP_Kitchenstove_Elec",[-33.3862,-9.86719,2.69095],223.601]"
"["BagFenceRound_DZ",[-33.0962,10.873,1.26178],138.418]"
"["Sandbag1_DZ",[-25.5361,23.7832,2.74866],225.851]"
"["BagFenceRound_DZ",[-33.1563,10.8828,1.8613],136.894]"
"["WoodChair",[-34.3164,-6.47754,2.69113],190.7]"
"["Sandbag1_DZ",[-33.6763,9.2832,2.75034],317.575]"
"["BagFenceRound_DZ",[-33.2163,10.9023,0.459839],133.938]"
"["BagFenceRound_DZ",[-33.2163,11.0029,-0.338715],139.189]"
"["MetalFloor_DZ",[2.13379,34.9424,2.62061],315.811]"
"["WoodFloor_DZ",[2.13379,34.9424,2.42062],315.777]"
"["WoodSmallWallWin_DZ",[5.39355,34.6631,-0.38562],316.225]"
"["WoodFloor_DZ",[-4.65625,34.793,2.42078],315.777]"
"["MetalFloor_DZ",[-4.65625,34.793,2.62076],315.811]"
"["Sandbag1_DZ",[-34.8262,-4.4668,-0.353485],317.533]"
"["MetalPanel_DZ",[-25.896,23.8623,-0.555603],47.3731]"
"["MAP_fridge",[-34.146,-8.97754,2.69067],45.3958]"
"["WoodSmallWallWin_DZ",[-35.1563,-4.19727,-0.473236],316.64]"
"["MAP_kitchen_table_a",[-34.9761,-5.56738,2.69058],134.574]"
"["Sandbag1_DZ",[-34.416,8.46289,5.74893],314.42]"
"["Land_HBarrier5_DZ",[33.104,12.6729,1.50119],225.846]"
"["Land_HBarrier5_DZ",[33.104,12.6729,0.495178],225.846]"
"["Land_HBarrier1_DZ",[-25.7363,-24.377,0.698334],252.597]"
"["M240Nest_DZ",[-35.0864,-5.14746,5.74304],225.083]"
"["Land_HBarrier5_DZ",[4.18359,-35.2773,1.08182],315.846]"
"["Land_HBarrier5_DZ",[4.18359,-35.2773,0.0748291],315.846]"
"["Land_HBarrier5_DZ",[-28.3262,-21.7568,1.32916],226.057]"
"["Land_HBarrier5_DZ",[-28.3262,-21.7568,0.322144],226.057]"
"["WoodLargeWallWin_DZ",[-34.7661,8.73242,2.55096],135.777]"
"["FoldTable",[-35.6064,4.62305,2.69171],316.103]"
"["Land_HBarrier5_DZ",[-23.9063,-26.7969,-0.306793],45.8458]"
"["Land_HBarrier5_DZ",[-23.9063,-26.7969,0.700195],45.8458]"
"["WoodFloorHalf_DZ",[-35.0762,-7.70703,5.40762],135.194]"
"["MAP_tv_a",[-35.6064,4.70313,3.4917],316.2]"
"["Land_DZE_WoodDoorLocked",[-34.8564,8.83301,-0.472382],136.64]"
"["MetalFloor_DZ",[27.3838,23.3926,3.17462],136.98]"
"["BagFenceRound_DZ",[-26.3662,-24.5771,-0.278229],351.877]"
"["GunRack_DZ",[-35.5864,5.88281,-0.225189],313.746]"
"["WoodSmallWallThird_DZ",[-35.2861,-7.61719,-0.641876],47.1258]"
"["Sandbag1_DZ",[-35.1162,-8.39746,-0.386841],47.239]"
"["MAP_lobby_chair",[-36.1162,1.47266,2.69141],258.429]"
"["CinderWall_DZ",[14.8936,32.9424,-0.0861206],227.741]"
"["MetalFloor_DZ",[23.7837,27.2529,3.1665],136.98]"
"["Sandbag1_DZ",[7.32373,35.6924,0.0206604],316.244]"
"["BagFenceRound_DZ",[-32.5962,16.3027,-0.323669],134.184]"
"["WoodCrate_DZ",[-36.186,4.37305,-0.402924],315.386]"
"["WoodFloor_DZ",[-36.3262,-3.03711,5.42047],45.7756]"
"["Sandbag1_DZ",[-35.7061,7.42285,2.75128],317.575]"
"["WoodFloor_DZ",[-11.4463,34.6426,2.42059],315.777]"
"["MetalFloor_DZ",[-11.4463,34.6426,2.62057],315.811]"
"["WoodLargeWallWin_DZ",[-35.5664,-8.2168,2.5499],45.7756]"
"["FlagCarrierUSA",[-36.1763,5.3623,5.81516],287.168]"
"["WoodFloor_DZ",[-36.4063,3.72266,5.42111],225.776]"
"["MetalFloor_DZ",[30.9839,19.5332,3.18381],136.98]"
"["WoodShack_DZ",[-36.6162,1.95313,-0.264832],313.095]"
"["Land_HBarrier5_DZ",[-32.146,-17.7969,1.35828],46.0571]"
"["Land_HBarrier5_DZ",[-32.146,-17.7969,0.351257],46.0571]"
"["Land_HBarrier5_DZ",[-19.936,-30.8877,0.747437],45.8458]"
"["Land_HBarrier5_DZ",[-19.936,-30.8877,-0.259552],45.8458]"
"["Sandbag1_DZ",[-28.1162,-23.8076,-0.364014],47.0026]"
"["WoodFloor_DZ",[-36.7061,3.59277,2.42075],135.777]"
"["Land_HBarrier5_DZ",[36.9038,-3.51758,0.436096],315.846]"
"["Land_HBarrier5_DZ",[36.9038,-3.51758,1.44308],315.846]"
"["Sandbag1_DZ",[-29.9961,-21.7969,-0.362518],47.0026]"
"["MetalFloor_DZ",[20.1836,31.1123,3.15778],136.98]"
"["MAP_picture_a_05",[-36.3662,-7.47754,3.69],47.3369]"
"["WoodFloor_DZ",[-37.0361,-3.1875,2.42023],135.777]"
"["MetalFloor_DZ",[32.7837,17.5928,3.19247],136.98]"
"["GunRack_DZ",[-36.9063,-4.82715,-0.426147],226.839]"
"["GunRack_DZ",[6.104,36.7324,-0.0689087],44.5849]"
"["MetalPanel_DZ",[7.94385,36.3828,-0.519928],314.882]"
"["Sandbag1_DZ",[-36.7461,-6.61719,-0.39856],48.5428]"
"["Sandbag1_DZ",[-27.936,24.793,-0.302612],45.7305]"
"["MetalPanel_DZ",[-36.666,7.39258,-0.63208],137.3]"
"["WoodSmallWallWin_DZ",[-27.2861,25.6328,-0.386169],46.2236]"
"["WoodFloor_DZ",[-25.3564,27.5625,2.42032],315.777]"
"["MetalFloor_DZ",[-25.3564,27.5625,2.6203],315.811]"
"["WoodSmallWall_DZ",[7.87354,36.6523,-0.428864],315.356]"
"["Sandbag1_DZ",[-31.8662,-19.7773,-0.360962],47.0026]"
"["Misc_Wall_lamp",[-36.9961,-6.25684,4.69284],223.659]"
"["Sandbag1_DZ",[-36.7764,7.5332,-0.373566],137.972]"
"["CinderWallDoorLocked_DZ",[33.7036,16.623,-0.0972595],316.98]"
"["Sandbag1_DZ",[-27.4561,25.7627,2.7496],225.851]"
"["WoodCrate_DZ",[-37.6064,-3.75684,-0.411316],227.59]"
"["LightPole_DZ",[-37.3765,6.07324,4.1647],23.5873]"
"["Sandbag1_DZ",[7.90381,37.083,0.0375671],321.165]"
"["WoodFloor_DZ",[-21.7964,31.0332,2.42023],315.777]"
"["MetalFloor_DZ",[-21.7964,31.0332,2.62024],315.811]"
"["Sandbag1_DZ",[7.96387,37.1025,1.22836],321.188]"
"["Sandbag1_DZ",[7.96387,37.1025,0.828369],321.188]"
"["Sandbag1_DZ",[8.69385,36.9932,0.0402832],314.194]"
"["Sandbag1_DZ",[8.08398,37.1523,1.88],320.466]"
"["Land_HBarrier5_DZ",[37.0737,8.58301,0.48761],225.846]"
"["Land_HBarrier5_DZ",[37.0737,8.58301,1.4946],225.846]"
"["WoodFloorQuarter_DZ",[6.104,37.583,2.55609],44.9889]"
"["Sandbag1_DZ",[-33.7461,-17.7676,-0.359467],47.0026]"
"["Sandbag1_DZ",[-37.7363,5.57324,2.75305],317.575]"
"["Generator_DZ",[5.36377,37.873,-0.0719604],43.1012]"
"["StorageShed_DZ",[-22.4663,30.9824,-0.941772],312.295]"
"["WoodFloor_DZ",[-1.09619,38.2627,2.42035],135.777]"
"["MetalFloor_DZ",[-1.09619,38.2627,2.62033],135.811]"
"["WoodSmallWallWin_DZ",[5.46387,37.9727,-0.38559],226.224]"
"["MetalFloor_DZ",[-4.09619,-38.1973,-0.313049],227.793]"
"["MetalFloor_Preview_DZ",[-4.09619,-38.1973,6.68695],227.793]"
"["VaultStorageLocked",[-38.3462,-2.60742,-0.431671],226.467]"
"["MetalFloor_Preview_DZ",[-4.16602,-38.2168,-0.2323],228.453]"
"["Land_HBarrier5_DZ",[-15.9663,-34.9775,0.782867],45.8458]"
"["Land_HBarrier5_DZ",[-15.9663,-34.9775,-0.224121],45.8458]"
"["Land_HBarrier5_DZ",[-35.9561,-13.8369,1.38794],46.0571]"
"["Land_HBarrier5_DZ",[-35.9561,-13.8369,0.38092],46.0571]"
"["WoodSmallWallWin_DZ",[-38.186,5.69238,-0.472961],136.64]"
"["WoodFloorHalf_DZ",[-38.3662,-4.4668,5.40854],135.777]"
"["CinderWallDoorSmallLocked_DZ",[11.1938,37.0127,-0.0856323],227.741]"
"["WoodLargeWallWin_DZ",[-38.3164,5.27246,2.55045],135.777]"
"["WoodSmallWallWin_DZ",[-38.4663,-4.09766,-0.472717],226.64]"
"["MetalFloor_DZ",[16.5737,34.9727,3.14908],136.98]"
"["Sandbag1_DZ",[8.34375,37.8232,2.37451],314.475]"
"["MetalFloor_DZ",[5.69385,38.4023,2.62054],135.811]"
"["WoodFloor_DZ",[5.69385,38.4023,2.42053],135.777]"
"["Sandbag1_DZ",[-38.5664,-4.55762,-0.400696],48.5428]"
"["MetalFloor_DZ",[-7.88623,38.1123,2.62051],135.811]"
"["WoodFloor_DZ",[-7.88623,38.1123,2.4205],135.777]"
"["Sandbag1_DZ",[-35.686,-15.5869,-0.463196],46.6805]"
"["WoodStairs_DZ",[-38.9761,0.472656,-0.492523],227.177]"
"["MetalFloor_DZ",[-18.2363,34.4932,2.62085],315.811]"
"["WoodFloor_DZ",[-18.2363,34.4932,2.42087],315.777]"
"["Sandbag1_DZ",[-38.3462,-7.2168,-0.391785],319.286]"
"["WoodFloorQuarter_DZ",[6.97363,38.4531,2.75894],45.9262]"
"["WoodLargeWallWin_DZ",[-38.7964,-4.89746,2.55069],45.7756]"
"["FuelPump_DZ",[4.02393,38.9727,-0.0971375],43.394]"
"["StorageShed_DZ",[-19.9863,33.7031,-1.02856],313.609]"
"["Land_HBarrier5_DZ",[0.09375,-39.2471,1.01483],315.846]"
"["Land_HBarrier5_DZ",[0.09375,-39.2471,0.00784302],315.846]"
"["WorkBench_DZ",[-39.666,-1.26758,-0.435669],280.082]"
"["FireBarrel_DZ",[-18.6362,35.0732,-0.308777],316.089]"
"["WoodSmallWallWin_DZ",[-27.2163,28.9424,-0.385529],136.225]"
"["WoodFloor_DZ",[-39.7363,0.472656,5.42102],225.776]"
"["Sandbag1_DZ",[-38.7461,-9.32715,-0.393921],227.798]"
"["Sandbag1_DZ",[-39.7661,3.71289,2.75388],317.575]"
"["BagFenceRound_DZ",[-29.3564,27.0928,-0.311005],87.2404]"
"["Sandbag1_DZ",[-37.5664,-13.5869,-0.461487],46.6805]"
"["Sandbag1_DZ",[-23.5464,32.3027,2.7493],315.763]"
"["WoodSmallWallWin_DZ",[-23.9063,32.1123,-0.385315],136.225]"
"["BagFenceRound_DZ",[8.48389,39.1328,0.0114441],33.967]"
"["MetalPanel_DZ",[-25.6563,30.7432,-0.574249],136.49]"
"["WoodFloorQuarter_DZ",[7.79395,39.2832,2.95609],44.291]"
"["Sandbag1_DZ",[-39.8062,-5.4375,-0.45993],141.215]"
"["WoodShack_DZ",[6.29395,39.7031,0.0686951],139.879]"
"["MAP_library_a",[-40.1265,-2.89746,2.66272],45.0681]"
"["MetalPanel_DZ",[-40.0562,4.3623,-0.652405],136.697]"
"["MetalPanel_DZ",[-40.2461,-2.53711,-0.675781],46.2236]"
"["Sandbag1_DZ",[-40.0962,4.47266,-0.391602],137.409]"
"["Land_HBarrier5_DZ",[-39.8164,-7.01758,1.41083],320.634]"
"["Land_HBarrier5_DZ",[-39.8164,-7.01758,0.00384521],320.634]"
"["Sandbag1_DZ",[-40.5361,-2.37695,-0.409668],46.0269]"
"["Sandbag1_DZ",[-28.0762,29.3525,-0.303223],136.904]"
"["MetalPanel_DZ",[-22.3862,33.9229,-0.629425],136.404]"
"["Sandbag1_DZ",[-26.0664,31.2324,-0.301117],136.904]"
"["MetalFloor_DZ",[-14.6763,37.9629,2.62009],135.811]"
"["WoodFloor_DZ",[-14.6763,37.9629,2.42007],135.777]"
"["WoodSmallWallWin_DZ",[-20.5962,35.2832,-0.385315],136.225]"
"["Land_HBarrier5_DZ",[-11.9961,-39.0674,-0.178925],45.8458]"
"["Land_HBarrier5_DZ",[-11.9961,-39.0674,0.828064],45.8458]"
"["Sandbag1_DZ",[-24.0562,33.1025,-0.299988],136.904]"
"["WoodFloorQuarter_DZ",[-40.8462,2.55273,2.39099],225.615]"
"["MetalFloor_DZ",[12.9736,38.833,3.14111],136.98]"
"["Land_HBarrier5_DZ",[40.9839,0.462891,0.474091],315.846]"
"["Land_HBarrier5_DZ",[40.9839,0.462891,1.48108],315.846]"
"["Land_HBarrier5_DZ",[-39.8462,-10.0469,1.38785],44.4574]"
"["Land_HBarrier5_DZ",[-39.8462,-10.0469,0.160858],44.4574]"
"["WoodFloorHalf_DZ",[-41.1162,-0.697266,2.38467],316.64]"
"["Land_HBarrier5_DZ",[41.0439,4.49316,0.481079],225.846]"
"["Land_HBarrier5_DZ",[41.0439,4.49316,1.4881],225.846]"
"["MetalFloor_DZ",[31.2437,26.9932,3.18375],136.98]"
"["Sandbag1_DZ",[-22.0464,34.9824,-0.298889],136.904]"
"["WoodSmallWallDoor_DZ",[2.28369,41.293,-0.385803],46.2236]"
"["Sandbag1_DZ",[-39.7261,-11.5469,-0.441833],44.5505]"
"["MetalFloor_DZ",[27.6436,30.8525,3.17462],136.98]"
"["WoodFloorHalf_DZ",[-41.4961,-1.22754,5.40884],135.777]"
"["CinderWall_DZ",[7.27393,40.8926,-0.0970154],226.982]"
"["WorkBench_DZ",[-41.4263,-3.36719,-0.46521],137.48]"
"["WoodSmallWallWin_DZ",[-41.5264,2.54297,-0.473053],136.64]"
"["WoodSmallWallWin_DZ",[-41.6162,-0.767578,-0.473145],46.6397]"
"["Sandbag1_DZ",[5.88379,41.2227,2.74911],46.34]"
"["MetalPanel_DZ",[-19.0962,37.123,-0.62793],136.428]"
"["MetalFloor_DZ",[2.46387,41.7227,2.62067],315.811]"
"["WoodFloor_DZ",[2.46387,41.7227,2.42065],315.777]"
"["MetalFloor_DZ",[-4.32617,41.5732,2.62006],315.811]"
"["WoodFloor_DZ",[-4.32617,41.5732,2.42004],315.777]"
"["MetalFloor_DZ",[34.8438,23.1328,3.19165],136.98]"
"["Sandbag1_DZ",[-41.7964,1.85254,2.75571],317.575]"
"["FireBarrel_DZ",[-6.29639,-41.4268,-0.101532],170.387]"
"["WoodLargeWallWin_DZ",[-41.8862,1.80273,2.55029],135.777]"
"["Sandbag1_DZ",[-20.0361,36.8623,-0.296783],136.904]"
"["WoodLargeWallWin_DZ",[-42.0264,-1.57715,2.55048],45.7756]"
"["Sandbag1_DZ",[6.11377,41.6826,2.85126],226.294]"
"["Sandbag1_DZ",[-22.3862,35.7227,2.74857],224.915]"
"["WoodSmallWallWin_DZ",[-17.2861,38.4531,-0.3862],136.225]"
"["MetalFloor_DZ",[24.0439,34.7129,3.16693],136.98]"
"["Sandbag1_DZ",[6.44385,41.7832,2.85162],224.772]"
"["MetalFloor_DZ",[36.6436,21.2031,3.20023],136.98]"
"["Sandbag1_DZ",[-42.4463,-0.397461,-0.411713],46.0269]"
"["Sandbag1_DZ",[-41.8765,-7.11719,-0.486298],141.049]"
"["FireBarrel_DZ",[-42.3462,-3.91699,-0.476044],100.474]"
"["Sandbag1_DZ",[-16.1763,39.4229,2.75046],315.567]"
"["Sandbag1_DZ",[-18.0361,38.7432,-0.295319],136.904]"
"["Sandbag1_DZ",[-41.686,-9.61719,-0.440887],44.5505]"
"["Sandbag1_DZ",[4.63379,42.5332,2.75412],45.5704]"
"["Garbage_can",[-42.8662,0.222656,2.53018],280.241]"
"["CinderWallDoorLocked_DZ",[37.7236,20.373,-0.0966187],316.98]"
"["MetalFloor_DZ",[-11.1162,41.4326,2.62021],315.811]"
"["WoodFloor_DZ",[-11.1162,41.4326,2.4202],315.777]"
"["BagFenceRound_DZ",[-42.2861,-8.99707,-0.449493],49.7457]"
"["Sandbag1_DZ",[-19.2861,38.7129,2.74951],44.7275]"
"["MetalPanel_DZ",[-15.7861,40.2832,-0.615875],136.971]"
"["Land_HBarrier5_DZ",[-3.99609,-43.2168,0.940765],315.846]"
"["Land_HBarrier5_DZ",[-3.99609,-43.2168,-0.0662231],315.846]"
"["WoodFloor_DZ",[-21.4663,37.8125,2.42072],315.777]"
"["MetalFloor_DZ",[20.4336,38.5732,3.15811],136.98]"
"["Sandbag1_DZ",[-16.0264,40.623,-0.294586],136.904]"
"["MetalFloor_DZ",[9.37354,42.6924,3.13205],46.9821]"
"["Sandbag1_DZ",[4.21387,43.6729,2.85043],226.294]"
"["Land_HBarrier5_DZ",[-8.02637,-43.1572,0.881989],45.8458]"
"["Land_HBarrier5_DZ",[-8.02637,-43.1572,-0.125],45.8458]"
"["WoodSmallWallWin_DZ",[-13.9761,41.6328,-0.38562],136.225]"
"["LightPole_DZ",[-12.2861,42.1729,-3.47174],135.943]"
"["Sandbag1_DZ",[4.39355,43.9131,2.8494],227.882]"
"["BagFenceRound_DZ",[-44.3262,0.922852,-0.411255],91.2661]"
"["Fence_corrugated_DZ",[-43.9761,-6.09766,-0.458496],48.2952]"
"["Sandbag1_DZ",[2.71387,44.4932,2.75308],45.5704]"
"["WoodSmallWallWin_DZ",[-0.876465,44.5928,-0.385712],226.224]"
"["MetalFloor_Preview_DZ",[-13.7061,-42.4473,5.66183],42.8526]"
"["MetalFloor_DZ",[-13.7061,-42.4473,-0.338165],42.8526]"
"["BagFenceRound_DZ",[-44.7163,-1.32715,-0.416229],134.365]"
"["Sandbag1_DZ",[-14.0161,42.5029,-0.286926],136.904]"
"["MetalFloor_DZ",[-1.02637,44.7529,2.61423],226.214]"
"["CinderWallDoorway_DZ",[3.68359,44.8623,-0.129303],226.798]"
"["FireBarrel_DZ",[-0.436035,45.043,-0.157745],289.25]"
"["WoodFloor_DZ",[-0.766113,45.043,2.42078],135.777]"
"["MetalPanel_DZ",[-12.4263,43.4531,-0.599823],136.697]"
"["WoodFloor_DZ",[-7.55615,44.8926,2.42078],135.777]"
"["MetalFloor_DZ",[-7.55615,44.8926,2.62076],135.811]"
"["Sandbag1_DZ",[2.08398,45.583,2.7515],44.0667]"
"["LightPole_DZ",[0.653809,45.6328,-3.24414],134.897]"
"["MetalFloor_DZ",[16.834,42.4326,3.1488],136.98]"
"["Sandbag1_DZ",[-12.5762,43.9629,-0.236481],134.927]"
"["Sandbag1_DZ",[2.64355,45.7529,2.88223],228.306]"
"["MetalPanel_DZ",[0.354004,45.9424,-0.62558],320.493]"
"["WoodSmallWallWin_DZ",[-10.666,44.8027,-0.385986],136.225]"
"["Sandbag1_DZ",[0.243652,46.1729,1.38986],141.804]"
"["Sandbag1_DZ",[0.133789,46.2324,0.588104],142.297]"
"["Sandbag1_DZ",[0.153809,46.2529,-0.111725],141.537]"
"["Sandbag1_DZ",[-11.5063,44.9424,-0.210236],134.907]"
"["Sandbag1_DZ",[0.783691,46.4531,2.75192],45.5704]"
"["Sandbag1_DZ",[-1.98633,46.5127,1.48605],226.477]"
"["MetalFloor_DZ",[35.104,30.5928,3.19193],136.98]"
"["Sandbag1_DZ",[-2.00635,46.583,0.685425],227.58]"
"["Sandbag1_DZ",[-1.96631,46.6426,-0.114319],227.208]"
"["MetalFloor_DZ",[31.5039,34.4531,3.18381],136.98]"
"["MetalFloor_DZ",[5.77393,46.5527,3.14096],316.98]"
"["LightPole_DZ",[2.74365,46.9023,-2.82507],84.7018]"
"["BagFenceRound_DZ",[0.903809,46.9824,1.49518],142.948]"
"["BagFenceRound_DZ",[0.793945,46.9932,-0.106384],139.65]"
"["BagFenceRound_DZ",[0.883789,47.0127,0.694763],143.65]"
"["MetalFloor_DZ",[38.7139,26.7324,3.20108],136.98]"
"["BagFenceRound_DZ",[1.02393,47.1328,2.25912],155.912]"
"["MetalFloor_DZ",[27.9038,38.3125,3.17538],136.98]"
"["WoodCrate_DZ",[-4.59619,47.2725,-0.215881],44.5407]"
"["MetalFloor_DZ",[40.5137,24.8027,3.20889],136.98]"
"["Sandbag1_DZ",[2.63379,47.4629,2.58139],317.566]"
"["MetalPanel_DZ",[-9.18604,46.6729,-0.58606],136.62]"
"["FuelPump_DZ",[-35.9961,-31.1074,-0.471039],311.139]"
"["Sandbag1_DZ",[-9.55615,46.8926,-0.211426],134.907]"
"["WoodFloor_DZ",[-24.6963,41.1328,2.42035],315.777]"
"["WoodSmallWallWin_DZ",[-4.04639,47.9023,-0.385254],226.224]"
"["MetalFloor_DZ",[13.2339,46.293,3.14072],46.9821]"
"["CinderWallDoorLocked_DZ",[41.7539,24.1328,-0.097168],316.98]"
"["Sandbag1_DZ",[-1.13623,48.4229,2.74991],45.5704]"
"["MetalFloor_DZ",[-3.98633,48.3623,2.62045],315.811]"
"["WoodFloor_DZ",[-3.98633,48.3623,2.42047],315.777]"
"["WoodSmallWallWin_DZ",[-7.35645,47.9727,-0.385376],136.225]"
"["BagFenceRound_DZ",[-18.5063,44.873,-0.26532],320.76]"
"["MetalFloor_DZ",[24.3037,42.1729,3.16617],136.98]"
"["MetalPanel_DZ",[-4.18604,48.583,-0.605225],226.457]"
"["Sandbag1_DZ",[-27.2163,40.4824,2.75085],225.147]"
"["MAP_t_fagus2f",[-48.8164,0.0732422,0.517548],106.675]"
"["Sandbag1_DZ",[3.79395,48.7529,2.57007],317.845]"
"["CinderWall_DZ",[3.66357,48.8125,-0.0973816],136.98]"
"["Sandbag1_DZ",[-3.87646,48.833,-0.148163],230.974]"
"["Sandbag1_DZ",[36.2939,33.4229,2.59085],47.5593]"
"["Sandbag1_DZ",[34.2236,35.5527,2.59045],47.5593]"
"["BagFenceRound_DZ",[-20.416,44.9932,-0.295776],48.4636]"
"["Sandbag1_DZ",[38.3237,31.2129,2.59128],47.5593]"
"["Sandbag1_DZ",[-7.61621,48.8428,-0.213654],134.907]"
"["Sandbag1_DZ",[32.1938,37.7627,2.59116],47.5593]"
"["Sandbag1_DZ",[40.3438,28.9932,2.59067],47.5593]"
"["Sandbag1_DZ",[-23.9961,43.5527,2.75058],44.0181]"
"["Sandbag1_DZ",[4.83398,49.5332,2.62994],317.972]"
"["CinderWall_DZ",[38.1338,32.043,-0.0972595],226.982]"
"["CinderWall_DZ",[34.3735,36.0625,-0.0975342],226.982]"
"["LightPole_DZ",[-19.4463,45.9424,1.2139],132.972]"
"["Sandbag1_DZ",[30.1436,39.9326,2.59082],47.5593]"
"["Sandbag1_DZ",[-3.70605,49.9131,-0.143738],317.736]"
"["Sandbag1_DZ",[42.4536,26.8232,2.59116],47.3886]"
"["BagFenceRound_DZ",[-18.3662,46.7432,-0.270325],231.611]"
"["BagFenceRound_DZ",[-5.48633,50.0732,-0.190918],181.511]"
"["CinderWall_DZ",[41.8838,28.0225,-0.0970459],226.982]"
"["CinderWall_DZ",[30.6235,40.0928,-0.0967407],226.982]"
"["MetalFloor_DZ",[2.17383,50.4131,3.14987],316.98]"
"["MetalFloor_DZ",[20.6938,46.0332,3.15744],136.98]"
"["Sandbag1_DZ",[-3.06641,50.3828,2.74884],45.5704]"
"["Sandbag1_DZ",[-5.00635,50.4023,2.74991],315.567]"
"["Sandbag1_DZ",[28.1235,42.1426,2.59039],47.5593]"
"["BagFenceRound_DZ",[-20.3564,46.833,-0.302246],138.656]"
"["MetalFloor_DZ",[9.63379,50.1523,3.14963],46.9821]"
"["Sandbag1_DZ",[26.104,44.3623,2.59094],47.5593]"
"["Sandbag1_DZ",[-29.1563,42.4326,2.74924],225.147]"
"["CinderWall_DZ",[26.8638,44.1123,-0.0969543],226.982]"
"["Sandbag1_DZ",[7.06396,51.543,2.63004],317.972]"
"["Sandbag1_DZ",[24.0137,46.4824,2.59052],47.5697]"
"["Sandbag1_DZ",[-25.9761,45.4629,2.74893],44.0181]"
"["WoodFloor_DZ",[-27.9263,44.4531,2.42111],315.777]"
"["MetalFloor_DZ",[17.0938,49.8926,3.14935],46.9821]"
"["FuelPump_DZ",[8.25391,52.4727,-0.096405],317.114]"
"["CinderWall_DZ",[7.69385,52.5625,-0.0968628],136.98]"
"["CinderWall_DZ",[23.1138,48.1426,-0.097168],226.982]"
"["Sandbag1_DZ",[21.9839,48.7031,2.59103],47.5697]"
"["FuelPump_DZ",[44.6235,30.3125,0.353821],223.053]"
"["BagFenceRound_DZ",[-31.4761,43.8232,2.74896],178.678]"
"["Sandbag1_DZ",[9.29395,53.543,2.63016],317.972]"
"["MetalFloor_DZ",[6.03369,54.0127,3.15854],316.98]"
"["WoodLadder_DZ",[9.51367,53.5127,-0.0737],317.878]"
"["Sandbag1_DZ",[19.9639,50.9131,2.59076],47.5697]"
"["BagFenceRound_DZ",[-27.2764,47.8027,2.74945],92.0019]"
"["MetalFloor_DZ",[13.4937,53.7529,3.15826],46.9821]"
"["CinderWall_DZ",[19.354,52.1631,-0.0964355],226.982]"
"["SandNest_DZ",[-35.2964,43.3623,2.87384],42.4627]"
"["Sandbag1_DZ",[-36.146,42.7529,2.74869],225.645]"
"["Sandbag1_DZ",[17.9438,53.123,2.59055],47.5697]"
"["WoodFloor_DZ",[-34.7163,44.3027,2.42075],135.777]"
"["Sandbag1_DZ",[11.354,55.583,2.57062],317.845]"
"["WoodFloor_DZ",[-31.1563,47.7627,2.42096],315.777]"
"["CinderWall_DZ",[11.7139,56.3232,-0.0964966],136.98]"
"["Sandbag1_DZ",[15.9136,55.3428,2.59045],47.5697]"
"["WoodFloor_DZ",[-27.5864,51.2324,2.42096],135.777]"
"["Sandbag1_DZ",[12.6938,56.8027,2.57022],317.845]"
"["CinderWall_DZ",[15.604,56.1826,-0.0967102],226.982]"
"["Sandbag1_DZ",[14.9038,56.4531,2.57077],47.5697]"
"["MetalFloor_DZ",[9.89355,57.6123,3.16721],316.98]"
"["SandNest_DZ",[-26.8662,51.9326,2.87433],225.936]"
"["Sandbag1_DZ",[-34.416,47.2832,2.74997],315.787]"
"["Sandbag1_DZ",[-26.0464,52.6631,2.74905],44.5113]"
"["LightPole_DZ",[13.6938,57.3828,-2.98068],172.262]"
"["Sandbag1_DZ",[-30.4663,51.123,2.74997],315.787]"
"["LightPole_DZ",[6.12354,59.8027,1.21112],172.625]"
"["BagFenceRound_DZ",[6.27393,60.0127,-0.0744629],309.666]"
"["FuelPump_DZ",[20.5439,58.1826,0.00973511],226.726]"
"["WoodCrate_DZ",[19.4639,59.4824,0.0149841],228.808]"
"["DeerStand_DZ",[-57.5264,-34.207,0.388519],77.0299]"
"========= Copying Objects [end] ========="

Link to comment
Share on other sites

BCBaseList = [


[
"base1",
"Dave Base",
[0,23,0],
[
["BagFenceRound_DZ",[-2.26611,-1.59766,0.0572815],268.101],
["BagFenceRound_DZ",[1.96387,2.38281,0.0755615],341.326],
["LightPole_DZ",[1.20361,3.19238,-2.52496],134.029],
["LightPole_DZ",[-3.40625,-0.916992,-2.27927],133.396],
["Sandbag1_DZ",[-3.65625,-1.69727,1.44235],311.378],
["Sandbag1_DZ",[1.89355,3.59277,1.57242],319.175],
["Sandbag1_DZ",[-3.30615,-3.15723,-0.0269165],320.918],
["Land_HBarrier5_DZ",[-4.63623,-2.74707,1.25101],316.06],
["Land_HBarrier5_DZ",[-4.63623,-2.74707,0.144012],316.06],
["Sandbag1_DZ",[3.71387,3.96289,0.0872498],314.44],
["Land_HBarrier5_DZ",[2.89355,4.66309,1.25363],316.702],
["Land_HBarrier5_DZ",[2.89355,4.66309,0.246643],316.702],
["ParkBench_DZ",[-3.06641,-4.86719,0.00735474],314.778],
["Sandbag1_DZ",[-4.75635,-4.35742,-0.0466003],315.924],
["OutHouse_DZ",[5.04395,4.0332,-0.180023],313.467],
["Sandbag1_DZ",[5.80371,5.99316,0.0969849],316.712],
["FireBarrel_DZ",[6.73389,5.20313,0.0359802],308.406],
["Sandbag1_DZ",[-6.73633,-6.26758,-0.0735168],315.924],
["HeliH",[-4.24609,8.44238,-0.0961609],49.9137],
["Land_HBarrier5_DZ",[-8.59619,-6.56738,0.174225],316.06],
["Land_HBarrier5_DZ",[-8.59619,-6.56738,1.18121],316.06],
["Land_HBarrier5_DZ",[6.89355,8.43262,1.22333],316.702],
["Land_HBarrier5_DZ",[6.89355,8.43262,0.216309],316.702],
["TentStorageDomed",[8.66357,6.71289,0.0466309],310.249],
["Sandbag1_DZ",[7.80371,7.88281,0.0985107],316.712],
["Sandbag1_DZ",[-8.70605,-8.1875,-0.100281],315.924],
["Sandbag1_DZ",[10.0137,9.8623,0.120575],319.046],
["Sandbag1_DZ",[-10.686,-10.0977,-0.127197],315.924],
["BagFenceRound_DZ",[-14.2861,4.35254,2.74887],259.799],
["Sandbag1_DZ",[-15.4263,2.1123,2.7525],136.191],
["Land_HBarrier5_DZ",[-12.5562,-10.377,0.203369],316.06],
["Land_HBarrier5_DZ",[-12.5562,-10.377,1.21039],316.06],
["Land_HBarrier5_DZ",[10.9038,12.2031,1.26468],136.702],
["Land_HBarrier5_DZ",[10.9038,12.2031,0.187683],136.702],
["Sandbag1_DZ",[12.084,11.6631,0.121338],319.046],
["MetalFloor_DZ",[-16.3364,4.04297,2.62039],135.811],
["WoodFloor_DZ",[-16.3364,4.04297,2.42041],135.777],
["Sandbag1_DZ",[-17.4063,0.212891,2.75153],136.191],
["Sandbag1_DZ",[-12.6563,-12.0068,-0.153961],315.924],
["ParkBench_DZ",[-18.8862,0.5625,-0.210571],225.57],
["BagFenceRound_DZ",[-18.9561,-2.10742,-0.160522],266.363],
["Sandbag1_DZ",[-19.396,-1.69727,2.74948],136.191],
["Sandbag1_DZ",[14.1235,13.7324,0.149109],311.977],
["MAP_Misc_WellPump",[-13.5864,14.3525,-0.242523],340.782],
["MetalFloor_DZ",[-19.896,0.573242,2.6207],135.811],
["WoodFloor_DZ",[-19.896,0.573242,2.42072],135.777],
["WoodCrate_DZ",[-14.666,13.7627,-0.175201],311.652],
["Sandbag1_DZ",[-20.1265,-0.407227,-0.181427],226.9],
["Sandbag1_DZ",[-14.6362,-13.9268,-0.180847],315.924],
["WoodRamp_DZ",[-5.38623,19.8125,-0.191101],226.219],
["Sandbag1_DZ",[-20.1265,-4.14746,-0.255432],317.779],
["Sandbag1_DZ",[-14.2163,15.2324,-0.136108],315.154],
["WoodFloor_DZ",[-19.5664,7.35254,2.42053],135.777],
["MetalFloor_DZ",[-19.5664,7.35254,2.62051],135.811],
["WoodSmallWallWin_DZ",[-14.4663,15.4932,-0.386505],316.225],
["WoodSmallWallThird_DZ",[-21.1763,-1.20703,-0.641693],227.126],
["BagFenceRound_DZ",[-16.1362,14.1523,-0.175201],356.501],
["Sandbag1_DZ",[-20.9863,-5.02734,-0.26712],317.802],
["FireBarrel_DZ",[-21.3262,-3.30762,-0.271729],78.1699],
["Sandbag1_DZ",[-21.3765,-3.59766,2.74857],136.191],
["WoodLargeWallWin_DZ",[-21.6563,-1.1377,2.55078],225.776],
["Land_HBarrier5_DZ",[-16.5161,-14.1973,0.232605],316.06],
["Land_HBarrier5_DZ",[-16.5161,-14.1973,1.23962],316.06],
["WoodSmallWallThird_DZ",[-21.3062,-4.67676,-0.642456],317.128],
["Land_DZE_GarageWoodDoorLocked",[-11.1064,18.793,-0.371124],315.415],
["Land_HBarrier5_DZ",[14.9038,15.9824,0.216461],316.702],
["Land_HBarrier5_DZ",[14.9038,15.9824,1.31345],316.702],
["BagFenceRound_DZ",[-21.8765,0.913086,-0.219208],183.026],
["WoodCrate_DZ",[-16.0562,14.9932,-0.195099],226.113],
["MAP_P_bath",[-22.1064,-1.54688,2.71265],45.3809],
["WoodLargeWallWin_DZ",[-21.8262,-4.56738,2.55048],315.777],
["Sandbag1_DZ",[16.1738,15.833,0.148865],317.722],
["Sandbag1_DZ",[-7.61621,21.6025,-0.0804138],316.074],
["Sandbag1_DZ",[-16.6162,-15.8369,-0.207764],315.924],
["GunRack_DZ",[-16.8364,15.8027,-0.223724],226.614],
["MAP_P_Basin_A",[-23.2363,-0.137695,3.19131],183.951],
["Hanged",[-22.2563,-6.81738,0.0816345],317.281],
["WoodSmallWallWin_DZ",[-7.84619,21.9727,-0.385529],316.225],
["MAP_lekarnicka",[-22.666,-5.69727,3.99106],133.376],
["LightPole_DZ",[-9.13623,21.5225,-3.62408],315.694],
["WoodFloor_DZ",[-23.1265,3.89258,2.42053],135.777],
["MetalFloor_DZ",[-23.1265,3.89258,2.62051],135.811],
["Hedgehog_DZ",[-5.44629,22.9023,-0.111908],326.579],
["MetalFloor_DZ",[-15.6763,17.6025,2.62006],135.811],
["WoodFloor_DZ",[-15.6763,17.6025,2.42004],135.777],
["WoodSmallWallWin_DZ",[-17.7764,15.5625,-0.386475],226.224],
["WoodFloor_DZ",[-23.4561,-2.89746,5.42032],135.777],
["WoodFloor_DZ",[-23.4561,-2.89746,2.42032],135.777],
["WoodFloor_DZ",[-19.2363,14.1426,2.42065],315.777],
["MetalFloor_DZ",[-19.2363,14.1426,2.62067],315.811],
["Sandbag1_DZ",[-23.3564,-5.49707,2.75067],136.191],
["HeliHRescue",[10.4336,21.6523,0.0395508],224.915],
["Sandbag1_DZ",[-23.2061,-7.03711,-0.297272],317.802],
["MetalFloor_DZ",[-12.1162,21.0732,2.62036],135.811],
["WoodFloor_DZ",[-12.1162,21.0732,2.42038],135.777],
["FireBarrel_DZ",[-16.8662,17.6826,-0.245117],226.808],
["WorkBench_DZ",[-17.6162,16.9531,-0.25531],225.55],
["WoodSmallWallWin_DZ",[-21.0864,12.3926,-0.386017],226.224],
["WoodLargeWallWin_DZ",[-25.0762,-1.22754,2.55029],135.777],
["MetalFloor_DZ",[-22.7964,10.6729,2.62048],135.811],
["WoodFloor_DZ",[-22.7964,10.6729,2.42047],135.777],
["Sandbag1_DZ",[-4.35645,24.8828,-0.0466309],315.768],
["Sandbag1_DZ",[18.2139,17.6826,0.149628],317.722],
["WoodSmallWallWin_DZ",[-4.54639,25.1328,-0.385468],316.225],
["Sandbag1_DZ",[-18.5864,-17.7471,-0.234497],315.924],
["VaultStorageLocked",[-18.8462,17.7324,-0.256042],225.406],
["Sr_border",[-22.3564,-13.2168,-0.255737],224.164],
["WoodFloor_DZ",[-8.54639,24.543,2.42038],315.777],
["MetalFloor_DZ",[-8.54639,24.543,2.62039],315.811],
["Hedgehog_DZ",[-2.08643,26.0225,-0.091217],333.966],
["Plastic_Pole_EP1_DZ",[-5.27637,25.583,-0.132904],131.757],
["WoodSmallWallThird_DZ",[-24.896,-8.00684,-0.642242],317.128],
["Land_Table_EP1",[-25.7964,-4.44727,-0.314484],228.978],
["MAP_P_toilet_b_02",[-26.186,-2.83691,2.69122],83.4177],
["WoodLargeWallWin_DZ",[-26.3662,0.123047,2.52075],315.85],
["WoodFloor_DZ",[-26.3662,0.123047,5.42075],315.85],
["Sandbag1_DZ",[-25.3462,-7.40723,2.75165],136.191],
["M240Nest_DZ",[-26.1265,-4.1377,5.84003],136.215],
["WoodLargeWallWin_DZ",[-26.2261,3.50293,2.52069],225.851],
["Sandbag1_DZ",[-26.3062,3.08301,5.7486],45.0978],
["WoodStairs_DZ",[-26.4863,-1.29688,-0.354858],135.277],
["MetalPanel_DZ",[-2.79639,26.4424,-0.488586],316.76],
["WoodLargeWallWin_DZ",[-25.3862,-8.03711,2.55109],315.777],
["Sandbag1_DZ",[-25.3262,-9.05762,-0.324066],318.976],
["MAP_F_Vojenska_palanda",[-27.0562,0.642578,2.4614],226.32],
["GunRack_DZ",[-19.5762,18.8428,-0.259949],227.013],
["WoodRamp_DZ",[-25.936,8.18262,2.63007],137.419],
["Land_HBarrier5_DZ",[-20.4761,-18.0176,0.262817],316.06],
["Land_HBarrier5_DZ",[-20.4761,-18.0176,1.26981],316.06],
["MetalFloor_DZ",[-26.3564,7.21289,2.62024],135.811],
["WoodFloor_DZ",[-26.3564,7.21289,2.42023],135.777],
["Land_HBarrier5_DZ",[18.9038,19.7529,1.353],316.702],
["Land_HBarrier5_DZ",[18.9038,19.7529,0.246002],316.702],
["Land_Water_pipe_EP1",[-27.2661,4.0127,2.69656],46.9923],
["WoodFloor_DZ",[-26.8462,-6.32715,5.41925],46.8745],
["Land_DZE_LargeWoodDoorLocked",[-27.5063,-2.4375,2.6488],226.875],
["WoodFloor_DZ",[-27.0161,-6.36719,2.42093],135.777],
["Sandbag1_DZ",[-0.956055,27.9229,-0.0295715],315.967],
["WoodFloor_DZ",[-27.9863,1.79297,2.39047],135.85],
["GunRack_DZ",[-20.2061,19.4629,-0.269073],226.113],
["Sr_border",[4.34375,27.7432,0.0602417],231.487],
["Land_Pillow_EP1",[-27.9761,3.37305,2.63455],39.7474],
["WoodSmallWallWin_DZ",[-20.8765,18.9424,-0.386139],226.224],
["MetalFloor_DZ",[-18.9063,20.9229,2.62015],315.811],
["WoodFloor_DZ",[-18.9063,20.9229,2.42014],315.777],
["Sandbag1_DZ",[20.2539,19.6729,0.19635],314.858],
["CinderWallDoorLocked_DZ",[20.6636,-19.2871,2.11978],318.809],
["CinderWallDoorLocked_DZ",[20.6636,-19.2871,2.11978],318.809],
["WoodSmallWallWin_DZ",[-1.22607,28.3232,-0.385864],316.225],
["WoodFloor_DZ",[-4.98633,28.0029,2.4201],315.777],
["WoodFloor_DZ",[-22.4663,17.4629,2.42047],135.777],
["MetalFloor_DZ",[-22.4663,17.4629,2.62045],135.811],
["StorageShed_DZ",[-4.30615,28.1631,-0.888031],134.249],
["Land_DZE_WoodDoorLocked",[-28.4961,2.10254,-0.473145],316.64],
["Land_HBarrier5_DZ",[16.4536,-23.3672,1.22116],315.846],
["Land_HBarrier5_DZ",[16.4536,-23.3672,0.214172],315.846],
["Land_HBarrier5_DZ",[16.4536,-23.3672,2.52118],315.811],
["Sandbag1_DZ",[-20.7563,-19.8174,-0.263977],317.722],
["WoodLargeWall_DZ",[-28.2363,5.5625,2.52722],226.64],
["MAP_Dkamna_uhli",[-27.396,-8.86719,2.6918],136.065],
["WoodFloor_DZ",[-15.3364,24.3926,2.42014],135.777],
["MetalFloor_DZ",[-15.3364,24.3926,2.62015],135.811],
["Sandbag1_DZ",[-27.3262,-9.30762,2.75372],136.191],
["WoodSmallWallWin_DZ",[-24.2563,15.7031,-0.385742],226.224],
["WoodSmallWallWin_DZ",[-28.396,5.41309,-0.473236],226.64],
["Land_Rack_EP1",[-28.8765,-1.58691,2.57541],137.466],
["FireBarrel_DZ",[-25.0161,14.6426,-0.196625],313.228],
["M240Nest_DZ",[-5.95605,28.4531,2.69089],133.34],
["Hedgehog_DZ",[1.18359,29.1025,-0.0765686],341.904],
["LightPole_DZ",[19.2339,-22.0469,-1.94598],130.178],
["Land_HBarrier5_DZ",[25.1636,-15.1475,1.36615],314.189],
["Land_HBarrier5_DZ",[25.1636,-15.1475,2.56613],314.189],
["Land_HBarrier5_DZ",[25.1636,-15.1475,0.326141],314.189],
["MetalFloor_DZ",[-26.0264,13.9932,2.62024],315.811],
["WoodFloor_DZ",[-26.0264,13.9932,2.42023],315.777],
["LightPole_DZ",[23.6338,-17.8574,-1.89386],133.381],
["MetalPanel_DZ",[0.633789,29.6826,-0.533203],316.2],
["Sandbag1_DZ",[-27.5864,-11.0273,-0.32489],318.976],
["WoodFloor_DZ",[-29.6064,-3.37695,5.41879],226.875],
["WoodFloor_DZ",[-29.646,3.46289,5.42044],225.776],
["OutHouse_DZ",[-23.5762,18.4229,-0.534576],316.365],
["Land_HBarrier5_DZ",[12.3638,-27.3369,0.176605],315.846],
["Land_HBarrier5_DZ",[12.3638,-27.3369,1.18359],315.846],
["Land_HBarrier5_DZ",[12.4336,-27.4072,2.48489],315.811],
["WoodFloor_DZ",[-29.916,3.74316,2.41998],135.777],
["FoldChair",[-29.646,-5.76758,2.69241],116.801],
["WoodFloor_DZ",[-11.7764,27.8623,2.4205],135.777],
["MetalFloor_DZ",[-11.7764,27.8623,2.62048],135.811],
["Sandbag1_DZ",[21.7139,21.2227,0.207092],310.578],
["WoodFloor_DZ",[-30.2461,-3.04688,2.42099],135.777],
["WoodSmallWallThird_DZ",[-28.4863,-11.3369,-0.642059],317.128],
["WoodSmallWallWin_DZ",[-24.186,19.0127,-0.386108],136.225],
["Sandbag1_DZ",[-23.666,19.7627,2.7496],316.837],
["Sr_border",[-17.9663,-25.1377,-0.0950623],314.029],
["Land_HBarrier5_DZ",[28.7236,-11.457,0.360962],315.846],
["Land_HBarrier5_DZ",[28.7236,-11.457,2.56796],315.811],
["Land_HBarrier5_DZ",[28.7236,-11.457,1.36795],315.846],
["Sandbag1_DZ",[-23.9761,19.7832,-0.273224],137.826],
["WoodLargeWallWin_DZ",[-28.896,-11.4668,2.55023],315.777],
["Sandbag1_DZ",[2.27393,31.1328,-0.0148926],316.026],
["StorageShed_DZ",[-21.666,22.5625,-1.01529],228.028],
["Sandbag1_DZ",[-25.6763,17.8828,2.7514],316.837],
["Land_HBarrier1_DZ",[9.88379,-29.7373,1.91132],315.811],
["Sandbag1_DZ",[-29.3164,-11.207,2.75443],136.191],
["MetalPanel_DZ",[-26.0361,17.5332,-0.655853],132.684],
["MetalFloor_DZ",[-29.5864,10.5332,2.61996],315.811],
["WoodFloor_DZ",[-29.5864,10.5332,2.41995],315.777],
["MAP_vending_machine",[-30.6362,7.10254,2.65045],46.34],
["Sandbag1_DZ",[22.6235,21.8926,0.211304],315.42],
["WoodFloor_DZ",[-1.42627,31.4727,2.42004],135.777],
["MetalFloor_DZ",[-1.42627,31.4727,2.62006],135.811],
["Sandbag1_DZ",[-31.5161,-1.34766,-0.323517],316.35],
["WoodFloor_DZ",[-30.1265,-9.3877,5.42108],225.192],
["WoodSmallWallWin_DZ",[2.08398,31.4932,-0.386261],316.225],
["Sandbag1_DZ",[-22.8462,-21.7871,-0.292389],315.846],
["SmallTV",[-30.896,-6.79688,3.4281],4.01791],
["Land_Campfire_burning",[26.2637,-17.7969,0.361084],296.677],
["WoodSmallWallWin_DZ",[-27.5664,15.7725,-0.385925],316.225],
["Desk",[-31.166,-6.2373,2.58365],45.9313],
["Land_HBarrier3_DZ",[22.1235,22.8525,1.35745],310.578],
["Land_HBarrier3_DZ",[22.1235,22.8525,0.129456],310.578],
["Sandbag1_DZ",[-27.6763,15.7432,2.7486],313.207],
["WoodSmallWallWin_DZ",[-31.8262,-1.04688,-0.473328],316.64],
["WoodRamp_DZ",[-26.896,-17.3271,-0.306458],137.67],
["Sandbag1_DZ",[-23.6064,21.7129,2.74814],226.839],
["MAP_Misc_Boogieman",[18.8037,-26.0273,0.514191],300.992],
["WoodFloor_DZ",[-30.5762,-9.82715,2.42001],135.777],
["BagFenceRound_DZ",[-29.4961,-12.8076,-0.32251],325.923],
["Sandbag1_DZ",[-31.1362,8.1123,5.74902],44.9198],
["Sandbag1_DZ",[-28.3765,15.4824,-0.304596],132.807],
["Land_HBarrier5_DZ",[8.27393,-31.3076,0.130432],315.846],
["Land_HBarrier5_DZ",[8.27393,-31.3076,1.13742],315.846],
["WoodFloor_DZ",[-8.21631,31.3232,2.42047],135.777],
["MetalFloor_DZ",[-8.21631,31.3232,2.62048],135.811],
["MAP_c_fern",[-30.6064,10.6328,3.10724],243.199],
["Land_HBarrier1_DZ",[31.2036,-9.05762,1.99573],315.811],
["WoodLargeWallWin_DZ",[-31.3462,8.82324,2.55038],225.776],
["Sandbag1_DZ",[-29.5562,13.7432,2.75009],313.207],
["Hedgehog_DZ",[4.42383,32.4131,-0.0662231],357.495],
["WoodSmallWallWin_DZ",[-31.5464,8.74316,-0.472839],226.64],
["Land_HBarrier5_DZ",[-24.436,-21.8271,0.291992],316.06],
["Land_HBarrier5_DZ",[-24.436,-21.8271,1.29901],316.06],
["MetalFloor_DZ",[-22.1362,24.2432,2.62045],315.811],
["WoodFloor_DZ",[-22.1362,24.2432,2.42044],315.777],
["WoodSmallWallWin_DZ",[-24.1162,22.3232,-0.385468],46.2236],
["WoodFloor_DZ",[-32.9863,0.212891,5.42117],225.776],
["WoodCrate_DZ",[-30.7163,-12.0576,2.70428],133.381],
["MetalPanel_DZ",[3.94385,32.8232,-0.521423],138.141],
["LightPole_DZ",[21.9736,24.7725,-2.12665],259.148],
["CinderWallDoorSmallLocked_DZ",[25.9937,20.7129,-0.0858459],227.741],
["BagFenceRound_DZ",[-30.8765,-12.4072,5.64957],355.526],
["WoodLargeWallWin_DZ",[-30.9263,12.4424,-0.364105],315.056],
["CinderWall_DZ",[22.2939,24.793,-0.0858459],227.741],
["MetalFloor_DZ",[-18.5664,27.7129,2.62088],135.811],
["WoodFloor_DZ",[-18.5664,27.7129,2.4209],135.777],
["Wooden_shed_DZ",[-33.0962,4.84277,-0.405823],225.038],
["WoodFloor_DZ",[-33.4761,0.272461,2.42075],135.777],
["WoodFloor_DZ",[-32.9063,-6.54688,5.42093],225.776],
["Sandbag1_DZ",[-31.436,11.7324,2.75174],313.207],
["Sandbag1_DZ",[-31.0562,12.7129,-0.339691],139.189],
["WoodFloorHalf_DZ",[-31.7861,-11.0273,5.40845],135.194],
["Land_HBarrier5_DZ",[32.814,-7.4873,0.398499],315.846],
["Land_HBarrier5_DZ",[32.814,-7.4873,1.40549],315.846],
["MAP_washing_machine",[-32.396,9.23242,2.69168],44.4329],
["WoodFloor_DZ",[-33.0664,6.97266,5.42044],225.776],
["Sandbag1_DZ",[-31.5562,-12.1768,-0.322632],228.112],
["WoodSmallWallThird_DZ",[-31.9561,-11.207,-0.641663],47.1258],
["WoodFloor_DZ",[-33.146,7.0625,2.42075],315.777],
["BagFenceRound_DZ",[-26.436,-21.2471,-0.283173],356.22],
["CinderWall_DZ",[29.7036,16.6426,-0.0860291],227.741],
["Sandbag1_DZ",[-32.4463,10.7227,2.74799],313.887],
["Sandbag1_DZ",[-24.8164,-23.707,-0.291168],315.846],
["WoodLargeWallWin_DZ",[-32.3364,-11.5371,2.54968],45.7756],
["CinderWall_DZ",[18.5938,28.8623,-0.0857849],227.741],
["WoodFloor_DZ",[-33.8062,-6.50684,2.41977],135.777],
["DeerStand_DZ",[-28.6162,19.3926,-0.0696411],298.009],
["MetalFloor_DZ",[-15.0063,31.1729,2.62009],315.811],
["WoodFloor_DZ",[-15.0063,31.1729,2.4201],315.777],
["Sandbag1_DZ",[-26.0161,22.8232,-0.30069],45.7305],
["CanvasHut_DZ",[-33.8462,7.70313,6.17941],139.576],
["Sandbag1_DZ",[5.83398,34.293,0.00305176],318.609],
["WoodLadder_DZ",[-33.5762,9.1123,1.99146],313.706],
["MAP_Kitchenstove_Elec",[-33.3862,-9.86719,2.69095],223.601],
["BagFenceRound_DZ",[-33.0962,10.873,1.26178],138.418],
["Sandbag1_DZ",[-25.5361,23.7832,2.74866],225.851],
["BagFenceRound_DZ",[-33.1563,10.8828,1.8613],136.894],
["WoodChair",[-34.3164,-6.47754,2.69113],190.7],
["Sandbag1_DZ",[-33.6763,9.2832,2.75034],317.575],
["BagFenceRound_DZ",[-33.2163,10.9023,0.459839],133.938],
["BagFenceRound_DZ",[-33.2163,11.0029,-0.338715],139.189],
["MetalFloor_DZ",[2.13379,34.9424,2.62061],315.811],
["WoodFloor_DZ",[2.13379,34.9424,2.42062],315.777],
["WoodSmallWallWin_DZ",[5.39355,34.6631,-0.38562],316.225],
["WoodFloor_DZ",[-4.65625,34.793,2.42078],315.777],
["MetalFloor_DZ",[-4.65625,34.793,2.62076],315.811],
["Sandbag1_DZ",[-34.8262,-4.4668,-0.353485],317.533],
["MetalPanel_DZ",[-25.896,23.8623,-0.555603],47.3731],
["MAP_fridge",[-34.146,-8.97754,2.69067],45.3958],
["WoodSmallWallWin_DZ",[-35.1563,-4.19727,-0.473236],316.64],
["MAP_kitchen_table_a",[-34.9761,-5.56738,2.69058],134.574],
["Sandbag1_DZ",[-34.416,8.46289,5.74893],314.42],
["Land_HBarrier5_DZ",[33.104,12.6729,1.50119],225.846],
["Land_HBarrier5_DZ",[33.104,12.6729,0.495178],225.846],
["Land_HBarrier1_DZ",[-25.7363,-24.377,0.698334],252.597],
["M240Nest_DZ",[-35.0864,-5.14746,5.74304],225.083],
["Land_HBarrier5_DZ",[4.18359,-35.2773,1.08182],315.846],
["Land_HBarrier5_DZ",[4.18359,-35.2773,0.0748291],315.846],
["Land_HBarrier5_DZ",[-28.3262,-21.7568,1.32916],226.057],
["Land_HBarrier5_DZ",[-28.3262,-21.7568,0.322144],226.057],
["WoodLargeWallWin_DZ",[-34.7661,8.73242,2.55096],135.777],
["FoldTable",[-35.6064,4.62305,2.69171],316.103],
["Land_HBarrier5_DZ",[-23.9063,-26.7969,-0.306793],45.8458],
["Land_HBarrier5_DZ",[-23.9063,-26.7969,0.700195],45.8458],
["WoodFloorHalf_DZ",[-35.0762,-7.70703,5.40762],135.194],
["MAP_tv_a",[-35.6064,4.70313,3.4917],316.2],
["Land_DZE_WoodDoorLocked",[-34.8564,8.83301,-0.472382],136.64],
["MetalFloor_DZ",[27.3838,23.3926,3.17462],136.98],
["BagFenceRound_DZ",[-26.3662,-24.5771,-0.278229],351.877],
["GunRack_DZ",[-35.5864,5.88281,-0.225189],313.746],
["WoodSmallWallThird_DZ",[-35.2861,-7.61719,-0.641876],47.1258],
["Sandbag1_DZ",[-35.1162,-8.39746,-0.386841],47.239],
["MAP_lobby_chair",[-36.1162,1.47266,2.69141],258.429],
["CinderWall_DZ",[14.8936,32.9424,-0.0861206],227.741],
["MetalFloor_DZ",[23.7837,27.2529,3.1665],136.98],
["Sandbag1_DZ",[7.32373,35.6924,0.0206604],316.244],
["BagFenceRound_DZ",[-32.5962,16.3027,-0.323669],134.184],
["WoodCrate_DZ",[-36.186,4.37305,-0.402924],315.386],
["WoodFloor_DZ",[-36.3262,-3.03711,5.42047],45.7756],
["Sandbag1_DZ",[-35.7061,7.42285,2.75128],317.575],
["WoodFloor_DZ",[-11.4463,34.6426,2.42059],315.777],
["MetalFloor_DZ",[-11.4463,34.6426,2.62057],315.811],
["WoodLargeWallWin_DZ",[-35.5664,-8.2168,2.5499],45.7756],
["FlagCarrierUSA",[-36.1763,5.3623,5.81516],287.168],
["WoodFloor_DZ",[-36.4063,3.72266,5.42111],225.776],
["MetalFloor_DZ",[30.9839,19.5332,3.18381],136.98],
["WoodShack_DZ",[-36.6162,1.95313,-0.264832],313.095],
["Land_HBarrier5_DZ",[-32.146,-17.7969,1.35828],46.0571],
["Land_HBarrier5_DZ",[-32.146,-17.7969,0.351257],46.0571],
["Land_HBarrier5_DZ",[-19.936,-30.8877,0.747437],45.8458],
["Land_HBarrier5_DZ",[-19.936,-30.8877,-0.259552],45.8458],
["Sandbag1_DZ",[-28.1162,-23.8076,-0.364014],47.0026],
["WoodFloor_DZ",[-36.7061,3.59277,2.42075],135.777],
["Land_HBarrier5_DZ",[36.9038,-3.51758,0.436096],315.846],
["Land_HBarrier5_DZ",[36.9038,-3.51758,1.44308],315.846],
["Sandbag1_DZ",[-29.9961,-21.7969,-0.362518],47.0026],
["MetalFloor_DZ",[20.1836,31.1123,3.15778],136.98],
["MAP_picture_a_05",[-36.3662,-7.47754,3.69],47.3369],
["WoodFloor_DZ",[-37.0361,-3.1875,2.42023],135.777],
["MetalFloor_DZ",[32.7837,17.5928,3.19247],136.98],
["GunRack_DZ",[-36.9063,-4.82715,-0.426147],226.839],
["GunRack_DZ",[6.104,36.7324,-0.0689087],44.5849],
["MetalPanel_DZ",[7.94385,36.3828,-0.519928],314.882],
["Sandbag1_DZ",[-36.7461,-6.61719,-0.39856],48.5428],
["Sandbag1_DZ",[-27.936,24.793,-0.302612],45.7305],
["MetalPanel_DZ",[-36.666,7.39258,-0.63208],137.3],
["WoodSmallWallWin_DZ",[-27.2861,25.6328,-0.386169],46.2236],
["WoodFloor_DZ",[-25.3564,27.5625,2.42032],315.777],
["MetalFloor_DZ",[-25.3564,27.5625,2.6203],315.811],
["WoodSmallWall_DZ",[7.87354,36.6523,-0.428864],315.356],
["Sandbag1_DZ",[-31.8662,-19.7773,-0.360962],47.0026],
["Misc_Wall_lamp",[-36.9961,-6.25684,4.69284],223.659],
["Sandbag1_DZ",[-36.7764,7.5332,-0.373566],137.972],
["CinderWallDoorLocked_DZ",[33.7036,16.623,-0.0972595],316.98],
["Sandbag1_DZ",[-27.4561,25.7627,2.7496],225.851],
["WoodCrate_DZ",[-37.6064,-3.75684,-0.411316],227.59],
["LightPole_DZ",[-37.3765,6.07324,4.1647],23.5873],
["Sandbag1_DZ",[7.90381,37.083,0.0375671],321.165],
["WoodFloor_DZ",[-21.7964,31.0332,2.42023],315.777],
["MetalFloor_DZ",[-21.7964,31.0332,2.62024],315.811],
["Sandbag1_DZ",[7.96387,37.1025,1.22836],321.188],
["Sandbag1_DZ",[7.96387,37.1025,0.828369],321.188],
["Sandbag1_DZ",[8.69385,36.9932,0.0402832],314.194],
["Sandbag1_DZ",[8.08398,37.1523,1.88],320.466],
["Land_HBarrier5_DZ",[37.0737,8.58301,0.48761],225.846],
["Land_HBarrier5_DZ",[37.0737,8.58301,1.4946],225.846],
["WoodFloorQuarter_DZ",[6.104,37.583,2.55609],44.9889],
["Sandbag1_DZ",[-33.7461,-17.7676,-0.359467],47.0026],
["Sandbag1_DZ",[-37.7363,5.57324,2.75305],317.575],
["Generator_DZ",[5.36377,37.873,-0.0719604],43.1012],
["StorageShed_DZ",[-22.4663,30.9824,-0.941772],312.295],
["WoodFloor_DZ",[-1.09619,38.2627,2.42035],135.777],
["MetalFloor_DZ",[-1.09619,38.2627,2.62033],135.811],
["WoodSmallWallWin_DZ",[5.46387,37.9727,-0.38559],226.224],
["MetalFloor_DZ",[-4.09619,-38.1973,-0.313049],227.793],
["MetalFloor_Preview_DZ",[-4.09619,-38.1973,6.68695],227.793],
["VaultStorageLocked",[-38.3462,-2.60742,-0.431671],226.467],
["MetalFloor_Preview_DZ",[-4.16602,-38.2168,-0.2323],228.453],
["Land_HBarrier5_DZ",[-15.9663,-34.9775,0.782867],45.8458],
["Land_HBarrier5_DZ",[-15.9663,-34.9775,-0.224121],45.8458],
["Land_HBarrier5_DZ",[-35.9561,-13.8369,1.38794],46.0571],
["Land_HBarrier5_DZ",[-35.9561,-13.8369,0.38092],46.0571],
["WoodSmallWallWin_DZ",[-38.186,5.69238,-0.472961],136.64],
["WoodFloorHalf_DZ",[-38.3662,-4.4668,5.40854],135.777],
["CinderWallDoorSmallLocked_DZ",[11.1938,37.0127,-0.0856323],227.741],
["WoodLargeWallWin_DZ",[-38.3164,5.27246,2.55045],135.777],
["WoodSmallWallWin_DZ",[-38.4663,-4.09766,-0.472717],226.64],
["MetalFloor_DZ",[16.5737,34.9727,3.14908],136.98],
["Sandbag1_DZ",[8.34375,37.8232,2.37451],314.475],
["MetalFloor_DZ",[5.69385,38.4023,2.62054],135.811],
["WoodFloor_DZ",[5.69385,38.4023,2.42053],135.777],
["Sandbag1_DZ",[-38.5664,-4.55762,-0.400696],48.5428],
["MetalFloor_DZ",[-7.88623,38.1123,2.62051],135.811],
["WoodFloor_DZ",[-7.88623,38.1123,2.4205],135.777],
["Sandbag1_DZ",[-35.686,-15.5869,-0.463196],46.6805],
["WoodStairs_DZ",[-38.9761,0.472656,-0.492523],227.177],
["MetalFloor_DZ",[-18.2363,34.4932,2.62085],315.811],
["WoodFloor_DZ",[-18.2363,34.4932,2.42087],315.777],
["Sandbag1_DZ",[-38.3462,-7.2168,-0.391785],319.286],
["WoodFloorQuarter_DZ",[6.97363,38.4531,2.75894],45.9262],
["WoodLargeWallWin_DZ",[-38.7964,-4.89746,2.55069],45.7756],
["FuelPump_DZ",[4.02393,38.9727,-0.0971375],43.394],
["StorageShed_DZ",[-19.9863,33.7031,-1.02856],313.609],
["Land_HBarrier5_DZ",[0.09375,-39.2471,1.01483],315.846],
["Land_HBarrier5_DZ",[0.09375,-39.2471,0.00784302],315.846],
["WorkBench_DZ",[-39.666,-1.26758,-0.435669],280.082],
["FireBarrel_DZ",[-18.6362,35.0732,-0.308777],316.089],
["WoodSmallWallWin_DZ",[-27.2163,28.9424,-0.385529],136.225],
["WoodFloor_DZ",[-39.7363,0.472656,5.42102],225.776],
["Sandbag1_DZ",[-38.7461,-9.32715,-0.393921],227.798],
["Sandbag1_DZ",[-39.7661,3.71289,2.75388],317.575],
["BagFenceRound_DZ",[-29.3564,27.0928,-0.311005],87.2404],
["Sandbag1_DZ",[-37.5664,-13.5869,-0.461487],46.6805],
["Sandbag1_DZ",[-23.5464,32.3027,2.7493],315.763],
["WoodSmallWallWin_DZ",[-23.9063,32.1123,-0.385315],136.225],
["BagFenceRound_DZ",[8.48389,39.1328,0.0114441],33.967],
["MetalPanel_DZ",[-25.6563,30.7432,-0.574249],136.49],
["WoodFloorQuarter_DZ",[7.79395,39.2832,2.95609],44.291],
["Sandbag1_DZ",[-39.8062,-5.4375,-0.45993],141.215],
["WoodShack_DZ",[6.29395,39.7031,0.0686951],139.879],
["MAP_library_a",[-40.1265,-2.89746,2.66272],45.0681],
["MetalPanel_DZ",[-40.0562,4.3623,-0.652405],136.697],
["MetalPanel_DZ",[-40.2461,-2.53711,-0.675781],46.2236],
["Sandbag1_DZ",[-40.0962,4.47266,-0.391602],137.409],
["Land_HBarrier5_DZ",[-39.8164,-7.01758,1.41083],320.634],
["Land_HBarrier5_DZ",[-39.8164,-7.01758,0.00384521],320.634],
["Sandbag1_DZ",[-40.5361,-2.37695,-0.409668],46.0269],
["Sandbag1_DZ",[-28.0762,29.3525,-0.303223],136.904],
["MetalPanel_DZ",[-22.3862,33.9229,-0.629425],136.404],
["Sandbag1_DZ",[-26.0664,31.2324,-0.301117],136.904],
["MetalFloor_DZ",[-14.6763,37.9629,2.62009],135.811],
["WoodFloor_DZ",[-14.6763,37.9629,2.42007],135.777],
["WoodSmallWallWin_DZ",[-20.5962,35.2832,-0.385315],136.225],
["Land_HBarrier5_DZ",[-11.9961,-39.0674,-0.178925],45.8458],
["Land_HBarrier5_DZ",[-11.9961,-39.0674,0.828064],45.8458],
["Sandbag1_DZ",[-24.0562,33.1025,-0.299988],136.904],
["WoodFloorQuarter_DZ",[-40.8462,2.55273,2.39099],225.615],
["MetalFloor_DZ",[12.9736,38.833,3.14111],136.98],
["Land_HBarrier5_DZ",[40.9839,0.462891,0.474091],315.846],
["Land_HBarrier5_DZ",[40.9839,0.462891,1.48108],315.846],
["Land_HBarrier5_DZ",[-39.8462,-10.0469,1.38785],44.4574],
["Land_HBarrier5_DZ",[-39.8462,-10.0469,0.160858],44.4574],
["WoodFloorHalf_DZ",[-41.1162,-0.697266,2.38467],316.64],
["Land_HBarrier5_DZ",[41.0439,4.49316,0.481079],225.846],
["Land_HBarrier5_DZ",[41.0439,4.49316,1.4881],225.846],
["MetalFloor_DZ",[31.2437,26.9932,3.18375],136.98],
["Sandbag1_DZ",[-22.0464,34.9824,-0.298889],136.904],
["WoodSmallWallDoor_DZ",[2.28369,41.293,-0.385803],46.2236],
["Sandbag1_DZ",[-39.7261,-11.5469,-0.441833],44.5505],
["MetalFloor_DZ",[27.6436,30.8525,3.17462],136.98],
["WoodFloorHalf_DZ",[-41.4961,-1.22754,5.40884],135.777],
["CinderWall_DZ",[7.27393,40.8926,-0.0970154],226.982],
["WorkBench_DZ",[-41.4263,-3.36719,-0.46521],137.48],
["WoodSmallWallWin_DZ",[-41.5264,2.54297,-0.473053],136.64],
["WoodSmallWallWin_DZ",[-41.6162,-0.767578,-0.473145],46.6397],
["Sandbag1_DZ",[5.88379,41.2227,2.74911],46.34],
["MetalPanel_DZ",[-19.0962,37.123,-0.62793],136.428],
["MetalFloor_DZ",[2.46387,41.7227,2.62067],315.811],
["WoodFloor_DZ",[2.46387,41.7227,2.42065],315.777],
["MetalFloor_DZ",[-4.32617,41.5732,2.62006],315.811],
["WoodFloor_DZ",[-4.32617,41.5732,2.42004],315.777],
["MetalFloor_DZ",[34.8438,23.1328,3.19165],136.98],
["Sandbag1_DZ",[-41.7964,1.85254,2.75571],317.575],
["FireBarrel_DZ",[-6.29639,-41.4268,-0.101532],170.387],
["WoodLargeWallWin_DZ",[-41.8862,1.80273,2.55029],135.777],
["Sandbag1_DZ",[-20.0361,36.8623,-0.296783],136.904],
["WoodLargeWallWin_DZ",[-42.0264,-1.57715,2.55048],45.7756],
["Sandbag1_DZ",[6.11377,41.6826,2.85126],226.294],
["Sandbag1_DZ",[-22.3862,35.7227,2.74857],224.915],
["WoodSmallWallWin_DZ",[-17.2861,38.4531,-0.3862],136.225],
["MetalFloor_DZ",[24.0439,34.7129,3.16693],136.98],
["Sandbag1_DZ",[6.44385,41.7832,2.85162],224.772],
["MetalFloor_DZ",[36.6436,21.2031,3.20023],136.98],
["Sandbag1_DZ",[-42.4463,-0.397461,-0.411713],46.0269],
["Sandbag1_DZ",[-41.8765,-7.11719,-0.486298],141.049],
["FireBarrel_DZ",[-42.3462,-3.91699,-0.476044],100.474],
["Sandbag1_DZ",[-16.1763,39.4229,2.75046],315.567],
["Sandbag1_DZ",[-18.0361,38.7432,-0.295319],136.904],
["Sandbag1_DZ",[-41.686,-9.61719,-0.440887],44.5505],
["Sandbag1_DZ",[4.63379,42.5332,2.75412],45.5704],
["Garbage_can",[-42.8662,0.222656,2.53018],280.241],
["CinderWallDoorLocked_DZ",[37.7236,20.373,-0.0966187],316.98],
["MetalFloor_DZ",[-11.1162,41.4326,2.62021],315.811],
["WoodFloor_DZ",[-11.1162,41.4326,2.4202],315.777],
["BagFenceRound_DZ",[-42.2861,-8.99707,-0.449493],49.7457],
["Sandbag1_DZ",[-19.2861,38.7129,2.74951],44.7275],
["MetalPanel_DZ",[-15.7861,40.2832,-0.615875],136.971],
["Land_HBarrier5_DZ",[-3.99609,-43.2168,0.940765],315.846],
["Land_HBarrier5_DZ",[-3.99609,-43.2168,-0.0662231],315.846],
["WoodFloor_DZ",[-21.4663,37.8125,2.42072],315.777],
["MetalFloor_DZ",[20.4336,38.5732,3.15811],136.98],
["Sandbag1_DZ",[-16.0264,40.623,-0.294586],136.904],
["MetalFloor_DZ",[9.37354,42.6924,3.13205],46.9821],
["Sandbag1_DZ",[4.21387,43.6729,2.85043],226.294],
["Land_HBarrier5_DZ",[-8.02637,-43.1572,0.881989],45.8458],
["Land_HBarrier5_DZ",[-8.02637,-43.1572,-0.125],45.8458],
["WoodSmallWallWin_DZ",[-13.9761,41.6328,-0.38562],136.225],
["LightPole_DZ",[-12.2861,42.1729,-3.47174],135.943],
["Sandbag1_DZ",[4.39355,43.9131,2.8494],227.882],
["BagFenceRound_DZ",[-44.3262,0.922852,-0.411255],91.2661],
["Fence_corrugated_DZ",[-43.9761,-6.09766,-0.458496],48.2952],
["Sandbag1_DZ",[2.71387,44.4932,2.75308],45.5704],
["WoodSmallWallWin_DZ",[-0.876465,44.5928,-0.385712],226.224],
["MetalFloor_Preview_DZ",[-13.7061,-42.4473,5.66183],42.8526],
["MetalFloor_DZ",[-13.7061,-42.4473,-0.338165],42.8526],
["BagFenceRound_DZ",[-44.7163,-1.32715,-0.416229],134.365],
["Sandbag1_DZ",[-14.0161,42.5029,-0.286926],136.904],
["MetalFloor_DZ",[-1.02637,44.7529,2.61423],226.214],
["CinderWallDoorway_DZ",[3.68359,44.8623,-0.129303],226.798],
["FireBarrel_DZ",[-0.436035,45.043,-0.157745],289.25],
["WoodFloor_DZ",[-0.766113,45.043,2.42078],135.777],
["MetalPanel_DZ",[-12.4263,43.4531,-0.599823],136.697],
["WoodFloor_DZ",[-7.55615,44.8926,2.42078],135.777],
["MetalFloor_DZ",[-7.55615,44.8926,2.62076],135.811],
["Sandbag1_DZ",[2.08398,45.583,2.7515],44.0667],
["LightPole_DZ",[0.653809,45.6328,-3.24414],134.897],
["MetalFloor_DZ",[16.834,42.4326,3.1488],136.98],
["Sandbag1_DZ",[-12.5762,43.9629,-0.236481],134.927],
["Sandbag1_DZ",[2.64355,45.7529,2.88223],228.306],
["MetalPanel_DZ",[0.354004,45.9424,-0.62558],320.493],
["WoodSmallWallWin_DZ",[-10.666,44.8027,-0.385986],136.225],
["Sandbag1_DZ",[0.243652,46.1729,1.38986],141.804],
["Sandbag1_DZ",[0.133789,46.2324,0.588104],142.297],
["Sandbag1_DZ",[0.153809,46.2529,-0.111725],141.537],
["Sandbag1_DZ",[-11.5063,44.9424,-0.210236],134.907],
["Sandbag1_DZ",[0.783691,46.4531,2.75192],45.5704],
["Sandbag1_DZ",[-1.98633,46.5127,1.48605],226.477],
["MetalFloor_DZ",[35.104,30.5928,3.19193],136.98],
["Sandbag1_DZ",[-2.00635,46.583,0.685425],227.58],
["Sandbag1_DZ",[-1.96631,46.6426,-0.114319],227.208],
["MetalFloor_DZ",[31.5039,34.4531,3.18381],136.98],
["MetalFloor_DZ",[5.77393,46.5527,3.14096],316.98],
["LightPole_DZ",[2.74365,46.9023,-2.82507],84.7018],
["BagFenceRound_DZ",[0.903809,46.9824,1.49518],142.948],
["BagFenceRound_DZ",[0.793945,46.9932,-0.106384],139.65],
["BagFenceRound_DZ",[0.883789,47.0127,0.694763],143.65],
["MetalFloor_DZ",[38.7139,26.7324,3.20108],136.98],
["BagFenceRound_DZ",[1.02393,47.1328,2.25912],155.912],
["MetalFloor_DZ",[27.9038,38.3125,3.17538],136.98],
["WoodCrate_DZ",[-4.59619,47.2725,-0.215881],44.5407],
["MetalFloor_DZ",[40.5137,24.8027,3.20889],136.98],
["Sandbag1_DZ",[2.63379,47.4629,2.58139],317.566],
["MetalPanel_DZ",[-9.18604,46.6729,-0.58606],136.62],
["FuelPump_DZ",[-35.9961,-31.1074,-0.471039],311.139],
["Sandbag1_DZ",[-9.55615,46.8926,-0.211426],134.907],
["WoodFloor_DZ",[-24.6963,41.1328,2.42035],315.777],
["WoodSmallWallWin_DZ",[-4.04639,47.9023,-0.385254],226.224],
["MetalFloor_DZ",[13.2339,46.293,3.14072],46.9821],
["CinderWallDoorLocked_DZ",[41.7539,24.1328,-0.097168],316.98],
["Sandbag1_DZ",[-1.13623,48.4229,2.74991],45.5704],
["MetalFloor_DZ",[-3.98633,48.3623,2.62045],315.811],
["WoodFloor_DZ",[-3.98633,48.3623,2.42047],315.777],
["WoodSmallWallWin_DZ",[-7.35645,47.9727,-0.385376],136.225],
["BagFenceRound_DZ",[-18.5063,44.873,-0.26532],320.76],
["MetalFloor_DZ",[24.3037,42.1729,3.16617],136.98],
["MetalPanel_DZ",[-4.18604,48.583,-0.605225],226.457],
["Sandbag1_DZ",[-27.2163,40.4824,2.75085],225.147],
["MAP_t_fagus2f",[-48.8164,0.0732422,0.517548],106.675],
["Sandbag1_DZ",[3.79395,48.7529,2.57007],317.845],
["CinderWall_DZ",[3.66357,48.8125,-0.0973816],136.98],
["Sandbag1_DZ",[-3.87646,48.833,-0.148163],230.974],
["Sandbag1_DZ",[36.2939,33.4229,2.59085],47.5593],
["Sandbag1_DZ",[34.2236,35.5527,2.59045],47.5593],
["BagFenceRound_DZ",[-20.416,44.9932,-0.295776],48.4636],
["Sandbag1_DZ",[38.3237,31.2129,2.59128],47.5593],
["Sandbag1_DZ",[-7.61621,48.8428,-0.213654],134.907],
["Sandbag1_DZ",[32.1938,37.7627,2.59116],47.5593],
["Sandbag1_DZ",[40.3438,28.9932,2.59067],47.5593],
["Sandbag1_DZ",[-23.9961,43.5527,2.75058],44.0181],
["Sandbag1_DZ",[4.83398,49.5332,2.62994],317.972],
["CinderWall_DZ",[38.1338,32.043,-0.0972595],226.982],
["CinderWall_DZ",[34.3735,36.0625,-0.0975342],226.982],
["LightPole_DZ",[-19.4463,45.9424,1.2139],132.972],
["Sandbag1_DZ",[30.1436,39.9326,2.59082],47.5593],
["Sandbag1_DZ",[-3.70605,49.9131,-0.143738],317.736],
["Sandbag1_DZ",[42.4536,26.8232,2.59116],47.3886],
["BagFenceRound_DZ",[-18.3662,46.7432,-0.270325],231.611],
["BagFenceRound_DZ",[-5.48633,50.0732,-0.190918],181.511],
["CinderWall_DZ",[41.8838,28.0225,-0.0970459],226.982],
["CinderWall_DZ",[30.6235,40.0928,-0.0967407],226.982],
["MetalFloor_DZ",[2.17383,50.4131,3.14987],316.98],
["MetalFloor_DZ",[20.6938,46.0332,3.15744],136.98],
["Sandbag1_DZ",[-3.06641,50.3828,2.74884],45.5704],
["Sandbag1_DZ",[-5.00635,50.4023,2.74991],315.567],
["Sandbag1_DZ",[28.1235,42.1426,2.59039],47.5593],
["BagFenceRound_DZ",[-20.3564,46.833,-0.302246],138.656],
["MetalFloor_DZ",[9.63379,50.1523,3.14963],46.9821],
["Sandbag1_DZ",[26.104,44.3623,2.59094],47.5593],
["Sandbag1_DZ",[-29.1563,42.4326,2.74924],225.147],
["CinderWall_DZ",[26.8638,44.1123,-0.0969543],226.982],
["Sandbag1_DZ",[7.06396,51.543,2.63004],317.972],
["Sandbag1_DZ",[24.0137,46.4824,2.59052],47.5697],
["Sandbag1_DZ",[-25.9761,45.4629,2.74893],44.0181],
["WoodFloor_DZ",[-27.9263,44.4531,2.42111],315.777],
["MetalFloor_DZ",[17.0938,49.8926,3.14935],46.9821],
["FuelPump_DZ",[8.25391,52.4727,-0.096405],317.114],
["CinderWall_DZ",[7.69385,52.5625,-0.0968628],136.98],
["CinderWall_DZ",[23.1138,48.1426,-0.097168],226.982],
["Sandbag1_DZ",[21.9839,48.7031,2.59103],47.5697],
["FuelPump_DZ",[44.6235,30.3125,0.353821],223.053],
["BagFenceRound_DZ",[-31.4761,43.8232,2.74896],178.678],
["Sandbag1_DZ",[9.29395,53.543,2.63016],317.972],
["MetalFloor_DZ",[6.03369,54.0127,3.15854],316.98],
["WoodLadder_DZ",[9.51367,53.5127,-0.0737],317.878],
["Sandbag1_DZ",[19.9639,50.9131,2.59076],47.5697],
["BagFenceRound_DZ",[-27.2764,47.8027,2.74945],92.0019],
["MetalFloor_DZ",[13.4937,53.7529,3.15826],46.9821],
["CinderWall_DZ",[19.354,52.1631,-0.0964355],226.982],
["SandNest_DZ",[-35.2964,43.3623,2.87384],42.4627],
["Sandbag1_DZ",[-36.146,42.7529,2.74869],225.645],
["Sandbag1_DZ",[17.9438,53.123,2.59055],47.5697],
["WoodFloor_DZ",[-34.7163,44.3027,2.42075],135.777],
["Sandbag1_DZ",[11.354,55.583,2.57062],317.845],
["WoodFloor_DZ",[-31.1563,47.7627,2.42096],315.777],
["CinderWall_DZ",[11.7139,56.3232,-0.0964966],136.98],
["Sandbag1_DZ",[15.9136,55.3428,2.59045],47.5697],
["WoodFloor_DZ",[-27.5864,51.2324,2.42096],135.777],
["Sandbag1_DZ",[12.6938,56.8027,2.57022],317.845],
["CinderWall_DZ",[15.604,56.1826,-0.0967102],226.982],
["Sandbag1_DZ",[14.9038,56.4531,2.57077],47.5697],
["MetalFloor_DZ",[9.89355,57.6123,3.16721],316.98],
["SandNest_DZ",[-26.8662,51.9326,2.87433],225.936],
["Sandbag1_DZ",[-34.416,47.2832,2.74997],315.787],
["Sandbag1_DZ",[-26.0464,52.6631,2.74905],44.5113],
["LightPole_DZ",[13.6938,57.3828,-2.98068],172.262],
["Sandbag1_DZ",[-30.4663,51.123,2.74997],315.787],
["LightPole_DZ",[6.12354,59.8027,1.21112],172.625],
["BagFenceRound_DZ",[6.27393,60.0127,-0.0744629],309.666],
["FuelPump_DZ",[20.5439,58.1826,0.00973511],226.726],
["WoodCrate_DZ",[19.4639,59.4824,0.0149841],228.808],
["DeerStand_DZ",[-57.5264,-34.207,0.388519],77.0299]
]
]
];

 

used the above in my AH.sqf worked like a charm  THANKS

 

P.S.

copied base fro 1st server using Noxs admin tool ... integrated base copy into tool....2nd server has Infistar base copy used that to paste...

Link to comment
Share on other sites

when i copy base, i get nothing in logs, just alot of 

23:55:38 Server: Object 7:1059 not found (message 94)
23:55:38 Server: Object 7:1060 not found (message 94)
23:55:38 Server: Object 7:1070 not found (message 70)
23:55:38 Server: Object 7:1071 not found (message 94)
23:55:38 Server: Object 7:1062 not found (message 94)
23:55:38 Server: Object 7:1063 not found (message 94)
23:55:38 Server: Object 7:1064 not found (message 94)
23:55:38 Server: Object 7:1065 not found (message 94)
23:55:38 Server: Object 7:1066 not found (message 94)
23:55:38 Server: Object 7:1067 not found (message 94)
23:55:38 Server: Object 7:1068 not found (message 94)
23:55:38 Server: Object 7:1069 not found (message 94)
23:55:38 Server: Object 7:1075 not found (message 70)
23:55:38 Server: Object 7:1072 not found (message 94)
23:55:38 Server: Object 7:1073 not found (message 94)
23:55:38 Server: Object 7:1074 not found (message 94)
23:55:38 Server: Object 7:1079 not found (message 70)
23:55:38 Server: Object 7:1076 not found (message 94)
23:55:38 Server: Object 7:1077 not found (message 94)
23:55:38 Server: Object 7:1078 not found (message 94)
23:55:38 Server: Object 7:1082 not found (message 94)
23:55:38 Server: Object 7:1081 not found (message 70)
23:55:38 Server: Object 7:1084 not found (message 94)

thoughts?

Link to comment
Share on other sites

when i copy base, i get nothing in logs, just alot of 

23:55:38 Server: Object 7:1059 not found (message 94)
23:55:38 Server: Object 7:1060 not found (message 94)
23:55:38 Server: Object 7:1070 not found (message 70)
23:55:38 Server: Object 7:1071 not found (message 94)
23:55:38 Server: Object 7:1062 not found (message 94)
23:55:38 Server: Object 7:1063 not found (message 94)
23:55:38 Server: Object 7:1064 not found (message 94)
23:55:38 Server: Object 7:1065 not found (message 94)
23:55:38 Server: Object 7:1066 not found (message 94)
23:55:38 Server: Object 7:1067 not found (message 94)
23:55:38 Server: Object 7:1068 not found (message 94)
23:55:38 Server: Object 7:1069 not found (message 94)
23:55:38 Server: Object 7:1075 not found (message 70)
23:55:38 Server: Object 7:1072 not found (message 94)
23:55:38 Server: Object 7:1073 not found (message 94)
23:55:38 Server: Object 7:1074 not found (message 94)
23:55:38 Server: Object 7:1079 not found (message 70)
23:55:38 Server: Object 7:1076 not found (message 94)
23:55:38 Server: Object 7:1077 not found (message 94)
23:55:38 Server: Object 7:1078 not found (message 94)
23:55:38 Server: Object 7:1082 not found (message 94)
23:55:38 Server: Object 7:1081 not found (message 70)
23:55:38 Server: Object 7:1084 not found (message 94)

thoughts?

copy then tab out and go to your local RPT file...C:\Users\<YourUsername>\AppData\Local\Arma 2 OA\Arma2OA.rpt   do this while ingame - sometimes after you log out of game the RPT goes to 0k .... I copied the info into the base copy sqf and went from there

Link to comment
Share on other sites

Installed MDC's version into AH. Can define the dome and select copy but get the following in the RPT:

 

========= Copying Objects [start] =========
Error in expression <on, _direction];
diag_log text str(_row + ",");
_row set [count _row, _x];
_obje>
  Error position: <+ ",");
_row set [count _row, _x];
_obje>
  Error Generic error in expression
 

Any ideas MDC?

Link to comment
Share on other sites

Create an account or sign in to comment

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

Create an account

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

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Advertisement
×
×
  • Create New...