Move no longer used maps to archive.

All files in the archive will no be updated. Ive added a copy of the current trader files too, so the old traders and trader cities can still be used with the current trader files.

Give me a hint if you think some of the files should be moved back.
This commit is contained in:
A Man
2019-11-09 14:49:40 +01:00
parent ae3a4fa2c8
commit 6699d8d746
170 changed files with 4569 additions and 1 deletions

View File

@@ -0,0 +1,2 @@
@echo off
start "arma2" /min /high arma2oaserver.exe -port=2302 "-config=C:\DZE_Server_Config\8_provinggrounds_pmc.cfg" "-cfg=C:\DZE_Server_Config\basic.cfg" "-profiles=C:\DZE_Server_Config" -name=server "-mod=@DayZ_Epoch;@DayZ_Epoch_Server;"

View File

@@ -0,0 +1,40 @@
hostName = "DayZ Epoch ProvingGrounds_PMC Server (1.0.6.2/131129)";
password = "";
passwordAdmin = "changeme";
maxPlayers = 50;
steamport = 2304;
steamqueryport = 2303;
motd[] = {"DayZ Epoch","Have fun!"};
motdInterval = 0;
logFile = "server_log.txt";
voteThreshold = 2;
voteMissionPlayers = 999;
timeStampFormat = "short";
vonCodecQuality = 11;
disableVoN = 0;
kickduplicate = 1;
verifySignatures = 2;
persistent = 1;
BattlEye = 1;
doubleIdDetected = "";
onUserConnected = "";
onUserDisconnected = "";
onUnsignedData = "kick (_this select 0)";
onHackedData = "kick (_this select 0)";
onDifferentData = "";
regularCheck = "";
requiredBuild = 131129;
class Missions
{
class Mission1
{
template = "DayZ_Epoch_8.ProvingGrounds_PMC";
difficulty="veteran";
};
};

View File

@@ -0,0 +1,35 @@
respawn = "BASE";
respawnDelay = 0;
respawnDialog = 0;
onLoadMission = "DayZ Epoch Proving Grounds PMC";
OnLoadIntro = "Welcome to Proving Grounds PMC";
OnLoadIntroTime = 0;
OnLoadMissionTime = 0;
disabledAI = 1;
disableChannels[] = {0,2,6};
enableItemsDropping = 0;
onPauseScript = "";
briefing = 0;
debriefing = 0;
titleParam1 = "AutoLogin:";
valuesParam1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, 31};
defValueParam1 = 10; //auto login time limit in seconds, set value to 31 to disable auto login
textsParam1[] = {1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 15, 20, 25, 30, "Disabled"};
loadScreen = "\z\addons\dayz_code\gui\loadingscreen.paa";
class Header
{
gameType = COOP; //DM, Team, Coop, ...
minPlayers = 1; //min # of players the mission supports
maxPlayers = 100; //Max # of players the mission supports
};
aiKills = 1;
diagRadio = 1;
diagHit = 1;
#include "\z\addons\dayz_code\gui\description.hpp"
#include "\z\addons\dayz_code\Configs\CfgLoot\CfgLoot.hpp"
#include "\z\addons\dayz_code\Configs\CfgServerTrader\CfgServerTrader.hpp"

View File

