From afa1036ca96cd206b018a6a503cf7aa0897b5123 Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Mon, 20 Jan 2014 09:03:17 -0600 Subject: [PATCH] Sauerland mission file part 1 --- .../DayZ_Epoch_25.sauerland/description.ext | 150 ++ .../DayZ_Epoch_25.sauerland/init.sqf | 93 + .../DayZ_Epoch_25.sauerland/mission.sqm | 1544 +++++++++++++++++ .../server_traders.sqf | 158 ++ 4 files changed, 1945 insertions(+) create mode 100644 Server Files/MPMissions/DayZ_Epoch_25.sauerland/description.ext create mode 100644 Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf create mode 100644 Server Files/MPMissions/DayZ_Epoch_25.sauerland/mission.sqm create mode 100644 Server Files/MPMissions/DayZ_Epoch_25.sauerland/server_traders.sqf diff --git a/Server Files/MPMissions/DayZ_Epoch_25.sauerland/description.ext b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/description.ext new file mode 100644 index 000000000..2239a934b --- /dev/null +++ b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/description.ext @@ -0,0 +1,150 @@ +respawn = "BASE"; +respawndelay = 5; +onLoadMission="DayZ_Epoch Sauerland"; +OnLoadIntro = "Welcome to Sauerland"; +OnLoadIntroTime = False; +OnLoadMissionTime = False; +disabledAI = true; +disableChannels[]={0,2,6}; +enableItemsDropping=0; + +briefing = 0; +debriefing = 0; + +onPauseScript = ""; +loadScreen = "\z\addons\dayz_code\gui\dayz_logo_ca.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; + +class RscText +{ + type = 0; + idc = -1; + x = 0; + y = 0; + h = 0.037; + w = 0.3; + style = 0x100; + font = Zeppelin32; + SizeEx = 0.03921; + colorText[] = {1,1,1,1}; + colorBackground[] = {0, 0, 0, 0}; + linespacing = 1; +}; +class RscPicture +{ + access=0; + type=0; + idc=-1; + style=48; + colorBackground[]={0,0,0,0}; + colorText[]={1,1,1,1}; + font="TahomaB"; + sizeEx=0; + lineSpacing=0; + text=""; +}; +class RscLoadingText : RscText +{ + style = 2; + x = 0.323532; + y = 0.666672; + w = 0.352944; + h = 0.039216; + sizeEx = 0.03921; + colorText[] = {0.543,0.5742,0.4102,1.0}; +}; +class RscProgress +{ + x = 0.344; + y = 0.619; + w = 0.313726; + h = 0.0261438; + texture = "\ca\ui\data\loadscreen_progressbar_ca.paa"; + colorFrame[] = {0,0,0,0}; + colorBar[] = {1,1,1,1}; +}; +class RscProgressNotFreeze +{ + idc = -1; + type = 45; + style = 0; + x = 0.022059; + y = 0.911772; + w = 0.029412; + h = 0.039216; + texture = "#(argb,8,8,3)color(0,0,0,0)"; +}; +// +// the loading screen itself +// +class DayZ_loadingScreen +{ + idd = -1; + duration = 10e10; + fadein = 0; + fadeout = 0; + name = "loading screen"; + class controlsBackground + { + class blackBG : RscText + { + x = safezoneX; + y = safezoneY; + w = safezoneW; + h = safezoneH; + text = ""; + colorText[] = {0,0,0,0}; + colorBackground[] = {0,0,0,1}; + }; + /* + class nicePic : RscPicture + { + style = 48 + 0x800; // ST_PICTURE + ST_KEEP_ASPECT_RATIO + x = safezoneX + safezoneW/2 - 0.25; + y = safezoneY + safezoneH/2 - 0.2; + w = 0.5; + h = 0.4; + text = "img\nicePic.paa"; + }; + */ + }; + class controls + { + class Title1 : RscLoadingText + { + text = "$STR_LOADING"; // "Loading" text in the middle of the screen + }; + class CA_Progress : RscProgress // progress bar, has to have idc 104 + { + idc = 104; + type = 8; // CT_PROGRESS + style = 0; // ST_SINGLE + texture = "\ca\ui\data\loadscreen_progressbar_ca.paa"; + }; + class CA_Progress2 : RscProgressNotFreeze // progress bar that will go reverse + { + idc = 103; + }; + class Name2: RscText // the text on the top-left + { + idc = 101; + x = 0.05; + y = 0.029412; + w = 0.9; + h = 0.04902; + text = ""; + sizeEx = 0.05; + colorText[] = {0.543,0.5742,0.4102,1.0}; + }; + }; +}; diff --git a/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf new file mode 100644 index 000000000..d7f2addbb --- /dev/null +++ b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/init.sqf @@ -0,0 +1,93 @@ +/* + For DayZ Epoch + Addons Credits: Jetski Yanahui by Kol9yN, Zakat, Gerasimow9, YuraPetrov, zGuba, A.Karagod, IceBreakr, Sahbazz +*/ +startLoadingScreen ["","RscDisplayLoadCustom"]; +cutText ["","BLACK OUT"]; +enableSaving [false, false]; + +//REALLY IMPORTANT VALUES +dayZ_instance = 24; //The instance +dayzHiveRequest = []; +initialized = false; +dayz_previousID = 0; + +//disable greeting menu +player setVariable ["BIS_noCoreConversations", true]; +//disable radio messages to be heard and shown in the left lower corner of the screen +enableRadio false; +// May prevent "how are you civillian?" messages from NPC +enableSentences false; + +// DayZ Epochconfig +spawnShoremode = 1; // Default = 1 (on shore) +spawnArea= 1500; // Default = 1500 +// +MaxVehicleLimit = 300; // Default = 50 +MaxDynamicDebris = 500; // Default = 100 +dayz_MapArea = 18000; // Default = 10000 + +dayz_minpos = -1000; +dayz_maxpos = 26000; + +dayz_paraSpawn = true; + +dayz_sellDistance_vehicle = 10; +dayz_sellDistance_boat = 30; +dayz_sellDistance_air = 40; + +dayz_maxAnimals = 5; // Default: 8 +dayz_tameDogs = true; +DynamicVehicleDamageLow = 0; // Default: 0 +DynamicVehicleDamageHigh = 100; // Default: 100 + +DZE_BuildOnRoads = false; // Default: False + +EpochEvents = [["any","any","any","any",30,"crash_spawner"],["any","any","any","any",0,"crash_spawner"],["any","any","any","any",15,"supply_drop"]]; +dayz_fullMoonNights = true; + +//Load in compiled functions +call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\variables.sqf"; //Initilize the Variables (IMPORTANT: Must happen very early) +progressLoadingScreen 0.1; +call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\publicEH.sqf"; //Initilize the publicVariable event handlers +progressLoadingScreen 0.2; +call compile preprocessFileLineNumbers "\z\addons\dayz_code\medical\setup_functions_med.sqf"; //Functions used by CLIENT for medical +progressLoadingScreen 0.4; +call compile preprocessFileLineNumbers "\z\addons\dayz_code\init\compiles.sqf"; //Compile regular functions +progressLoadingScreen 0.5; +call compile preprocessFileLineNumbers "server_traders.sqf"; //Compile trader configs +progressLoadingScreen 1.0; + +"filmic" setToneMappingParams [0.153, 0.357, 0.231, 0.1573, 0.011, 3.750, 6, 4]; setToneMapping "Filmic"; + +if (isServer) then { + //Compile vehicle configs + call compile preprocessFileLineNumbers "\z\addons\dayz_server\missions\DayZ_Epoch_24.Napf\dynamic_vehicle.sqf"; + // Add trader citys + _nil = [] execVM "\z\addons\dayz_server\missions\DayZ_Epoch_24.Napf\mission.sqf"; + + _serverMonitor = [] execVM "\z\addons\dayz_code\system\server_monitor.sqf"; +}; + +if (!isDedicated) then { + //Conduct map operations + 0 fadeSound 0; + waitUntil {!isNil "dayz_loadScreenMsg"}; + dayz_loadScreenMsg = (localize "STR_AUTHENTICATING"); + + //Run the player monitor + _id = player addEventHandler ["Respawn", {_id = [] spawn player_death;}]; + _playerMonitor = [] execVM "\z\addons\dayz_code\system\player_monitor.sqf"; + + + //anti Hack + [] execVM "\z\addons\dayz_code\system\antihack.sqf"; + + //Lights + //[0,0,true,true,true,58,280,600,[0.698, 0.556, 0.419],"Generator_DZ",0.1] execVM "\z\addons\dayz_code\compile\local_lights_init.sqf"; +}; +#include "\z\addons\dayz_code\system\REsec.sqf" +//Start Dynamic Weather +execVM "\z\addons\dayz_code\external\DynamicWeatherEffects.sqf"; + +#include "\z\addons\dayz_code\system\BIS_Effects\init.sqf" diff --git a/Server Files/MPMissions/DayZ_Epoch_25.sauerland/mission.sqm b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/mission.sqm new file mode 100644 index 000000000..240e49c3c --- /dev/null +++ b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/mission.sqm @@ -0,0 +1,1544 @@ +version=11; +class Mission +{ + addOns[]= + { + "sauerland", + "ca_modules_animals", + "dayz_anim", + "dayz_code", + "dayz_communityassets", + "dayz_weapons", + "dayz_equip", + "dayz_epoch", + "dayz_vehicles", + "cacharacters_pmc", + "ca_modules_functions", + "warfarebuildings", + "glt_m300t", + "pook_h13", + "csj_gyroac", + "map_eu", + "jetskiyanahuiaddon" + }; + addOnsAuto[]= + { + "dayz_weapons", + "ca_modules_functions", + "sauerland" + }; + randomSeed=11171215; + class Intel + { + briefingName="DayZ Epoch Sauerland"; + briefingDescription="DayZ Epoch Sauerland"; + startWeather=0.067362607; + forecastWeather=0.52341133; + year=2008; + month=6; + day=1; + hour=12; + }; + class Groups + { + items=2; + class Item0 + { + side="WEST"; + class Vehicles + { + items=100; + class Item0 + { + position[]={12547.952,213.96292,-5866.5972}; + azimut=-17.0839; + id=11; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item1 + { + position[]={12547.667,213.9644,-5865.8027}; + azimut=-17.0839; + id=0; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAYER COMMANDER"; + leader=1; + rank="SERGEANT"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item2 + { + position[]={12546.902,213.97403,-5866.2378}; + azimut=-17.083944; + id=5; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item3 + { + position[]={12547.108,213.96887,-5864.9644}; + azimut=-17.083944; + id=8; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item4 + { + position[]={12547.385,213.96764,-5865.8198}; + azimut=-17.083944; + id=18; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item5 + { + position[]={12546.636,213.97791,-5866.6328}; + azimut=-17.083944; + id=2; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item6 + { + position[]={12548.205,213.95918,-5866.2007}; + azimut=-17.083937; + id=9; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item7 + { + position[]={12548.776,213.95081,-5865.3403}; + azimut=-17.083944; + id=21; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item8 + { + position[]={12548.667,213.9552,-5866.7632}; + azimut=-17.083944; + id=13; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item9 + { + position[]={12547.302,213.96988,-5866.4058}; + azimut=-17.083944; + id=7; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item10 + { + position[]={12547.28,213.96741,-5865.1797}; + azimut=-17.0839; + id=36; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item11 + { + position[]={12547.385,213.96854,-5866.2314}; + azimut=-17.083944; + id=25; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item12 + { + position[]={12547.837,213.96465,-5866.7798}; + azimut=-17.083944; + id=43; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item13 + { + position[]={12548.626,213.95485,-5866.3979}; + azimut=-17.083944; + id=30; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item14 + { + position[]={12548.179,213.95673,-5864.9507}; + azimut=-17.083944; + id=33; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item15 + { + position[]={12548.364,213.95599,-5865.5737}; + azimut=-17.083944; + id=1; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item16 + { + position[]={12546.689,213.97507,-5865.6133}; + azimut=-17.083944; + id=4; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item17 + { + position[]={12548.61,213.95226,-5865.1362}; + azimut=-17.083944; + id=3; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item18 + { + position[]={12547.123,213.97057,-5865.811}; + azimut=-17.083944; + id=6; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item19 + { + position[]={12546.862,213.97356,-5865.8198}; + azimut=-17.083944; + id=10; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item20 + { + position[]={12548.236,213.95969,-5866.5859}; + azimut=-17.083944; + id=16; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item21 + { + position[]={12547.785,213.96165,-5865.1641}; + azimut=-17.083944; + id=19; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item22 + { + position[]={12548.494,213.95404,-5865.3511}; + azimut=-17.083944; + id=15; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item23 + { + position[]={12547.781,213.96448,-5866.4233}; + azimut=-17.083944; + id=23; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item24 + { + position[]={12548.904,213.94989,-5865.5762}; + azimut=-17.083944; + id=26; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item25 + { + position[]={12548.937,213.95132,-5866.3931}; + azimut=-17.083944; + id=29; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item26 + { + position[]={12548.315,213.95837,-5866.4028}; + azimut=-17.083944; + id=31; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item27 + { + position[]={12548.098,213.95903,-5865.5776}; + azimut=-17.083944; + id=28; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item28 + { + position[]={12548.182,213.95856,-5865.7974}; + azimut=-17.083944; + id=35; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item29 + { + position[]={12548.796,213.95334,-5866.5835}; + azimut=-17.083944; + id=27; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item30 + { + position[]={12547.162,213.97189,-5866.6108}; + azimut=-17.083937; + id=34; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item31 + { + position[]={12548.398,213.95827,-5866.7759}; + azimut=-17.083944; + id=46; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item32 + { + position[]={12547.895,213.95993,-5864.9473}; + azimut=-17.083944; + id=38; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item33 + { + position[]={12548.341,213.95531,-5865.1372}; + azimut=-17.083944; + id=32; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item34 + { + position[]={12547.791,213.96254,-5865.5923}; + azimut=-17.083944; + id=47; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item35 + { + position[]={12546.917,213.97472,-5866.6284}; + azimut=-17.083944; + id=41; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item36 + { + position[]={12548.73,213.95045,-5864.9438}; + azimut=-17.083944; + id=40; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item37 + { + position[]={12547.324,213.97049,-5866.8022}; + azimut=-17.083944; + id=44; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item38 + { + position[]={12548.055,213.95856,-5865.147}; + azimut=-17.083944; + id=48; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item39 + { + position[]={12546.848,213.97185,-5864.9731}; + azimut=-17.083944; + id=39; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item40 + { + position[]={12548.898,213.94901,-5865.1479}; + azimut=-17.083944; + id=37; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item41 + { + position[]={12547.026,213.97301,-5866.4175}; + azimut=-17.083944; + id=45; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item42 + { + position[]={12546.362,213.97929,-5865.854}; + azimut=-17.0839; + id=49; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item43 + { + position[]={12548.486,213.95685,-5866.5903}; + azimut=-17.083944; + id=42; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item44 + { + position[]={12547.688,213.96593,-5866.603}; + azimut=-17.083944; + id=22; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item45 + { + position[]={12548.214,213.95721,-5865.3511}; + azimut=-17.083944; + id=12; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item46 + { + position[]={12548.325,213.95741,-5866.0146}; + azimut=-17.083944; + id=14; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item47 + { + position[]={12546.977,213.9718,-5865.6143}; + azimut=-17.0839; + id=24; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item48 + { + position[]={12547.258,213.9686,-5865.5996}; + azimut=-17.083944; + id=20; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item49 + { + position[]={12548.458,213.95543,-5865.7993}; + azimut=-17.083944; + id=17; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item50 + { + position[]={12547.92,213.96246,-5866.2246}; + azimut=-17.0839; + id=51; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item51 + { + position[]={12548.444,213.95372,-5864.9497}; + azimut=-17.0839; + id=52; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item52 + { + position[]={12546.721,213.97372,-5865.1724}; + azimut=-17.0839; + id=55; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item53 + { + position[]={12546.446,213.97784,-5865.6274}; + azimut=-17.0839; + id=53; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item54 + { + position[]={12547.528,213.96458,-5865.1758}; + azimut=-17.0839; + id=54; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item55 + { + position[]={12546.761,213.97606,-5866.4399}; + azimut=-17.0839; + id=70; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item56 + { + position[]={12546.578,213.97583,-5865.3911}; + azimut=-17.0839; + id=60; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item57 + { + position[]={12547.522,213.96739,-5866.4126}; + azimut=-17.0839; + id=68; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item58 + { + position[]={12546.751,213.97528,-5866.0308}; + azimut=-17.0839; + id=66; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item59 + { + position[]={12546.376,213.98087,-5866.6392}; + azimut=-17.0839; + id=61; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item60 + { + position[]={12547.158,213.97108,-5866.2192}; + azimut=-17.0839; + id=63; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item61 + { + position[]={12547.891,213.96184,-5865.7905}; + azimut=-17.0839; + id=72; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item62 + { + position[]={12547.576,213.96762,-5866.7983}; + azimut=-17.0839; + id=57; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item63 + { + position[]={12546.378,213.98,-5866.2471}; + azimut=-17.0839; + id=58; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item64 + { + position[]={12547.366,213.96689,-5865.3843}; + azimut=-17.0839; + id=62; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item65 + { + position[]={12546.627,213.97713,-5866.2393}; + azimut=-17.0839; + id=75; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item66 + { + position[]={12546.504,213.97809,-5866.0381}; + azimut=-17.0839; + id=56; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item67 + { + position[]={12546.462,213.97667,-5865.1821}; + azimut=-17.0839; + id=73; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item68 + { + position[]={12548.951,213.95198,-5866.7603}; + azimut=-17.0839; + id=69; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item69 + { + position[]={12546.368,213.97824,-5865.4097}; + azimut=-17.0839; + id=67; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item70 + { + position[]={12548.12,213.96143,-5866.7827}; + azimut=-17.0839; + id=65; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item71 + { + position[]={12547.686,213.96516,-5866.2407}; + azimut=-17.0839; + id=74; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item72 + { + position[]={12547.262,213.96947,-5866.0229}; + azimut=-17.0839; + id=71; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item73 + { + position[]={12548.068,213.96117,-5866.397}; + azimut=-17.0839; + id=59; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item74 + { + position[]={12548.769,213.9528,-5866.2036}; + azimut=-17.0839; + id=64; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item75 + { + position[]={12548.886,213.95103,-5866.0015}; + azimut=-17.0839; + id=81; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item76 + { + position[]={12548.466,213.95627,-5866.2173}; + azimut=-17.0839; + id=83; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item77 + { + position[]={12546.356,213.97745,-5864.9922}; + azimut=-17.0839; + id=82; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item78 + { + position[]={12547.373,213.96587,-5864.9575}; + azimut=-17.0839; + id=84; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item79 + { + position[]={12547.043,213.97371,-5866.814}; + azimut=-17.0839; + id=85; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item80 + { + position[]={12546.993,213.97064,-5865.1753}; + azimut=-17.0839; + id=77; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item81 + { + position[]={12546.49,213.97914,-5866.4419}; + azimut=-17.0839; + id=78; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item82 + { + position[]={12546.801,213.97644,-5866.8101}; + azimut=-17.0839; + id=79; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item83 + { + position[]={12547.394,213.9693,-5866.6138}; + azimut=-17.0839; + id=76; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item84 + { + position[]={12547.654,213.96361,-5865.3833}; + azimut=-17.0839; + id=80; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item85 + { + position[]={12547.507,213.96672,-5866.0283}; + azimut=-17.0839; + id=97; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item86 + { + position[]={12547.015,213.97231,-5866.0347}; + azimut=-17.0839; + id=98; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item87 + { + position[]={12548.044,213.9606,-5866.0161}; + azimut=-17.0839; + id=99; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item88 + { + position[]={12548.742,213.95219,-5865.7876}; + azimut=-17.0839; + id=100; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item89 + { + position[]={12546.6,213.97655,-5865.8267}; + azimut=-17.0839; + id=96; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item90 + { + position[]={12546.522,213.97961,-5866.8257}; + azimut=-17.0839; + id=87; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item91 + { + position[]={12546.585,213.97482,-5864.9731}; + azimut=-17.0839; + id=92; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item92 + { + position[]={12547.116,213.96971,-5865.3892}; + azimut=-17.0839; + id=88; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item93 + { + position[]={12547.905,213.96072,-5865.3599}; + azimut=-17.0839; + id=89; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item94 + { + position[]={12548.654,213.95271,-5865.5718}; + azimut=-17.0839; + id=90; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item95 + { + position[]={12547.758,213.96382,-5866.0103}; + azimut=-17.0839; + id=86; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item96 + { + position[]={12547.639,213.96284,-5864.9536}; + azimut=-17.0839; + id=93; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item97 + { + position[]={12547.522,213.96559,-5865.603}; + azimut=-17.0839; + id=94; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item98 + { + position[]={12548.604,213.95424,-5866.0054}; + azimut=-17.0839; + id=91; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + class Item99 + { + position[]={12546.827,213.97302,-5865.4014}; + azimut=-17.0839; + id=95; + side="WEST"; + vehicle="Survivor1_DZ"; + player="PLAY CDG"; + skill=0.60000002; + init="this enableSimulation false;this allowDammage false;this disableAI 'FSM';this disableAI 'ANIM';this disableAI 'MOVE';"; + }; + }; + }; + class Item1 + { + side="LOGIC"; + class Vehicles + { + items=1; + class Item0 + { + position[]={8810.7705,138.52499,11751.518}; + id=50; + side="LOGIC"; + vehicle="FunctionsManager"; + leader=1; + lock="UNLOCKED"; + skill=0.60000002; + }; + }; + }; + }; + class Markers + { + items=23; + class Item0 + { + position[]={15052.172,259.60745,10748.865}; + name="center"; + type="Empty"; + }; + class Item1 + { + position[]={12547.509,213.96613,-5865.772}; + name="respawn_west"; + type="Empty"; + }; + class Item2 + { + position[]={12728.801,231.66705,6874.6953}; + name="spawn0"; + type="Empty"; + }; + class Item3 + { + position[]={19666.295,270.17401,10377.393}; + name="spawn1"; + type="Empty"; + }; + class Item4 + { + position[]={19299.434,362.29172,7466.5}; + name="spawn2"; + type="Empty"; + }; + class Item5 + { + position[]={16324.075,208.85855,6865.335}; + name="spawn3"; + type="Empty"; + }; + class Item6 + { + position[]={10999.656,183.10439,10157.395}; + name="spawn4"; + type="Empty"; + }; + class Item7 + { + position[]={15069.24,284.62674,14617.38}; + name="spawn5"; + type="Empty"; + }; + class Item8 + { + position[]={11348.783,438.95288,12225.009}; + name="spawn6"; + type="Empty"; + }; + class Item9 + { + position[]={11676.81,220.25786,8414.8496}; + name="spawn7"; + type="Empty"; + }; + class Item10 + { + position[]={19564.07,283.10489,12743.37}; + name="spawn8"; + type="Empty"; + }; + class Item11 + { + position[]={17469.141,171.13065,15216.565}; + name="spawn9"; + type="Empty"; + }; + class Item12 + { + position[]={12879.336,124.57347,14982.954}; + name="spawn10"; + type="Empty"; + }; + class Item13 + { + position[]={5909.7173,115.08607,20361.992}; + name="NeutralTraderCity"; + text="Trader City Lenzburg"; + type="mil_circle"; + }; + class Item14 + { + position[]={14734.365,238.29318,3099.3501}; + name="FriendlyTraderCity"; + text="Trader City Schratten"; + type="mil_circle"; + colorName="ColorGreen"; + }; + class Item15 + { + position[]={5150.6099,71.601753,4862.3594}; + name="HeroVendor"; + text="Hero Vendor"; + type="mil_dot"; + colorName="ColorBlue"; + }; + class Item16 + { + position[]={14660.978,289.14929,22194.445}; + name="UnarmedAirVehicles"; + text="AWOLs Airfield"; + type="mil_dot"; + colorName="ColorBlack"; + }; + class Item17 + { + position[]={2125.5425,13.000834,7807.833}; + name="West Wholesaler"; + text="West Wholesaler"; + type="mil_dot"; + colorName="ColorBlack"; + }; + class Item18 + { + position[]={3035.1362,113.69482,20963.352}; + name="NorthWholesaler"; + text="North Wholesaler"; + type="mil_dot"; + colorName="ColorBlack"; + }; + class Item19 + { + position[]={4439.3135,41.720337,21827.297}; + name="NorthBoatVendor"; + text="Nordic Boats"; + type="mil_dot"; + colorName="ColorBlack"; + }; + class Item20 + { + position[]={1790.741,138.50838,13621.614}; + name="BanditVendor"; + text="Bandit Vendor"; + type="mil_dot"; + colorName="ColorRed"; + }; + class Item21 + { + position[]={19172.695,294.36261,3299.3843}; + name="SouthBoatVendor"; + text="Pauls Boats"; + type="mil_dot"; + colorName="ColorBlack"; + }; + class Item22 + { + position[]={23265.82,307.81122,20499.551}; + name="NeutralTraderCIty2"; + text="Trader city Emmen"; + type="mil_circle"; + colorName="ColorBlack"; + }; + }; + class Sensors + { + items=9; + class Item0 + { + position[]={5909.3081,116.11543,20357.516}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Lenz"; + expCond="(player distance Lenz) < 50;"; + expActiv="TitleText[""Now Entering Trader City Lenzburg"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Trader City Lenzburg"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item1 + { + position[]={23252.473,308.27832,20503.471}; + a=100; + b=100; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Emmen"; + expCond="(player distance Emmen) < 100;"; + expActiv="TitleText[""Now Entering Trader City Emmen"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Trader City Emmen"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item2 + { + position[]={14736.759,238.29318,3105.8477}; + a=75; + b=75; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Schratten"; + expCond="(player distance Schratten) < 75;"; + expActiv="TitleText[""Now Entering Trader City Schratten"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Trader City Schratten"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item3 + { + position[]={1785.071,137.78891,13618.253}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Bandit"; + expCond="(player distance Bandit) < 50;"; + expActiv="TitleText[""Now Entering Bandit Camp"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Trader Bandit Camp"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item4 + { + position[]={5149.9814,71.601753,4864.1191}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Hero"; + expCond="(player distance Hero) < 50;"; + expActiv="TitleText[""Now Entering Hero Vendor"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Hero Vendor"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item5 + { + position[]={2122.7954,13.000834,7807.9878}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Wholesale1"; + expCond="(player distance Wholesale1) < 50;"; + expActiv="TitleText[""Now Entering West Wholesaler"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving West Wholesaler"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item6 + { + position[]={3042.0239,112.45332,20974.836}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Wholesaler"; + expCond="(player distance Wholesaler) < 50;"; + expActiv="TitleText[""Now Entering Wholesaler"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Wholesaler"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item7 + { + position[]={4435.8774,39.641243,21854.918}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Boat1"; + expCond="(player distance boat1) < 50;"; + expActiv="TitleText[""Now Entering Boat Vendor"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Boat Vendor"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + class Item8 + { + position[]={19176.98,294.69891,3295.377}; + activationBy="WEST"; + repeating=1; + interruptable=1; + age="UNKNOWN"; + name="Boat2"; + expCond="(player distance boat2) < 50;"; + expActiv="TitleText[""Now Entering Boat Vendor"",""PLAIN DOWN""]; canbuild = false;"; + expDesactiv="TitleText[""Now Leaving Boat Vendor"",""PLAIN DOWN""]; canbuild = true;"; + class Effects + { + }; + }; + }; +}; +class Intro +{ + addOns[]= + { + "sauerland" + }; + addOnsAuto[]= + { + "sauerland" + }; + randomSeed=6913869; + class Intel + { + startWeather=0.25; + forecastWeather=0.25; + year=2008; + month=10; + day=11; + hour=9; + minute=20; + }; +}; +class OutroWin +{ + addOns[]= + { + "sauerland" + }; + addOnsAuto[]= + { + "sauerland" + }; + randomSeed=4081731; + class Intel + { + startWeather=0.25; + forecastWeather=0.25; + year=2008; + month=10; + day=11; + hour=9; + minute=20; + }; +}; +class OutroLoose +{ + addOns[]= + { + "sauerland" + }; + addOnsAuto[]= + { + "sauerland" + }; + randomSeed=4975929; + class Intel + { + startWeather=0.25; + forecastWeather=0.25; + year=2008; + month=10; + day=11; + hour=9; + minute=20; + }; +}; diff --git a/Server Files/MPMissions/DayZ_Epoch_25.sauerland/server_traders.sqf b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/server_traders.sqf new file mode 100644 index 000000000..8ed332222 --- /dev/null +++ b/Server Files/MPMissions/DayZ_Epoch_25.sauerland/server_traders.sqf @@ -0,0 +1,158 @@ +// DayZ Epoch TRADERS for 17 +serverTraders = ["Tanny_PMC","Graves","US_Delta_Force_AR_EP1","GUE_Commander","Damsel3","Soldier_MG_PKM_PMC","GUE_Worker2","GUE_Woodlander2","RUS_Soldier2","Drake_Light","GUE_Woodlander3","Soldier_GL_PMC","GUE_Villager3","CIV_EuroWoman01_EP1","Dr_Annie_Baker_EP1","Soldier_MG_PKM_PMC","RUS_Commander","Damsel5","TK_Special_Forces_MG_EP1","TK_Special_Forces_EP1","Ins_Soldier_AR","Ins_Lopotev","Ins_Worker2","Ins_Woodlander3","Dr_Hladik_EP1","pook_Doc_Bell47","Ins_Woodlander2","TK_CIV_Woman02_EP1","Damsel3"]; +// Hero Vendor +menu_Tanny_PMC = [ + [["Ammunition",478],["Clothes",476],["Helicopter Armed",493],["Military Armed",562],["Trucks Armed",479],["Weapons",477]], + [], + "hero" +]; +// Ammunition Friendly +menu_Graves = [ + [["Assault Rifle Ammo",480],["Light Machine Gun Ammo",481],["Pistol Ammo",484],["Shotguns and Single-shot Ammo",573],["Sniper Rifle Ammo",482],["Submachine Gun Ammo",483]], + [], + "friendly" +]; +// Weapons Friendly +menu_US_Delta_Force_AR_EP1 = [ + [["Assault Rifle",485],["Light Machine Gun",486],["Pistols",489],["Shotguns and Single-shot",574],["Sniper Rifle",487],["Submachine Guns",488]], + [], + "friendly" +]; +// Friendly Vehicles +menu_GUE_Commander = [ + [["Bikes and ATV",608],["Buses and Vans",563],["Cargo Trucks",564],["Fuel Trucks",492],["Military Unarmed",491],["Trucks",495],["Used Cars",585],["Utility Vehicles",565]], + [], + "friendly" +]; +// General Store +menu_Damsel3 = [ + [["Backpacks",496],["Clothes",497],["Cooked Meats",580],["Drinks",498],["Packaged Food",579]], + [["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]], + "neutral" +]; +// Weapons neutral +menu_Soldier_MG_PKM_PMC = [ + [["Assault Rifle",602],["Light Machine Gun",603],["Pistols",606],["Shotguns and Single-shot",607],["Sniper Rifle",605],["Submachine Guns",604]], + [], + "neutral" +]; +// Ammunition Neutral +menu_GUE_Worker2 = [ + [["Assault Rifle Ammo",609],["Light Machine Gun Ammo",610],["Pistol Ammo",611],["Shotguns and Single-shot Ammo",613],["Sniper Rifle Ammo",614],["Submachine Gun Ammo",612]], + [], + "neutral" +]; +// Neutral Building/Parts +menu_GUE_Woodlander2 = [ + [["Building Supplies",508],["Toolbelt Items",510],["Vehicle Parts",509]], + [], + "neutral" +]; +// Bandit Trader +menu_RUS_Soldier2 = [ + [["Ammunition",577],["Clothing",575],["Helicopter Armed",512],["Military Armed",569],["Trucks Armed",534],["Weapons",627]], + [], + "hostile" +]; +// Aircraft Dealer +menu_Drake_Light = [ + [["Airplanes",517],["Helicopter Unarmed",519]], + [], + "neutral" +]; +// Vehicles Neutral +menu_GUE_Woodlander3 = [ + [["Bikes and ATV",587],["Buses and Vans",588],["Cargo Trucks",586],["Fuel Trucks",589],["Military Unarmed",598],["Trucks",590],["Used Cars",520],["Utility Vehicles",591]], + [], + "neutral" +]; +// Black Market Vendor +menu_Soldier_GL_PMC = [ + [["Black Market Ammo",527],["Black Market Weapons",526],["Explosives",529]], + [], + "neutral" +]; +// Friendly Building/Parts +menu_GUE_Villager3 = [ + [["Building Supplies",530],["Toolbelt Items",532],["Vehicle Parts",531]], + [], + "friendly" +]; +// General Store 2 +menu_CIV_EuroWoman01_EP1 = [ + [["Backpacks",538],["Clothes",628],["Cooked Meats",630],["Drinks",601],["Packaged Food",629]], + [["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]], + "friendly" +]; +// Medical Supplies +menu_Dr_Annie_Baker_EP1 = [ + [["Chem-lites/Flares",542],["Medical Supplies",541],["Smoke Grenades",543]], + [["FoodBioMeat","ItemZombieParts",1,1,"buy","Zombie Parts","Bio Meat",101]], + "friendly" +]; +// North Wholesaler +menu_RUS_Commander = [ + [["Wholesale",555]], + [], + "neutral" +]; +// General Store 3 +menu_Damsel5 = [ + [["Backpacks",632],["Clothes",631],["Cooked Meats",634],["Drinks",633],["Packaged Food",635]], + [["ItemCopperBar","TrashJackDaniels",1,1,"buy","Empty Wiskey Bottle","Copper Bar",101]], + "neutral" +]; +// West Wholesaler +menu_TK_Special_Forces_MG_EP1 = [ + [["Wholesale",636]], + [], + "neutral" +]; +// North Boat Vendor +menu_TK_Special_Forces_EP1 = [ + [["Boats Armed",558],["Boats Unarmed",557]], + [], + "neutral" +]; +// Weapons neutral 2 +menu_Ins_Soldier_AR = [ + [["Assault Rifle",637],["Light Machine Gun",638],["Pistols",674],["Shotguns and Single-shot",641],["Sniper Rifle",640],["Submachine Guns",642]], + [], + "neutral" +]; +// Ammunition Neutral 2 +menu_Ins_Lopotev = [ + [["Assault Rifle Ammo",643],["Light Machine Gun Ammo",644],["Pistol Ammo",646],["Shotguns and Single-shot Ammo",649],["Sniper Rifle Ammo",647],["Submachine Gun Ammo",648]], + [], + "neutral" +]; +// Vehicles Neutral 2 +menu_Ins_Worker2 = [ + [["Bikes and ATV",650],["Buses and Vans",651],["Cargo Trucks",653],["Fuel Trucks",655],["Military Unarmed",658],["Trucks",659],["Used Cars",660],["Utility Vehicles",661]], + [], + "neutral" +]; +// Neutral Building/Parts +menu_Ins_Woodlander3 = [ + [["Building Supplies",662],["Toolbelt Items",663],["Vehicle Parts",664]], + [], + "neutral" +]; +// Medical Supplies 2 +menu_Dr_Hladik_EP1 = [ + [["Chem-lites/Flares",666],["Medical Supplies",665],["Smoke Grenades",668]], + [["FoodBioMeat","ItemZombieParts",1,1,"buy","Zombie Parts","Bio Meat",101]], + "neutral" +]; +// Boat Trader 2 +menu_Ins_Woodlander2 = [ + [["Boats Armed",673],["Boats Unarmed",672]], + [], + "neutral" +]; +// Medical Supplies 3 +menu_pook_Doc_Bell47 = [ + [["Chem-lites/Flares",669],["Medical Supplies",670],["Smoke Grenades",671]], + [["FoodBioMeat","ItemZombieParts",1,1,"buy","Zombie Parts","Bio Meat",101]], + "neutral" +]; \ No newline at end of file