@@ -0,0 +1,140 @@
/*
For DayZ Epoch
Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz
*/
//Server settings
dayZ_instance = 8; //Instance ID of this server
dayZ_serverName = ""; //Shown to all players in the bottom left of the screen (country code + server number)
//Game settings
dayz_antihack = 1; // DayZ Antihack / 1 = enabled // 0 = disabled
dayz_REsec = 1; // DayZ RE Security / 1 = enabled // 0 = disabled
dayz_enableRules = true; //Enables a nice little news/rules feed on player login (make sure to keep the lists quick).
dayz_quickSwitch = false; //Turns on forced animation for weapon switch. (hotkeys 1,2,3) False = enable animations, True = disable animations
dayz_POIs = false; //Adds Point of Interest map additions (negatively impacts FPS)
dayz_infectiousWaterholes = false; //Randomly adds some bodies, graves and wrecks by ponds (negatively impacts FPS)
dayz_ForcefullmoonNights = true; // Forces night time to be full moon.
dayz_randomMaxFuelAmount = 500; //Puts a random amount of fuel in all fuel stations.
//DayZMod presets
dayz_presets = "Custom"; //"Custom","Classic","Vanilla","Elite"
//Only need to edit if you are running a custom server.
if (dayz_presets == "Custom") then {
dayz_enableGhosting = false; //Enable disable the ghosting system.
dayz_ghostTimer = 60; //Sets how long in seconds a player must be disconnected before being able to login again.
dayz_spawnselection = 0; //(Chernarus only) Turn on spawn selection 0 = random only spawns, 1 = spawn choice based on limits
dayz_spawncarepkgs_clutterCutter = 0; //0 = loot hidden in grass, 1 = loot lifted, 2 = no grass
dayz_spawnCrashSite_clutterCutter = 0; // heli crash options 0 = loot hidden in grass, 1 = loot lifted, 2 = no grass
dayz_spawnInfectedSite_clutterCutter = 0; // infected base spawn 0 = loot hidden in grass, 1 = loot lifted, 2 = no grass
dayz_bleedingeffect = 2; //1 = blood on the ground (negatively impacts FPS), 2 = partical effect, 3 = both
dayz_OpenTarget_TimerTicks = 60 * 10; //how long can a player be freely attacked for after attacking someone unprovoked
dayz_nutritionValuesSystem = true; //true, Enables nutrition system, false, disables nutrition system.
dayz_classicBloodBagSystem = true; // disable blood types system and use the single classic ItemBloodbag
dayz_enableFlies = false; // Enable flies on dead bodies (negatively impacts FPS).
};
//Temp settings
dayz_DamageMultiplier = 2; //1 - 0 = Disabled, anything over 1 will multiply damage. Damage Multiplier for Zombies.
dayz_maxGlobalZeds = 500; //Limit the total zeds server wide.
dayz_temperature_override = false; // Set to true to disable all temperature changes.
enableRadio false;
enableSentences false;
// EPOCH CONFIG VARIABLES START //
#include "\z\addons\dayz_code\configVariables.sqf" // Don't remove this line
// See the above file for a full list including descriptions and default values
// Uncomment the lines below to change the default loadout
//DefaultMagazines = ["HandRoadFlare","ItemBandage","ItemPainkiller","8Rnd_9x18_Makarov","8Rnd_9x18_Makarov"];
//DefaultWeapons = ["Makarov_DZ","ItemFlashlight"];
//DefaultBackpack = "DZ_Patrol_Pack_EP1";
//DefaultBackpackItems = []; // Can include both weapons and magazines i.e. ["PDW_DZ","30Rnd_9x19_UZI"];
dayz_paraSpawn = false; // Halo spawn
DZE_BackpackAntiTheft = false; // Prevent stealing from backpacks in trader zones
DZE_BuildOnRoads = false; // Allow building on roads
DZE_PlayerZed = true; // Enable spawning as a player zombie when players die with infected status
DZE_R3F_WEIGHT = true; // Enable R3F weight. Players carrying too much will be overburdened and forced to move slowly.
DZE_StaticConstructionCount = 0; // Steps required to build. If greater than 0 this applies to all objects.
DZE_GodModeBase = false; // Make player built base objects indestructible
DZE_requireplot = 1; // Require a plot pole to build 0 = Off, 1 = On
DZE_PlotPole = [30,45]; // Radius owned by plot pole [Regular objects,Other plotpoles]. Difference between them is the minimum buffer between bases.
DZE_BuildingLimit = 150; // Max number of built objects allowed in DZE_PlotPole radius
DZE_SafeZonePosArray = []; // Format is [[[3D POS],RADIUS],[[3D POS],RADIUS]]; Stops loot and zed spawn, salvage and players being killed if their vehicle is destroyed in these zones.
DZE_SelfTransfuse = true; // Allow players to bloodbag themselves
DZE_selfTransfuse_Values = [12000,15,120]; // [blood amount given, infection chance %, cooldown in seconds]
MaxDynamicDebris = 100; // Max number of random road blocks to spawn around the map
MaxVehicleLimit = 50; // Max number of random vehicles to spawn around the map
spawnArea = 500; // Distance around markers to find a safe spawn position
spawnShoremode = 0; // Random spawn locations 1 = on shores, 0 = inland
EpochUseEvents = false; //Enable event scheduler. Define custom scripts in dayz_server\modules to run on a schedule.
EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]];
// EPOCH CONFIG VARIABLES END //
diag_log 'dayz_preloadFinished reset';
dayz_preloadFinished=nil;
onPreloadStarted "diag_log [diag_tickTime,'onPreloadStarted']; dayz_preloadFinished = false;";
onPreloadFinished "diag_log [diag_tickTime,'onPreloadFinished']; dayz_preloadFinished = true;";
with uiNameSpace do {RscDMSLoad=nil;}; // autologon at next logon
if (!isDedicated) then {
enableSaving [false, false];
startLoadingScreen ["","RscDisplayLoadCustom"];
progressLoadingScreen 0;
dayz_loadScreenMsg = localize 'str_login_missionFile';
progress_monitor = [] execVM "\z\addons\dayz_code\system\progress_monitor.sqf";
0 cutText ['','BLACK',0];
0 fadeSound 0;
0 fadeMusic 0;
};
initialized = false;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf";
progressLoadingScreen 0.05;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf";
progressLoadingScreen 0.1;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf";
progressLoadingScreen 0.15;
call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf";
progressLoadingScreen 0.25;
call compile preprocessFileLineNumbers "server_traders.sqf";
call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\provinggrounds_pmc.sqf"; //Add trader city objects locally on every machine early
initialized = true;
setTerrainGrid 25;
if (dayz_REsec == 1) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\REsec.sqf";};
execVM "\z\addons\dayz_code\system\DynamicWeatherEffects.sqf";
if (isServer) then {
if (dayz_POIs) then {call compile preprocessFileLineNumbers "\z\addons\dayz_code\system\mission\chernarus\poi\init.sqf";};
call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\dynamic_vehicle.sqf";
call compile preprocessFileLineNumbers "\z\addons\dayz_server\system\server_monitor.sqf";
execVM "\z\addons\dayz_server\traders\provinggrounds_pmc.sqf"; //Add trader agents
//Get the server to setup what waterholes are going to be infected and then broadcast to everyone.
if (dayz_infectiousWaterholes) then {execVM "\z\addons\dayz_code\system\mission\chernarus\infectiousWaterholes\init.sqf";};
// Lootable objects from CfgTownGeneratorDefault.hpp
if (dayz_townGenerator) then { execVM "\z\addons\dayz_code\system\mission\chernarus\MainLootableObjects.sqf"; };
};
if (!isDedicated) then {
if (toLower worldName == "chernarus") then {
execVM "\z\addons\dayz_code\system\mission\chernarus\hideGlitchObjects.sqf";
};
//Enables Plant lib fixes
execVM "\z\addons\dayz_code\system\antihack.sqf";
if (dayz_townGenerator) then { execVM "\z\addons\dayz_code\compile\client_plantSpawner.sqf"; };
execFSM "\z\addons\dayz_code\system\player_monitor.fsm";
//[false,12] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf";
if (DZE_R3F_WEIGHT) then {execVM "\z\addons\dayz_code\external\R3F_Realism\R3F_Realism_Init.sqf";};
waitUntil {scriptDone progress_monitor};
cutText ["","BLACK IN", 3];
3 fadeSound 1;
3 fadeMusic 1;
endLoadingScreen;
};

View File

@@ -0,0 +1,349 @@
version=11;
class Mission
{
addOns[]=
{
"provinggrounds_pmc",
"map_eu",
"ca_modules_animals",
"dayz_anim",
"dayz_code",
"dayz_communityassets",
"dayz_weapons",
"dayz_equip",
"cacharacters_pmc",
"ca_modules_functions",
"zero_buildings",
"dayz_epoch",
"warfarebuildings",
"glt_m300t",
"pook_h13",
"csj_gyroac",
"redryder",
"Anzio_20"
};
addOnsAuto[]=
{
"dayz_weapons",
"ca_modules_functions",
"provinggrounds_pmc"
};
randomSeed=11171215;
class Intel
{
briefingName="DayZ Epoch Proving Grounds PMC";
briefingDescription="Version 1.0.6.2";
startWeather=0;
forecastWeather=0;
year=2008;
month=6;
day=1;
hour=12;
};
class Groups
{
items=2;
class Item0
{
side="WEST";
class Vehicles
{
items=100;
#define PLRDEF position[]={3797,42,3282};azimut=0;side="WEST";vehicle="Survivor1_DZ";skill=0.6;init="this enableSimulation false;this allowDamage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';";player="PLAY CDG";
class Item0{id=0;PLRDEF};
class Item1
{
position[]={3797,42,3282};
azimut=0;
id=0;
side="WEST";
vehicle="Survivor1_DZ";
player="PLAYER COMMANDER";
leader=1;
rank="SERGEANT";
skill=0.6;
init="this enableSimulation false;this allowDamage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';";
};
class Item2{id=2;PLRDEF};
class Item3{id=3;PLRDEF};
class Item4{id=4;PLRDEF};
class Item5{id=5;PLRDEF};
class Item6{id=6;PLRDEF};
class Item7{id=7;PLRDEF};
class Item8{id=8;PLRDEF};
class Item9{id=9;PLRDEF};
class Item10{id=10;PLRDEF};
class Item11{id=11;PLRDEF};
class Item12{id=12;PLRDEF};
class Item13{id=13;PLRDEF};
class Item14{id=14;PLRDEF};
class Item15{id=15;PLRDEF};
class Item16{id=16;PLRDEF};
class Item17{id=17;PLRDEF};
class Item18{id=18;PLRDEF};
class Item19{id=19;PLRDEF};
class Item20{id=20;PLRDEF};
class Item21{id=21;PLRDEF};
class Item22{id=22;PLRDEF};
class Item23{id=23;PLRDEF};
class Item24{id=24;PLRDEF};
class Item25{id=25;PLRDEF};
class Item26{id=26;PLRDEF};
class Item27{id=27;PLRDEF};
class Item28{id=28;PLRDEF};
class Item29{id=29;PLRDEF};
class Item30{id=30;PLRDEF};
class Item31{id=31;PLRDEF};
class Item32{id=32;PLRDEF};
class Item33{id=33;PLRDEF};
class Item34{id=34;PLRDEF};
class Item35{id=35;PLRDEF};
class Item36{id=36;PLRDEF};
class Item37{id=37;PLRDEF};
class Item38{id=38;PLRDEF};
class Item39{id=39;PLRDEF};
class Item40{id=40;PLRDEF};
class Item41{id=41;PLRDEF};
class Item42{id=42;PLRDEF};
class Item43{id=43;PLRDEF};
class Item44{id=44;PLRDEF};
class Item45{id=45;PLRDEF};
class Item46{id=46;PLRDEF};
class Item47{id=47;PLRDEF};
class Item48{id=48;PLRDEF};
class Item49{id=49;PLRDEF};
class Item50{id=50;PLRDEF};
class Item51{id=51;PLRDEF};
class Item52{id=52;PLRDEF};
class Item53{id=53;PLRDEF};
class Item54{id=54;PLRDEF};
class Item55{id=55;PLRDEF};
class Item56{id=56;PLRDEF};
class Item57{id=57;PLRDEF};
class Item58{id=58;PLRDEF};
class Item59{id=59;PLRDEF};
class Item60{id=60;PLRDEF};
class Item61{id=61;PLRDEF};
class Item62{id=62;PLRDEF};
class Item63{id=63;PLRDEF};
class Item64{id=64;PLRDEF};
class Item65{id=65;PLRDEF};
class Item66{id=66;PLRDEF};
class Item67{id=67;PLRDEF};
class Item68{id=68;PLRDEF};
class Item69{id=69;PLRDEF};
class Item70{id=70;PLRDEF};
class Item71{id=71;PLRDEF};
class Item72{id=72;PLRDEF};
class Item73{id=73;PLRDEF};
class Item74{id=74;PLRDEF};
class Item75{id=75;PLRDEF};
class Item76{id=76;PLRDEF};
class Item77{id=77;PLRDEF};
class Item78{id=78;PLRDEF};
class Item79{id=79;PLRDEF};
class Item80{id=80;PLRDEF};
class Item81{id=81;PLRDEF};
class Item82{id=82;PLRDEF};
class Item83{id=83;PLRDEF};
class Item84{id=84;PLRDEF};
class Item85{id=85;PLRDEF};
class Item86{id=86;PLRDEF};
class Item87{id=87;PLRDEF};
class Item88{id=88;PLRDEF};
class Item89{id=89;PLRDEF};
class Item90{id=90;PLRDEF};
class Item91{id=91;PLRDEF};
class Item92{id=92;PLRDEF};
class Item93{id=93;PLRDEF};
class Item94{id=94;PLRDEF};
class Item95{id=95;PLRDEF};
class Item96{id=96;PLRDEF};
class Item97{id=97;PLRDEF};
class Item98{id=98;PLRDEF};
class Item99{id=99;PLRDEF};
};
};
class Item1
{
side="LOGIC";
class Vehicles
{
items=1;
class Item0
{
position[]={-144,0,2320};
id=50;
side="LOGIC";
vehicle="FunctionsManager";
leader=1;
lock="UNLOCKED";
skill=0.6;
};
};
};
};
class Markers
{
items=15;
class Item0
{
position[]={1056,51,1016};
name="center";
type="Empty";
a=2000;b=2000;
};
class Item1
{
position[]={3796,42,3281};
name="respawn_west";
type="Empty";
};
class Item2
{
position[]={436,70,420};
name="spawn0";
type="Empty";
};
class Item3
{
position[]={1294,19,1259};
name="spawn1";
type="Empty";
};
class Item4
{
position[]={1087,50,1678};
name="spawn2";
type="Empty";
};
class Item5
{
position[]={405,51,1684};
name="spawn3";
type="Empty";
};
class Item6
{
position[]={411,68,977};
name="spawn4";
type="Empty";
};
class Item7
{
position[]={751,51,770};
name="spawn5";
type="Empty";
};
class Item8
{
position[]={1412,49,432};
name="spawn6";
type="Empty";
};
class Item9
{
position[]={1685,52,1061};
name="spawn7";
type="Empty";
};
class Item10
{
position[]={1536,50,1530};
name="spawn8";
type="Empty";
};
class Item11
{
position[]={985,51,426};
name="spawn9";
type="Empty";
};
class Item12
{
position[]={1717,55,681};
name="spawn10";
type="Empty";
};
class Item13
{
position[]={1056,51,1016};
name="crashsites";
type="Empty";
a=2000;b=2000;
};
class Item14
{
position[]={1056,51,1016};
name="carepackages";
type="Empty";
a=2000;b=0;
};
};
};
class Intro
{
addOns[]=
{
"provinggrounds_pmc"
};
addOnsAuto[]=
{
"provinggrounds_pmc"
};
randomSeed=6913869;
class Intel
{
startWeather=0;
forecastWeather=0;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
};
};
class OutroWin
{
addOns[]=
{
"provinggrounds_pmc"
};
addOnsAuto[]=
{
"provinggrounds_pmc"
};
randomSeed=4081731;
class Intel
{
startWeather=0;
forecastWeather=0;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
};
};
class OutroLoose
{
addOns[]=
{
"provinggrounds_pmc"
};
addOnsAuto[]=
{
"provinggrounds_pmc"
};
randomSeed=4975929;
class Intel
{
startWeather=0;
forecastWeather=0;
year=2008;
month=10;
day=11;
hour=9;
minute=20;
};
};

View File

@@ -0,0 +1,29 @@
private ["_messages","_timeout"];
_messages = [
["DayZ Epoch", "Welcome "+(name player)],
["World", worldName],
["Teamspeak", "some TS info"],
["Website/Forums", "some website info"],
["Server Rules", "Duping, glitching or using any<br />exploit will result in a<br />permanent ban."],
["Server Rules", "No talking in side."],
["Server Rules", "Hackers will be banned permanently<br />Respect others"],
["News", "Some random new info!<br />Random news<br />"]
];
_timeout = 5;
{
private ["_title","_content","_titleText"];
uiSleep 2;
_title = _x select 0;
_content = _x select 1;
_titleText = format[("<t font='TahomaB' size='0.40' color='#a81e13' align='right' shadow='1' shadowColor='#000000'>%1</t><br /><t shadow='1'shadowColor='#000000' font='TahomaB' size='0.60' color='#FFFFFF' align='right'>%2</t>"), _title, _content];
[
_titleText,
[safezoneX + safezoneW - 0.8,0.50], //DEFAULT: 0.5,0.35
[safezoneY + safezoneH - 0.8,0.7], //DEFAULT: 0.8,0.7
_timeout,
0.5
] spawn BIS_fnc_dynamicText;
uiSleep (_timeout * 1.1);
} forEach _messages;

View File

@@ -0,0 +1 @@
#include "\z\addons\dayz_code\system\mission\server_traders\provinggrounds_pmc.sqf"

View File

@@ -0,0 +1,293 @@
[[
["CinderWallDoorway_DZ",[976.984,1215.27,-0.443199],39.1121],
["CinderWallDoorway_DZ",[945.555,1214.62,-0.101315],313.555],
["CinderWall_DZ",[972.241,1216.92,-3.8147e-006],359.214],
["CinderWall_DZ",[961.249,1216.79,0],359.214],
["CinderWall_DZ",[966.734,1216.86,-1.52588e-005],359.214],
["CinderWall_DZ",[955.781,1216.71,-1.14441e-005],359.214],
["CinderWall_DZ",[950.21,1216.68,0],359.214],
["CinderWallDoorway_DZ",[983.895,1180.57,-0.17802],128.966],
["CinderWallDoorway_DZ",[981.239,1211.74,-0.475555],39.7634],
["CinderWall_DZ",[985.228,1185.41,-0.261593],85.4228],
["CinderWall_DZ",[984.402,1196.37,0.0401306],85.4228],
["CinderWall_DZ",[984.804,1190.9,-0.0868568],85.4228],
["CinderWall_DZ",[983.992,1201.82,-0.0938873],85.4228],
["CinderWall_DZ",[983.565,1207.39,-0.162628],85.4228],
["CinderWallDoorway_DZ",[949.643,1175.85,-0.170128],221.869],
["CinderWall_DZ",[954.46,1174.18,-0.181534],177.972],
["CinderWall_DZ",[965.388,1174.55,-0.028286],177.972],
["CinderWall_DZ",[959.966,1174.4,-0.0656242],177.972],
["CinderWall_DZ",[970.852,1174.7,-0.0590706],177.972],
["CinderWall_DZ",[976.32,1174.86,-0.00225449],177.972],
["CinderWallDoorway_DZ",[942.069,1210.44,0.00261307],308.248],
["CinderWallDoorway_DZ",[945.526,1179.46,-0.129951],219.737],
["CinderWall_DZ",[940.699,1205.59,-0.0901642],264.181],
["CinderWall_DZ",[941.861,1194.65,-0.0561485],264.181],
["CinderWall_DZ",[941.248,1200.14,-0.0923615],264.181],
["CinderWall_DZ",[942.438,1189.22,-0.258442],264.181],
["CinderWall_DZ",[943.081,1184.04,-0.187229],261.743],
["CinderWall_DZ",[967.932,1174.62,3.244],177.972],
["CinderWall_DZ",[959.965,1174.38,3.25358],177.972],
["CinderWall_DZ",[954.468,1174.14,3.08314],177.451],
["CinderWall_DZ",[980.817,1177.02,3.14122],132.867],
["CinderWall_DZ",[985.291,1185.4,2.96782],85.3447],
["CinderWall_DZ",[983.912,1180.56,2.93311],129.189],
["CinderWall_DZ",[976.259,1174.88,3.23597],177.972],
["CinderWall_DZ",[984.489,1193.48,3.37339],85.96],
["CinderWall_DZ",[983.94,1201.89,3.1348],85.4228],
["CinderWall_DZ",[983.515,1207.33,2.8672],85.4228],
["CinderWall_DZ",[977.058,1215.18,2.93267],39.0011],
["CinderWall_DZ",[972.142,1216.85,2.7406],359.214],
["CinderWall_DZ",[963.39,1216.81,2.8353],359.214],
["CinderWall_DZ",[981.226,1211.68,2.88893],39.7152],
["CinderWall_DZ",[950.146,1216.71,2.57817],359.214],
["CinderWall_DZ",[955.557,1216.71,2.61822],359.214],
["CinderWall_DZ",[940.551,1205.54,2.98465],264.181],
["CinderWall_DZ",[943.117,1183.73,2.92743],261.073],
["CinderWall_DZ",[941.481,1197.35,3.17709],264.335],
["CinderWall_DZ",[942.409,1189.19,3.03446],264.181],
["Hhedgehog_concrete",[969.866,1204.71,0.00037384],41.7673],
["Land_fort_artillery_nest_EP1",[968.215,1192.19,-0.706707],314.748],
["Land_HBarrier5",[953.3,1202.35,-0.0666504],310.826],
["Land_HBarrier5",[951.012,1203.27,0.0305061],42.824],
["Hedgehog_EP1",[971.867,1189.65,1.14441e-005],0],
["Hedgehog_EP1",[973.657,1182.07,3.8147e-006],0],
["Hedgehog_EP1",[976.687,1184.92,1.52588e-005],0],
["Hedgehog_EP1",[969.881,1210.97,-0.00031662],0],
["Hedgehog_EP1",[974.817,1206.66,2.67029e-005],0],
["Hedgehog_EP1",[945.898,1206.32,0.00218964],0],
["Hedgehog_EP1",[949.955,1210.57,1.14441e-005],0],
["Hedgehog_EP1",[953.158,1179.7,7.62939e-006],0],
["Hedgehog_EP1",[947.84,1183.01,-3.43323e-005],0],
["MetalFloor_DZ",[955.601,1171.64,6.35788],358.138],
["MetalFloor_DZ",[960.645,1171.92,6.56357],358.725],
["MetalFloor_DZ",[965.894,1172.14,6.59444],358.512],
["MetalFloor_DZ",[971.071,1172.32,6.42937],358.129],
["MetalFloor_DZ",[976.314,1172.49,6.44034],358.638],
["MetalFloor_DZ",[987.806,1185.27,6.15173],355.137],
["MetalFloor_DZ",[987.308,1190.57,6.53068],355.671],
["MetalFloor_DZ",[986.826,1195.78,6.62959],356.018],
["MetalFloor_DZ",[986.441,1200.95,6.48613],355.137],
["MetalFloor_DZ",[986.04,1206.11,6.28288],355.137],
["MetalFloor_DZ",[972.241,1219.54,5.93409],359.205],
["MetalFloor_DZ",[967.006,1219.39,5.98956],359.882],
["MetalFloor_DZ",[961.755,1219.33,5.96],359.302],
["MetalFloor_DZ",[956.636,1219.34,5.8457],359.588],
["MetalFloor_DZ",[951.479,1219.22,5.86671],359.565],
["MetalFloor_DZ",[937.993,1205.44,6.23805],354.11],
["MetalFloor_DZ",[938.633,1200.23,6.30609],353.251],
["MetalFloor_DZ",[939.125,1195.03,6.47768],354.805],
["MetalFloor_DZ",[939.531,1189.92,6.21239],353.051],
["MetalFloor_DZ",[940.227,1184.72,5.91095],353.206],
["ASC_EU_LHSSidl3",[955.655,1191.81,0.0237045],53.8627],
["ASC_EU_LHSSidl3",[966.134,1205.67,0.000507355],13.0255],
["ASC_EU_LHSSidl3",[971.324,1189.91,0.0457878],117.146],
["Hedgehog_EP1",[955.113,1192.09,0.000751495],49.1537],
["StickFence_DZ",[984.366,1197.6,6.18712],84.7381],
["StickFence_DZ",[983.778,1203.38,5.83572],84.8802],
["StickFence_DZ",[984.239,1197.53,6.72771],266.637],
["StickFence_DZ",[984.517,1193.15,6.3976],263.87],
["StickFence_DZ",[985.244,1188.22,5.58973],266.376],
["StickFence_DZ",[973.094,1174.71,6.33237],178.018],
["StickFence_DZ",[967.363,1174.68,6.55743],177.17],
["StickFence_DZ",[961.364,1174.4,6.48333],177.198],
["StickFence_DZ",[955.343,1174.09,6.64089],177.522],
["StickFence_DZ",[951.853,1173.95,6.50293],177.185],
["StickFence_DZ",[942.71,1186.96,5.68189],260.655],
["StickFence_DZ",[942.074,1192.99,6.01574],263.949],
["StickFence_DZ",[941.396,1198.63,6.26609],263.903],
["StickFence_DZ",[940.231,1208.32,6.29235],263.881],
["StickFence_DZ",[940.735,1204.78,6.42628],262.012],
["CinderWall_DZ",[935.439,1204.95,1.14441e-005],264.181],
["CinderWall_DZ",[935.983,1199.51,7.62939e-006],264.181],
["CinderWall_DZ",[936.562,1194.04,3.8147e-006],264.181],
["CinderWall_DZ",[936.567,1194,3.21829],264.181],
["CinderWall_DZ",[937.659,1183.13,0],264.181],
["CinderWall_DZ",[935.447,1204.88,3.06919],264.181],
["CinderWall_DZ",[935.986,1199.47,3.17212],264.181],
["CinderWall_DZ",[937.1,1188.58,-7.62939e-006],264.181],
["CinderWall_DZ",[937.124,1188.55,2.97734],264.181],
["CinderWall_DZ",[937.642,1183.12,2.77005],264.181],
["CinderWallHalf_DZ",[937.453,1183.17,5.60094],84.0432],
["CinderWallHalf_DZ",[936.963,1188.57,5.88636],84.0432],
["CinderWallHalf_DZ",[936.386,1194.01,6.13657],84.0432],
["CinderWallHalf_DZ",[935.835,1199.45,6.09727],84.0432],
["CinderWallHalf_DZ",[935.299,1204.88,6.00894],84.0432],
["WoodStairs_DZ",[941.916,1184.96,-3.8147e-006],82.1641],
["WoodStairsSans_DZ",[942.421,1181.5,2.73257],82.0212],
["CinderWall_DZ",[945.628,1179.37,2.85081],220.479],
["CinderWall_DZ",[949.799,1175.76,2.87164],220.919],
["MetalFloor_DZ",[950.399,1171.44,6.08228],359.28],
["MetalFloor_DZ",[948.461,1173.49,5.85706],40.184],
["MetalFloor_DZ",[944.543,1176.85,5.48692],40.184],
["MetalFloor_DZ",[941.469,1176.95,5.34682],79.6804],
["MetalFloor_DZ",[946.874,1174.6,5.65068],40.184],
["MetalFloor_DZ",[949.629,1172.25,6.05459],41.7704],
["WoodFloorHalf_DZ",[940.34,1181.69,5.57521],351.676],
["WoodFloorHalf_DZ",[939.163,1181.52,5.56256],351.676],
["WoodSmallWallThird_DZ",[941.442,1181.81,5.83001],84.4246],
["CinderWall_DZ",[945.555,1214.64,3.22721],313.747],
["CinderWall_DZ",[942.087,1210.43,3.29107],308.521],
["CinderWall_DZ",[951.062,1221.78,1.14441e-005],359.214],
["CinderWall_DZ",[951.073,1221.83,2.57023],359.214],
["CinderWall_DZ",[956.599,1221.88,7.62939e-006],359.214],
["CinderWall_DZ",[956.576,1221.89,2.57999],359.214],
["CinderWall_DZ",[962.134,1221.99,0],359.214],
["CinderWall_DZ",[962.103,1221.97,2.76917],359.214],
["CinderWall_DZ",[967.65,1222.08,3.8147e-006],359.214],
["CinderWall_DZ",[967.635,1222.09,2.82784],359.214],
["CinderWall_DZ",[973.164,1222.16,1.52588e-005],359.214],
["CinderWall_DZ",[973.152,1222.18,2.7491],359.214],
["CinderWall_DZ",[988.518,1206.91,3.8147e-006],85.4228],
["CinderWall_DZ",[988.502,1206.92,3.10253],85.4228],
["CinderWall_DZ",[989.01,1201.38,1.52588e-005],85.4228],
["CinderWall_DZ",[989.018,1201.37,3.28712],85.4228],
["CinderWall_DZ",[989.958,1190.49,-0.144562],84.9039],
["CinderWall_DZ",[989.447,1195.89,7.62939e-006],85.4228],
["CinderWall_DZ",[990.37,1185.04,-0.147274],85.9191],
["CinderWall_DZ",[989.972,1190.49,3.24838],84.6628],
["CinderWall_DZ",[989.44,1195.91,3.37709],85.4228],
["CinderWall_DZ",[990.379,1185.01,2.95572],86.5865],
["CinderWall_DZ",[976.654,1170.02,3.23813],177.972],
["CinderWall_DZ",[976.653,1170,7.62939e-006],177.972],
["CinderWall_DZ",[971.202,1169.82,-3.8147e-006],177.972],
["CinderWall_DZ",[971.18,1169.83,3.25184],177.972],
["CinderWall_DZ",[965.728,1169.62,-3.8147e-006],177.972],
["CinderWall_DZ",[965.74,1169.62,3.40475],177.972],
["CinderWall_DZ",[960.205,1169.38,1.14441e-005],177.972],
["CinderWall_DZ",[960.253,1169.38,3.29936],177.972],
["CinderWall_DZ",[954.799,1169.18,7.62939e-006],177.972],
["CinderWall_DZ",[954.816,1169.17,3.17039],177.972],
["CinderWall_DZ",[936.128,1178.54,1.52588e-005],312.428],
["CinderWall_DZ",[950.313,1167.07,2.28882e-005],312.428],
["CinderWall_DZ",[932.482,1174.58,-0.694527],312.428],
["CinderWall_DZ",[928.781,1170.47,-1.20905],312.428],
["CinderWall_DZ",[925.122,1166.45,-1.97747],312.428],
["CinderWall_DZ",[946.784,1163.2,-0.608566],312.428],
["CinderWall_DZ",[943.096,1159.11,-1.07853],312.428],
["CinderWall_DZ",[939.371,1155.03,-1.73198],312.428],
["MetalFloor_DZ",[938.25,1176.91,5.39157],40.184],
["MetalFloor_DZ",[942.199,1173.51,5.4772],40.184],
["MetalFloor_DZ",[945.787,1170.46,5.60971],40.184],
["MetalFloor_DZ",[947.693,1171.77,5.69744],40.184],
["MetalFloor_DZ",[948.027,1168.56,5.6922],41.826],
["MetalFloor_DZ",[949.857,1170.6,5.76693],42.3183],
["CinderWall_DZ",[950.275,1167.08,2.50747],312.428],
["CinderWall_DZ",[936.144,1178.54,2.18224],312.428],
["CinderWallHalf_DZ",[937.178,1174.42,5.06492],40.1731],
["CinderWallHalf_DZ",[941.361,1170.89,5.18294],40.1731],
["CinderWallHalf_DZ",[945.486,1167.35,5.39827],40.1731],
["CinderWallHalf_DZ",[949.595,1167.22,5.48086],318.428],
["CinderWallHalf_DZ",[936.414,1178.44,5.1215],121.401],
["CinderWallHalf_DZ",[950.209,1221.93,5.44668],179.41],
["CinderWallHalf_DZ",[955.686,1221.98,5.50394],179.41],
["CinderWallHalf_DZ",[961.202,1222.12,5.66407],178.008],
["CinderWallHalf_DZ",[966.683,1222.25,5.75426],178.801],
["CinderWallHalf_DZ",[972.175,1222.35,5.6651],178.747],
["CinderWallHalf_DZ",[988.722,1206.94,5.98897],85.4496],
["CinderWallHalf_DZ",[989.234,1201.47,6.22879],85.4496],
["CinderWallHalf_DZ",[989.667,1196.01,6.34134],85.4496],
["CinderWallHalf_DZ",[990.076,1190.55,6.24053],85.4496],
["CinderWallHalf_DZ",[990.555,1185.09,5.88425],85.4496],
["CinderWallHalf_DZ",[976.351,1169.73,6.01692],178.197],
["CinderWallHalf_DZ",[970.825,1169.54,5.98925],178.197],
["CinderWallHalf_DZ",[965.306,1169.37,6.13867],178.197],
["CinderWallHalf_DZ",[959.779,1169.22,6.04921],178.197],
["CinderWallHalf_DZ",[954.333,1169.04,5.89339],178.197],
["MetalFloor_DZ",[977.427,1219.67,6.02264],359.205],
["MetalFloor_DZ",[978.574,1217.35,6.03312],39.462],
["MetalFloor_DZ",[982.568,1214.04,5.943],39.462],
["MetalFloor_DZ",[985.696,1211.33,5.99406],355.137],
["CinderWall_DZ",[977.492,1222.22,2.71906],359.214],
["CinderWall_DZ",[977.56,1222.18,-0.0800743],359.214],
["CinderWall_DZ",[988.173,1211.98,-7.62939e-006],85.4228],
["CinderWall_DZ",[988.168,1211.96,2.82049],85.4228],
["CinderWallHalf_DZ",[988.32,1211.98,5.77655],85.4496],
["CinderWallHalf_DZ",[977.702,1222.51,5.71082],178.888],
["MetalFloor_DZ",[946.357,1219.22,5.78566],359.565],
["MetalFloor_DZ",[937.468,1210.58,6.10641],354.11],
["CinderWall_DZ",[934.836,1210.3,4.95911e-005],264.181],
["CinderWall_DZ",[934.858,1210.31,2.97308],264.181],
["CinderWallHalf_DZ",[934.733,1210.34,5.8187],84.0432],
["CinderWall_DZ",[945.901,1221.75,3.43323e-005],359.214],
["CinderWall_DZ",[945.9,1221.75,2.51738],359.214],
["CinderWallHalf_DZ",[946.125,1221.91,5.37221],179.41],
["MetalFloor_DZ",[943.832,1216.43,5.85559],312.548],
["MetalFloor_DZ",[940.227,1212.62,6.11334],312.548],
["CinderWall_DZ",[934.659,1213.15,2.72847],355.389],
["CinderWall_DZ",[934.686,1213.17,3.8147e-005],355.389],
["CinderWall_DZ",[943.097,1222.81,2.55053],79.315],
["CinderWall_DZ",[943.137,1222.82,6.86646e-005],77.9826],
["CinderWall_DZ",[941.628,1218.21,6.48499e-005],133.84],
["CinderWall_DZ",[939.045,1215.48,1.52588e-005],312.906],
["CinderWall_DZ",[980.129,1221.88,2.74619],93.473],
["CinderWall_DZ",[980.147,1221.83,4.19617e-005],93.473],
["CinderWall_DZ",[987.875,1214.44,2.68058],172.922],
["CinderWall_DZ",[982.929,1216.69,0],220.993],
["MetalFloor_DZ",[981.333,1172.71,6.40252],358.638],
["MetalFloor_DZ",[988.13,1180.17,5.95206],355.137],
["MetalFloor_DZ",[985.953,1178.88,6.05577],39.4745],
["MetalFloor_DZ",[982.486,1174.92,6.1931],42.2942],
["CinderWall_DZ",[981.442,1170.14,3.25401],177.972],
["CinderWall_DZ",[981.305,1170.12,5.72205e-005],177.972],
["CinderWall_DZ",[990.73,1180.19,4.57764e-005],85.9191],
["CinderWall_DZ",[990.776,1180.15,2.82954],85.9191],
["CinderWallHalf_DZ",[981.482,1169.92,6.14946],178.197],
["CinderWallHalf_DZ",[990.854,1180.24,5.85303],85.4496],
["CinderWall_DZ",[984.009,1170.48,3.23127],270.996],
["CinderWall_DZ",[983.982,1170.59,0.000106812],270.996],
["CinderWall_DZ",[990.786,1177.53,2.95412],176.267],
["CinderWall_DZ",[990.755,1177.49,5.72205e-005],176.267],
["CinderWall_DZ",[985.976,1175.37,4.57764e-005],313.826],
["CinderWall_DZ",[987.808,1214.53,3.05176e-005],172.922],
["CinderWall_DZ",[987.4,1214.99,-0.0345573],179.841],
["CinderWall_DZ",[980.624,1221.29,-0.0338974],268.68],
["CinderWallDoorway_DZ",[980.566,1176.93,5.72205e-005],133.81],
["CinderWallHalf_DZ",[984.377,1172.76,6.10587],93.1556],
["CinderWallHalf_DZ",[986.23,1175.21,6.17387],131.193],
["CinderWall_DZ",[985.974,1175.4,2.82037],134.756],
["CinderWallHalf_DZ",[988.44,1177.28,5.83849],176.314],
["CinderWall_DZ",[982.138,1217.26,2.78906],222.032],
["CinderWall_DZ",[983.267,1216.35,2.76676],220.975],
["CinderWallHalf_DZ",[985.449,1214.41,5.79045],357.689],
["CinderWallHalf_DZ",[982.119,1216.44,5.91348],43.1646],
["CinderWallHalf_DZ",[980.162,1220.03,5.90006],90.6777],
["CinderWall_DZ",[938.912,1215.32,2.79089],312.482],
["CinderWall_DZ",[941.945,1218.49,2.6018],313.783],
["CinderWallHalf_DZ",[937.033,1213.55,5.61055],174.476],
["CinderWallHalf_DZ",[939.256,1215.75,5.70743],134.5],
["CinderWallHalf_DZ",[943.12,1219.75,5.54214],133.215],
["CinderWallHalf_DZ",[983.574,1180.63,5.41323],131.193],
["CinderWallHalf_DZ",[980.131,1176.94,5.59452],134.822],
["CinderWallHalf_DZ",[945.567,1179.64,5.58326],40.1731],
["CinderWallHalf_DZ",[949.794,1175.96,5.55577],40.889],
["CinderWallHalf_DZ",[942.112,1210.36,5.98886],128.429],
["CinderWallHalf_DZ",[945.752,1214.6,5.52753],136.148],
["StickFence_DZ",[947.392,1216.74,5.97103],179.677],
["StickFence_DZ",[953.526,1216.63,5.74483],179.652],
["StickFence_DZ",[959.751,1216.81,6.11923],179.681],
["StickFence_DZ",[966.123,1216.93,6.11343],179.644],
["StickFence_DZ",[970.573,1216.85,5.86277],179.64],
["CinderWallHalf_DZ",[976.902,1214.97,5.60852],39.3978],
["CinderWallHalf_DZ",[981.357,1211.44,5.58425],38.7035],
["WoodFloorHalf_DZ",[941.471,1185.03,-0.19669],353.557],
["WoodFloorHalf_DZ",[941.414,1185.89,-0.310207],353.557],
["Land_obstacle_run_duck",[951.81,1184.28,0.00556564],42.0114],
["Land_obstacle_prone",[955.689,1187.49,0.0202446],359.982],
["Land_obihacka",[962.578,1194.01,0.00494385],309.386],
["Land_obstacle_get_over",[954.983,1181.51,0.000366211],226.476],
["Dirtmount_EP1",[960.924,1210.33,-0.612274],63.4211],
["Land_ConcreteRamp",[952.203,1193.4,-1.63663],86.6891],
["FlagCarrierOPFOR_EP1",[935.967,1180.03,-0.00762558],198.708],
["FlagCarrierOPFOR_EP1",[952.207,1167.5,0.00447845],198.708],
["FlagCarrierOPFOR_EP1",[939.196,1153.19,0.0133972],198.708],
["FlagCarrierOPFOR_EP1",[923.611,1166.12,-0.0164032],198.708],
["FlagCarrierOPFOR_EP1",[981.98,1167.7,0.00276184],198.708],
["FlagCarrierOPFOR_EP1",[993.432,1179.82,-0.00306702],198.708],
["FlagCarrierOPFOR_EP1",[990.172,1212.92,-0.00618362],198.708],
["FlagCarrierOPFOR_EP1",[978.505,1224.08,0.00775909],198.708],
["FlagCarrierOPFOR_EP1",[944.545,1225.2,0.015377],198.708],
["FlagCarrierOPFOR_EP1",[931.994,1211.14,0.0169449],198.708],
["FlagCarrierOPFOR_EP1",[944.925,1178.76,5.71742],198.708],
["FlagCarrierOPFOR_EP1",[948.911,1174.81,5.66268],198.708]
],true,false,true] call fnc_spawnObjects;