From 99162897c392f8f212c074b0ee7dcc07de1c1b53 Mon Sep 17 00:00:00 2001 From: "[VB]AWOL" Date: Thu, 4 Jun 2015 09:17:49 -0500 Subject: [PATCH] mission file sources --- .../mpmissions/epoch.Altis/description.ext | 114 + Sources/mpmissions/epoch.Altis/mission.sqm | 2165 ++++++++++++++++ .../mpmissions/epoch.Bornholm/description.ext | 114 + Sources/mpmissions/epoch.Bornholm/mission.sqm | 2148 ++++++++++++++++ .../epoch.Chernarus/description.ext | 114 + .../mpmissions/epoch.Chernarus/mission.sqm | 2129 ++++++++++++++++ .../mpmissions/epoch.Stratis/description.ext | 114 + Sources/mpmissions/epoch.Stratis/mission.sqm | 2167 +++++++++++++++++ 8 files changed, 9065 insertions(+) create mode 100644 Sources/mpmissions/epoch.Altis/description.ext create mode 100644 Sources/mpmissions/epoch.Altis/mission.sqm create mode 100644 Sources/mpmissions/epoch.Bornholm/description.ext create mode 100644 Sources/mpmissions/epoch.Bornholm/mission.sqm create mode 100644 Sources/mpmissions/epoch.Chernarus/description.ext create mode 100644 Sources/mpmissions/epoch.Chernarus/mission.sqm create mode 100644 Sources/mpmissions/epoch.Stratis/description.ext create mode 100644 Sources/mpmissions/epoch.Stratis/mission.sqm diff --git a/Sources/mpmissions/epoch.Altis/description.ext b/Sources/mpmissions/epoch.Altis/description.ext new file mode 100644 index 00000000..1da33683 --- /dev/null +++ b/Sources/mpmissions/epoch.Altis/description.ext @@ -0,0 +1,114 @@ +author = "Epoch Mod Team"; +class Header +{ + gameType = Sandbox; + minPlayers = 1; + maxPlayers = 100; +}; +respawn = "BASE"; +respawnDelay = 600; +respawnDialog = 0; + +onLoadMission= "Epoch"; +OnLoadIntro = "Welcome to Epoch Mod"; +loadScreen = "\x\addons\a3_epoch_assets\pictures\loadScreen_ca.paa"; +OnLoadIntroTime = False; +OnLoadMissionTime = False; +onLoadName = "Epoch Mod"; +disabledAI = true; +scriptedPlayer = 1; +disableChannels[]={0,1,2,6}; +enableItemsDropping = 0; +briefing = 0; +debriefing = 0; +enableDebugConsole = 0; +joinUnassigned = 0; +respawnOnStart = 0; +forceRotorLibSimulation = 1; + +corpseManagerMode = 1; +corpseLimit = 10; +corpseRemovalMinTime = 1200; +corpseRemovalMaxTime = 3600; + +wreckManagerMode = 1; +wreckLimit = 2; +wreckRemovalMinTime = 60; +wreckRemovalMaxTime = 360; + +class CfgRemoteExecCommands {}; + +class CfgEpochClient +{ + buildingNearbyMilitary = 0; //1 to allow building nearby + buildingNearbyMilitaryRange = 300; //Define radius of blocked area + + buildingRequireJammer = 0; // 1 = to allow building without a jammer + buildingCountLimit = 200; // how many objects can be built within range of a jammer + buildingJammerRange = 75; // jammer range in meters + + EPOCH_news[] = {"Word is that Sappers have a new boss.","Dogs will often lure them monsters away.","My dog was blown up. I miss him.."}; + + class Altis + { + blockedArea[] = { //[POS],radius + { { 16085, 16997, 0 }, 250 }, //South Telos + { { 12844, 16714, 0 }, 120 }, //Soldner Base + { { 3085, 13184, 0 }, 300 }, //Kavalar Carstel + { { 13493, 12013, 0 }, 450 }, //Makrynisi (Island) + { { 17439, 13165, 0 }, 165 }, //Pyrgorsk Military + { { 20084, 6728, 0 }, 55 }, //West of Selakano + { { 25303, 21807, 0 }, 100 } //Sofia + }; + }; + class Chernarus + { + blockedArea[] = { + { { 10203, 1886, 0 }, 430 }, //South Electro + { { 6822, 2498, 0 }, 600 }, //Cherno + { { 4612, 9670, 0 }, 140 }, //NWAF south barack + { { 4907, 10117, 0 }, 250 }, //NWAF NE hangas + { { 4707, 10384, 0 }, 200 }, //NWAF north barack + { { 4069, 10778, 0 }, 75 }, //NWAF west hangas + { { 4553, 10722, 0 }, 150 }, //NWAF NW hangas + { { 12279, 9505, 0 }, 350 }, //Berenzino Mid + { { 12816, 9816, 0 }, 400 }, //Berenzino SE + { { 12991, 10147, 0 }, 375 }, //Berenzino Docs + { { 2693, 5138, 0 }, 200 }, //Zeleno + { { 11467, 7508, 0 }, 150 }, //Polana Factory + { { 13092, 7096, 0 }, 140 } //Solnichniy Factory + }; + }; +}; + +class CfgEpochSapper +{ + detonateDistMax = 8; //Random distance between 3m and this number at which sapper detonates. Min value = 4 + groanTrig = 16; //Percentage chance of a groan. Min value = 4 + sRange = 300; //Distance from target over which sapper will dispose. Range within which sapper code will be aware of targets. Distance up to which sapper will attempt to find a spot to hide in. Min Value = 150. + smellDist = 24; //Distance up to which sapper can smell. Used to decide if sapper can see target when deciding to charge and influences target selection. Is influenced by wind direction. Min Value = 8. +}; + +class CfgEpochUAV +{ + UAVMinDist = 48; //Minimum distance to choose next position when roaming. Min Value = 8. + UAVMaxDist = 180; //Maximum distance to choose next position when roaming. Min Value = 42 / Max Value = 400. + UAVHeight = 100; //Set height when roaming, slight randomness is applied to this value. UAV will choose own height when locked onto target. Min Value = 42 / Max Value = 280. UAV can still spot targets from height ! +}; + +class CfgEpochAirDrop +{ + AirDropFreq = 1200; //AirDropChance, to decide if Air drop occurs, will only be checked once per AirDropFreq time period, for each player. Min value = 120. + AirDropChance = 6; //Percentage chance of air drop, for current player. Checked every AirDropFreq and upon antagonists spawn trigger. -1 To disable. +}; + +class CfgEpochCloak +{ + cRange = 300; //Distance, from target, at which Cloak will dispose. Cloak is also aware of players within this range. (Min: 60 / Max: 600) + cAggression = 75; //Percentage chance of attack, currently a psychological attack (Cultist spooky voice). (Min: 1 / Max: 100) + attackFrequency = 120; //One attack only per this period. (Min: 120) + attackDistance = 38; // Distance, from target, up to which Cloak will attack. Lower for less vocals. (Min: 16) + targetChangeFrequency = 42; //Cloak will only attempt to change target once per this period. Make Higher to stick to first target player. (Min: 42) + teleportChance = 66; //Chance for cloak to teleport. (Min: 1) + hoverFrequency = 1280; //Cloak has new hover attack. When player is above cloak, and at a distance, cloak will float to player and teleport attack. Only perform one of these moves per this period. (Min: 240) +}; \ No newline at end of file diff --git a/Sources/mpmissions/epoch.Altis/mission.sqm b/Sources/mpmissions/epoch.Altis/mission.sqm new file mode 100644 index 00000000..4b957059 --- /dev/null +++ b/Sources/mpmissions/epoch.Altis/mission.sqm @@ -0,0 +1,2165 @@ +version=12; +class Mission +{ + addOns[]= + { + "A3_Soft_F_Car", + "A3_Soft_F_Quadbike", + "a3_soft_f_beta_quadbike", + "A3_Boat_F_Civilian_Boat", + "A3_Boat_F_Boat_Transport_01", + "A3_Air_F_Heli_Light_01", + "A3_Air_F_Heli_Heli_Transport_04", + "A3_Air_F_Heli_Heli_Transport_03", + "a3_map_altis", + "a3_characters_f_gamma", + "A3_Characters_F_OPFOR", + "A3_Characters_F_INDEP", + "A3_Characters_F_Civil", + "A3_epoch_config", + "a3_characters_f", + "A3_Data_F_Curator_Virtual" + }; + addOnsAuto[]= + { + "A3_epoch_config", + "a3_map_altis" + }; + randomSeed=12032465; + class Intel + { + briefingName="Epoch Mod"; + resistanceWest=0; + timeOfChanges=28800; + startWeather=0; + startWind=0; + forecastWeather=0; + forecastWind=0; + forecastWaves=0; + wavesForced=1; + windForced=1; + year=2035; + month=6; + day=24; + hour=12; + minute=55; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; + class Groups + { + items=100; + class Item0 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.076,3.1900001,17997.086}; + azimut=136.241; + special="NONE"; + id=0; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item1 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.369,3.1900001,18001.078}; + azimut=130.01601; + special="NONE"; + id=1; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item2 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.404,3.1900001,17999.449}; + azimut=130.01601; + special="NONE"; + id=2; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item3 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.268,3.1900001,18004.947}; + azimut=130.01601; + special="NONE"; + id=3; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item4 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.803,3.1900001,18001.781}; + azimut=130.01601; + special="NONE"; + id=4; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item5 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.908,3.1900001,18002.363}; + azimut=130.01601; + special="NONE"; + id=5; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item6 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.15,3.1900001,18004.951}; + azimut=130.01601; + special="NONE"; + id=6; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item7 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.346,3.1900001,18003.178}; + azimut=130.01601; + special="NONE"; + id=7; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item8 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.592,3.1900001,18003.709}; + azimut=130.01601; + special="NONE"; + id=8; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item9 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.852,3.1900001,18004.229}; + azimut=130.01601; + special="NONE"; + id=9; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item10 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.193,3.1900001,17998.184}; + azimut=130.01601; + special="NONE"; + id=10; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item11 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.244,3.1900001,17997.719}; + azimut=130.01601; + special="NONE"; + id=11; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item12 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.861,3.1900001,18001.973}; + azimut=130.01601; + special="NONE"; + id=12; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item13 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.881,3.1900001,17999.535}; + azimut=130.01601; + special="NONE"; + id=13; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item14 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.443,3.1900001,18001.371}; + azimut=130.01601; + special="NONE"; + id=14; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item15 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.709,3.1900001,17997.355}; + azimut=130.01601; + special="NONE"; + id=15; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item16 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.9,3.1900001,17996.113}; + azimut=130.01601; + special="NONE"; + id=16; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item17 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.613,3.1900001,17996.719}; + azimut=130.01601; + special="NONE"; + id=17; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item18 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.072,3.1900001,18004.713}; + azimut=130.01601; + special="NONE"; + id=18; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item19 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.26,3.1900001,18005.248}; + azimut=130.01601; + special="NONE"; + id=19; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item20 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.861,3.1900001,18001.625}; + azimut=136.241; + special="NONE"; + id=20; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item21 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.701,3.1900001,17998.156}; + azimut=130.01601; + special="NONE"; + id=21; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item22 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.656,3.1900001,17998.496}; + azimut=130.01601; + special="NONE"; + id=22; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item23 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.846,3.1900001,18004.408}; + azimut=130.01601; + special="NONE"; + id=23; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item24 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.217,3.1900001,17997.313}; + azimut=130.01601; + special="NONE"; + id=24; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item25 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.777,3.1900001,18004.135}; + azimut=130.01601; + special="NONE"; + id=25; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item26 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.467,3.1900001,18005.467}; + azimut=130.01601; + special="NONE"; + id=26; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item27 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.43,3.1900001,18003.377}; + azimut=130.01601; + special="NONE"; + id=27; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item28 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.926,3.1900001,18002.125}; + azimut=130.01601; + special="NONE"; + id=28; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item29 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.029,3.1900001,17996.461}; + azimut=130.01601; + special="NONE"; + id=29; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item30 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.24,3.1900001,17999.023}; + azimut=130.01601; + special="NONE"; + id=30; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item31 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.807,3.1900001,18000.176}; + azimut=130.01601; + special="NONE"; + id=31; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item32 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.146,3.1900001,17999.828}; + azimut=130.01601; + special="NONE"; + id=32; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item33 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.385,3.1900001,17997.945}; + azimut=130.01601; + special="NONE"; + id=33; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item34 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.672,3.1900001,17999.164}; + azimut=130.01601; + special="NONE"; + id=34; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item35 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.252,3.1900001,18002.691}; + azimut=130.01601; + special="NONE"; + id=35; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item36 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.842,3.1900001,18004.342}; + azimut=130.01601; + special="NONE"; + id=36; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item37 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.713,3.1900001,18001.563}; + azimut=130.01601; + special="NONE"; + id=37; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item38 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23605.137,3.1900001,17998.723}; + azimut=130.01601; + special="NONE"; + id=38; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item39 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.371,3.1900001,18002.982}; + azimut=130.01601; + special="NONE"; + id=39; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item40 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.451,3.1900001,17999.723}; + azimut=136.241; + special="NONE"; + id=40; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item41 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.908,3.1900001,17997.27}; + azimut=130.01601; + special="NONE"; + id=41; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item42 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.857,3.1900001,17998.961}; + azimut=130.01601; + special="NONE"; + id=42; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item43 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23594.789,3.1900001,18002.137}; + azimut=130.01601; + special="NONE"; + id=43; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item44 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.102,3.1900001,18002.547}; + azimut=130.01601; + special="NONE"; + id=44; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item45 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.32,3.1900001,18002.982}; + azimut=130.01601; + special="NONE"; + id=45; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item46 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.018,3.1900001,18002.719}; + azimut=130.01601; + special="NONE"; + id=46; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item47 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.066,3.1900001,18004.674}; + azimut=130.01601; + special="NONE"; + id=47; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item48 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.342,3.1900001,18003.076}; + azimut=130.01601; + special="NONE"; + id=48; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item49 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.994,3.1900001,18001.965}; + azimut=130.01601; + special="NONE"; + id=49; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item50 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.236,3.1900001,18000.738}; + azimut=130.01601; + special="NONE"; + id=50; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item51 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.453,3.1900001,18000.145}; + azimut=130.01601; + special="NONE"; + id=51; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item52 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.479,3.1900001,18003.592}; + azimut=130.01601; + special="NONE"; + id=52; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item53 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.527,3.1900001,17997.145}; + azimut=130.01601; + special="NONE"; + id=53; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item54 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.871,3.1900001,18004.521}; + azimut=130.01601; + special="NONE"; + id=54; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item55 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.088,3.1900001,18002.113}; + azimut=130.01601; + special="NONE"; + id=55; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item56 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.791,3.1900001,18003.955}; + azimut=130.01601; + special="NONE"; + id=56; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item57 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.287,3.1900001,18000.84}; + azimut=130.01601; + special="NONE"; + id=57; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item58 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23594.566,3.1900001,18003.627}; + azimut=130.01601; + special="NONE"; + id=58; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item59 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.713,3.1900001,18004.014}; + azimut=130.01601; + special="NONE"; + id=59; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item60 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.156,3.1900001,17998.566}; + azimut=136.241; + special="NONE"; + id=60; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item61 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.576,3.1900001,18000.422}; + azimut=130.01601; + special="NONE"; + id=61; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item62 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.018,3.1900001,17999.32}; + azimut=130.01601; + special="NONE"; + id=62; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item63 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.398,3.1900001,18002.602}; + azimut=130.01601; + special="NONE"; + id=63; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item64 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.42,3.1900001,17998.688}; + azimut=130.01601; + special="NONE"; + id=64; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item65 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.264,3.1900001,18003.271}; + azimut=130.01601; + special="NONE"; + id=65; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item66 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.604,3.1900001,18003.924}; + azimut=130.01601; + special="NONE"; + id=66; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item67 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.635,3.1900001,18003.873}; + azimut=130.01601; + special="NONE"; + id=67; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item68 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.389,3.1900001,18003.408}; + azimut=130.01601; + special="NONE"; + id=68; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item69 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.217,3.1900001,18002.438}; + azimut=130.01601; + special="NONE"; + id=69; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item70 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.061,3.1900001,18000.16}; + azimut=130.01601; + special="NONE"; + id=70; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item71 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23605.105,3.1900001,18001.156}; + azimut=130.01601; + special="NONE"; + id=71; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item72 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.502,3.1900001,18003.727}; + azimut=130.01601; + special="NONE"; + id=72; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item73 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.924,3.1900001,17998.371}; + azimut=130.01601; + special="NONE"; + id=73; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item74 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.111,3.1900001,18002.885}; + azimut=130.01601; + special="NONE"; + id=74; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item75 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.773,3.1900001,18000.68}; + azimut=130.01601; + special="NONE"; + id=75; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item76 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.725,3.1900001,18004.08}; + azimut=130.01601; + special="NONE"; + id=76; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item77 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.33,3.1900001,17996.543}; + azimut=130.01601; + special="NONE"; + id=77; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item78 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.998,3.1900001,18000.844}; + azimut=130.01601; + special="NONE"; + id=78; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item79 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.889,3.1900001,17999.91}; + azimut=130.01601; + special="NONE"; + id=79; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item80 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23598.264,3.1900001,18000.516}; + azimut=130.01601; + special="NONE"; + id=80; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item81 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.748,3.1900001,18001.055}; + azimut=130.01601; + special="NONE"; + id=81; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item82 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.807,3.1900001,18001.309}; + azimut=130.01601; + special="NONE"; + id=82; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item83 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23595.494,3.1900001,17999.008}; + azimut=130.01601; + special="NONE"; + id=83; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item84 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23599.424,3.1900001,18000.742}; + azimut=130.01601; + special="NONE"; + id=84; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item85 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23605.248,3.1900001,18001.883}; + azimut=130.01601; + special="NONE"; + id=85; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item86 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.031,3.1900001,18001.461}; + azimut=130.01601; + special="NONE"; + id=86; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item87 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.232,3.1900001,17996.859}; + azimut=130.01601; + special="NONE"; + id=87; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item88 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.307,3.1900001,17999.313}; + azimut=130.01601; + special="NONE"; + id=88; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item89 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23604.158,3.1900001,18001.711}; + azimut=130.01601; + special="NONE"; + id=89; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item90 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23597.924,3.1900001,17996.32}; + azimut=130.01601; + special="NONE"; + id=90; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item91 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.17,3.1900001,17996.34}; + azimut=130.01601; + special="NONE"; + id=91; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item92 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.838,3.1900001,17997.523}; + azimut=130.01601; + special="NONE"; + id=92; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item93 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23596.939,3.1900001,17996.711}; + azimut=130.01601; + special="NONE"; + id=93; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item94 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23605.551,3.1900001,17999.484}; + azimut=130.01601; + special="NONE"; + id=94; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item95 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23601.803,3.1900001,17997.871}; + azimut=130.01601; + special="NONE"; + id=95; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item96 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23603.604,3.1900001,18000.102}; + azimut=130.01601; + special="NONE"; + id=96; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item97 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23602.979,3.1900001,17998.066}; + azimut=130.01601; + special="NONE"; + id=97; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item98 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23600.6,3.1900001,17997.535}; + azimut=130.01601; + special="NONE"; + id=98; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item99 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={23605.094,3.1900001,17998.143}; + azimut=130.01601; + special="NONE"; + id=99; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + }; + class Markers + { + items=3; + class Item0 + { + position[]={14939.934,0.053499073,15083.272}; + name="center"; + type="Empty"; + }; + class Item1 + { + position[]={23600.639,3.1900001,18000.721}; + name="respawn_east"; + type="Empty"; + }; + class Item2 + { + position[]={23600.611,3.1900001,18000.768}; + name="respawn_west"; + type="Empty"; + }; + }; +}; +class Intro +{ + addOns[]= + { + "a3_map_altis" + }; + addOnsAuto[]= + { + "a3_map_altis" + }; + randomSeed=13802307; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; +class OutroWin +{ + addOns[]= + { + "a3_map_altis" + }; + addOnsAuto[]= + { + "a3_map_altis" + }; + randomSeed=4712975; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; +class OutroLoose +{ + addOns[]= + { + "a3_map_altis" + }; + addOnsAuto[]= + { + "a3_map_altis" + }; + randomSeed=10755213; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; diff --git a/Sources/mpmissions/epoch.Bornholm/description.ext b/Sources/mpmissions/epoch.Bornholm/description.ext new file mode 100644 index 00000000..1da33683 --- /dev/null +++ b/Sources/mpmissions/epoch.Bornholm/description.ext @@ -0,0 +1,114 @@ +author = "Epoch Mod Team"; +class Header +{ + gameType = Sandbox; + minPlayers = 1; + maxPlayers = 100; +}; +respawn = "BASE"; +respawnDelay = 600; +respawnDialog = 0; + +onLoadMission= "Epoch"; +OnLoadIntro = "Welcome to Epoch Mod"; +loadScreen = "\x\addons\a3_epoch_assets\pictures\loadScreen_ca.paa"; +OnLoadIntroTime = False; +OnLoadMissionTime = False; +onLoadName = "Epoch Mod"; +disabledAI = true; +scriptedPlayer = 1; +disableChannels[]={0,1,2,6}; +enableItemsDropping = 0; +briefing = 0; +debriefing = 0; +enableDebugConsole = 0; +joinUnassigned = 0; +respawnOnStart = 0; +forceRotorLibSimulation = 1; + +corpseManagerMode = 1; +corpseLimit = 10; +corpseRemovalMinTime = 1200; +corpseRemovalMaxTime = 3600; + +wreckManagerMode = 1; +wreckLimit = 2; +wreckRemovalMinTime = 60; +wreckRemovalMaxTime = 360; + +class CfgRemoteExecCommands {}; + +class CfgEpochClient +{ + buildingNearbyMilitary = 0; //1 to allow building nearby + buildingNearbyMilitaryRange = 300; //Define radius of blocked area + + buildingRequireJammer = 0; // 1 = to allow building without a jammer + buildingCountLimit = 200; // how many objects can be built within range of a jammer + buildingJammerRange = 75; // jammer range in meters + + EPOCH_news[] = {"Word is that Sappers have a new boss.","Dogs will often lure them monsters away.","My dog was blown up. I miss him.."}; + + class Altis + { + blockedArea[] = { //[POS],radius + { { 16085, 16997, 0 }, 250 }, //South Telos + { { 12844, 16714, 0 }, 120 }, //Soldner Base + { { 3085, 13184, 0 }, 300 }, //Kavalar Carstel + { { 13493, 12013, 0 }, 450 }, //Makrynisi (Island) + { { 17439, 13165, 0 }, 165 }, //Pyrgorsk Military + { { 20084, 6728, 0 }, 55 }, //West of Selakano + { { 25303, 21807, 0 }, 100 } //Sofia + }; + }; + class Chernarus + { + blockedArea[] = { + { { 10203, 1886, 0 }, 430 }, //South Electro + { { 6822, 2498, 0 }, 600 }, //Cherno + { { 4612, 9670, 0 }, 140 }, //NWAF south barack + { { 4907, 10117, 0 }, 250 }, //NWAF NE hangas + { { 4707, 10384, 0 }, 200 }, //NWAF north barack + { { 4069, 10778, 0 }, 75 }, //NWAF west hangas + { { 4553, 10722, 0 }, 150 }, //NWAF NW hangas + { { 12279, 9505, 0 }, 350 }, //Berenzino Mid + { { 12816, 9816, 0 }, 400 }, //Berenzino SE + { { 12991, 10147, 0 }, 375 }, //Berenzino Docs + { { 2693, 5138, 0 }, 200 }, //Zeleno + { { 11467, 7508, 0 }, 150 }, //Polana Factory + { { 13092, 7096, 0 }, 140 } //Solnichniy Factory + }; + }; +}; + +class CfgEpochSapper +{ + detonateDistMax = 8; //Random distance between 3m and this number at which sapper detonates. Min value = 4 + groanTrig = 16; //Percentage chance of a groan. Min value = 4 + sRange = 300; //Distance from target over which sapper will dispose. Range within which sapper code will be aware of targets. Distance up to which sapper will attempt to find a spot to hide in. Min Value = 150. + smellDist = 24; //Distance up to which sapper can smell. Used to decide if sapper can see target when deciding to charge and influences target selection. Is influenced by wind direction. Min Value = 8. +}; + +class CfgEpochUAV +{ + UAVMinDist = 48; //Minimum distance to choose next position when roaming. Min Value = 8. + UAVMaxDist = 180; //Maximum distance to choose next position when roaming. Min Value = 42 / Max Value = 400. + UAVHeight = 100; //Set height when roaming, slight randomness is applied to this value. UAV will choose own height when locked onto target. Min Value = 42 / Max Value = 280. UAV can still spot targets from height ! +}; + +class CfgEpochAirDrop +{ + AirDropFreq = 1200; //AirDropChance, to decide if Air drop occurs, will only be checked once per AirDropFreq time period, for each player. Min value = 120. + AirDropChance = 6; //Percentage chance of air drop, for current player. Checked every AirDropFreq and upon antagonists spawn trigger. -1 To disable. +}; + +class CfgEpochCloak +{ + cRange = 300; //Distance, from target, at which Cloak will dispose. Cloak is also aware of players within this range. (Min: 60 / Max: 600) + cAggression = 75; //Percentage chance of attack, currently a psychological attack (Cultist spooky voice). (Min: 1 / Max: 100) + attackFrequency = 120; //One attack only per this period. (Min: 120) + attackDistance = 38; // Distance, from target, up to which Cloak will attack. Lower for less vocals. (Min: 16) + targetChangeFrequency = 42; //Cloak will only attempt to change target once per this period. Make Higher to stick to first target player. (Min: 42) + teleportChance = 66; //Chance for cloak to teleport. (Min: 1) + hoverFrequency = 1280; //Cloak has new hover attack. When player is above cloak, and at a distance, cloak will float to player and teleport attack. Only perform one of these moves per this period. (Min: 240) +}; \ No newline at end of file diff --git a/Sources/mpmissions/epoch.Bornholm/mission.sqm b/Sources/mpmissions/epoch.Bornholm/mission.sqm new file mode 100644 index 00000000..f96f93ab --- /dev/null +++ b/Sources/mpmissions/epoch.Bornholm/mission.sqm @@ -0,0 +1,2148 @@ +version=12; +class Mission +{ + addOns[]= {"bornholm","bornholmlayers","bornholmobjects","A3_Soft_F_Car","A3_Soft_F_Quadbike","a3_soft_f_beta_quadbike","A3_Boat_F_Civilian_Boat","A3_Boat_F_Boat_Transport_01","A3_Air_F_Heli_Light_01","A3_Air_F_Heli_Heli_Transport_04","A3_Air_F_Heli_Heli_Transport_03","a3_characters_f_gamma","A3_Characters_F_OPFOR","A3_Characters_F_INDEP","A3_Characters_F_Civil","A3_epoch_config","a3_characters_f","A3_Data_F_Curator_Virtual"}; + addOnsAuto[]= + { + "a3_epoch_config", + "bornholm" + }; + randomSeed=43857643; + class Intel + { + briefingName="Epoch Mod Bornholm"; + resistanceWest=0; + timeOfChanges=28800; + startWeather=0; + startWind=0; + forecastWeather=0; + forecastWind=0; + forecastWaves=0; + wavesForced=1; + windForced=1; + year=2035; + month=6; + day=24; + hour=12; + minute=55; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +class Groups + { + items=100; + class Item0 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.125,81.9685,6874.2876}; + azimut=136.241; + special="NONE"; + id=0; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item1 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.418,80.81.9685,6878.2798}; + azimut=130.01601; + special="NONE"; + id=1; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item2 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.455,81.9685,6876.6509}; + azimut=130.01601; + special="NONE"; + id=2; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item3 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.317,81.9685,6882.1479}; + azimut=130.01601; + special="NONE"; + id=3; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item4 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.853,81.9685,6878.9829}; + azimut=130.01601; + special="NONE"; + id=4; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item5 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.958,81.9685,6879.5649}; + azimut=130.01601; + special="NONE"; + id=5; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item6 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.201,81.9685,6882.1519}; + azimut=130.01601; + special="NONE"; + id=6; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item7 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.396,81.9685,6880.3784}; + azimut=130.01601; + special="NONE"; + id=7; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item8 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.642,81.9685,6880.9097}; + azimut=130.01601; + special="NONE"; + id=8; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item9 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.901,81.9685,6881.4292}; + azimut=130.01601; + special="NONE"; + id=9; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item10 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.244,81.9685,6875.3853}; + azimut=130.01601; + special="NONE"; + id=10; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item11 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.294,81.9685,6874.9204}; + azimut=130.01601; + special="NONE"; + id=11; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item12 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.911,81.9685,6879.1743}; + azimut=130.01601; + special="NONE"; + id=12; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item13 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.931,81.9685,6876.7349}; + azimut=130.01601; + special="NONE"; + id=13; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item14 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.494,81.9685,6878.5708}; + azimut=130.01601; + special="NONE"; + id=14; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item15 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.759,81.9685,6874.5552}; + azimut=130.01601; + special="NONE"; + id=15; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item16 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.951,81.9685,6873.313}; + azimut=130.01601; + special="NONE"; + id=16; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item17 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.663,81.9685,6873.9185}; + azimut=130.01601; + special="NONE"; + id=17; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item18 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.121,81.9685,6881.9136}; + azimut=130.01601; + special="NONE"; + id=18; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item19 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.309,81.9685,6882.4487}; + azimut=130.01601; + special="NONE"; + id=19; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item20 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.912,81.9685,6878.8267}; + azimut=136.241; + special="NONE"; + id=20; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item21 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.752,81.9685,6875.356}; + azimut=130.01601; + special="NONE"; + id=21; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item22 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.706,81.9685,6875.6978}; + azimut=130.01601; + special="NONE"; + id=22; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item23 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.896,81.9685,6881.6089}; + azimut=130.01601; + special="NONE"; + id=23; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item24 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.267,81.9685,6874.5122}; + azimut=130.01601; + special="NONE"; + id=24; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item25 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.827,81.9685,6881.3354}; + azimut=130.01601; + special="NONE"; + id=25; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item26 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.517,81.9685,6882.6675}; + azimut=130.01601; + special="NONE"; + id=26; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item27 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.479,81.9685,6880.5776}; + azimut=130.01601; + special="NONE"; + id=27; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item28 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.976,81.9685,6879.3247}; + azimut=130.01601; + special="NONE"; + id=28; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item29 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.078,81.9685,6873.6606}; + azimut=130.01601; + special="NONE"; + id=29; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item30 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.291,81.9685,6876.2231}; + azimut=130.01601; + special="NONE"; + id=30; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item31 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.857,81.9685,6877.3774}; + azimut=130.01601; + special="NONE"; + id=31; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item32 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.196,81.9685,6877.0298}; + azimut=130.01601; + special="NONE"; + id=32; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item33 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.434,81.9685,6875.147}; + azimut=130.01601; + special="NONE"; + id=33; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item34 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.722,81.9685,6876.3638}; + azimut=130.01601; + special="NONE"; + id=34; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item35 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.303,81.9685,6879.8911}; + azimut=130.01601; + special="NONE"; + id=35; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item36 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.892,81.9685,6881.5425}; + azimut=130.01601; + special="NONE"; + id=36; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item37 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.762,81.9685,6878.7642}; + azimut=130.01601; + special="NONE"; + id=37; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item38 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13817.187,81.9685,6875.9224}; + azimut=130.01601; + special="NONE"; + id=38; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item39 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.421,81.9685,6880.1831}; + azimut=130.01601; + special="NONE"; + id=39; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item40 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.502,81.9685,6876.9243}; + azimut=136.241; + special="NONE"; + id=40; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item41 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.958,81.9685,6874.4692}; + azimut=130.01601; + special="NONE"; + id=41; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item42 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.907,81.9685,6876.1626}; + azimut=130.01601; + special="NONE"; + id=42; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item43 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13806.839,81.9685,6879.3364}; + azimut=130.01601; + special="NONE"; + id=43; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item44 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.151,81.9685,6879.7466}; + azimut=130.01601; + special="NONE"; + id=44; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item45 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.37,81.9685,6880.1831}; + azimut=130.01601; + special="NONE"; + id=45; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item46 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.068,81.9685,6879.9204}; + azimut=130.01601; + special="NONE"; + id=46; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item47 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.116,81.9685,6881.8745}; + azimut=130.01601; + special="NONE"; + id=47; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item48 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.392,81.9685,6880.2769}; + azimut=130.01601; + special="NONE"; + id=48; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item49 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.044,81.9685,6879.1646}; + azimut=130.01601; + special="NONE"; + id=49; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item50 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.287,81.9685,6877.9399}; + azimut=130.01601; + special="NONE"; + id=50; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item51 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.503,81.9685,6877.3442}; + azimut=130.01601; + special="NONE"; + id=51; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item52 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.529,81.9685,6880.7925}; + azimut=130.01601; + special="NONE"; + id=52; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item53 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.577,81.9685,6874.3442}; + azimut=130.01601; + special="NONE"; + id=53; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item54 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.921,81.9685,6881.7222}; + azimut=130.01601; + special="NONE"; + id=54; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item55 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.139,81.9685,6879.313}; + azimut=130.01601; + special="NONE"; + id=55; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item56 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.842,81.9685,6881.1558}; + azimut=130.01601; + special="NONE"; + id=56; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item57 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.336,81.9685,6878.0396}; + azimut=130.01601; + special="NONE"; + id=57; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item58 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13806.616,81.9685,6880.8276}; + azimut=130.01601; + special="NONE"; + id=58; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item59 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.762,81.9685,6881.2144}; + azimut=130.01601; + special="NONE"; + id=59; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item60 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.206,81.9685,6875.7661}; + azimut=136.241; + special="NONE"; + id=60; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item61 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.627,81.9685,6877.6216}; + azimut=130.01601; + special="NONE"; + id=61; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item62 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.066,81.9685,6876.522}; + azimut=130.01601; + special="NONE"; + id=62; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item63 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.448,81.9685,6879.8032}; + azimut=130.01601; + special="NONE"; + id=63; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item64 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.47,81.9685,6875.8892}; + azimut=130.01601; + special="NONE"; + id=64; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item65 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.314,81.9685,6880.4722}; + azimut=130.01601; + special="NONE"; + id=65; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item66 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.654,81.9685,6881.1245}; + azimut=130.01601; + special="NONE"; + id=66; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item67 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.686,81.9685,6881.0737}; + azimut=130.01601; + special="NONE"; + id=67; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item68 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.438,81.9685,6880.6089}; + azimut=130.01601; + special="NONE"; + id=68; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item69 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.267,81.9685,6879.6392}; + azimut=130.01601; + special="NONE"; + id=69; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item70 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.109,81.9685,6877.3618}; + azimut=130.01601; + special="NONE"; + id=70; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item71 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13817.155,81.9685,6878.356}; + azimut=130.01601; + special="NONE"; + id=71; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item72 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.553,81.9685,6880.9263}; + azimut=130.01601; + special="NONE"; + id=72; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item73 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.974,81.9685,6875.5728}; + azimut=130.01601; + special="NONE"; + id=73; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item74 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.161,81.9685,6880.0854}; + azimut=130.01601; + special="NONE"; + id=74; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item75 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.823,81.9685,6877.8813}; + azimut=130.01601; + special="NONE"; + id=75; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item76 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.775,81.9685,6881.2808}; + azimut=130.01601; + special="NONE"; + id=76; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item77 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13814.381,81.9685,6873.7446}; + azimut=130.01601; + special="NONE"; + id=77; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item78 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.047,81.9685,6878.0454}; + azimut=130.01601; + special="NONE"; + id=78; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item79 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.938,81.9685,6877.1118}; + azimut=130.01601; + special="NONE"; + id=79; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item80 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13810.314,81.9685,6877.7153}; + azimut=130.01601; + special="NONE"; + id=80; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item81 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.797,81.9685,6878.2563}; + azimut=130.01601; + special="NONE"; + id=81; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item82 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.856,81.9685,6878.5103}; + azimut=130.01601; + special="NONE"; + id=82; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item83 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13807.544,81.9685,6876.2075}; + azimut=130.01601; + special="NONE"; + id=83; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item84 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13811.474,81.9685,6877.9438}; + azimut=130.01601; + special="NONE"; + id=84; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item85 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13817.297,81.9685,6879.0845}; + azimut=130.01601; + special="NONE"; + id=85; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item86 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.081,81.9685,6878.6606}; + azimut=130.01601; + special="NONE"; + id=86; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item87 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.282,81.9685,6874.061}; + azimut=130.01601; + special="NONE"; + id=87; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item88 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.357,81.9685,6876.5122}; + azimut=130.01601; + special="NONE"; + id=88; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item89 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13816.207,81.9685,6878.9106}; + azimut=130.01601; + special="NONE"; + id=89; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item90 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13809.974,81.9685,6873.52}; + azimut=130.01601; + special="NONE"; + id=90; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item91 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.22,81.9685,6873.5415}; + azimut=130.01601; + special="NONE"; + id=91; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item92 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.888,81.9685,6874.7231}; + azimut=130.01601; + special="NONE"; + id=92; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item93 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13808.99,81.9685,6873.9106}; + azimut=130.01601; + special="NONE"; + id=93; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item94 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13817.601,81.9685,6876.6841}; + azimut=130.01601; + special="NONE"; + id=94; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item95 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13813.854,81.9685,6875.0728}; + azimut=130.01601; + special="NONE"; + id=95; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item96 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.654,81.9685,6877.3032}; + azimut=130.01601; + special="NONE"; + id=96; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item97 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13815.028,81.9685,6875.2661}; + azimut=130.01601; + special="NONE"; + id=97; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item98 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13812.65,81.9685,6874.7349}; + azimut=130.01601; + special="NONE"; + id=98; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item99 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={13817.144,81.9685,6875.3433}; + azimut=130.01601; + special="NONE"; + id=99; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + }; + class Markers + { + items=3; + class Item0 + { + position[]={10058.347,117.54227,9015.8477}; + name="center"; + type="Empty"; + }; + class Item1 + { + position[]={13812.688,80.874428,6877.9214}; + name="respawn_east"; + type="Empty"; + }; + class Item2 + { + position[]={13812.661,80.876938,6877.9683}; + name="respawn_west"; + type="Empty"; + }; + + }; +}; +class Intro +{ + addOns[]= + { + "bornholm" + }; + addOnsAuto[]= + { + "bornholm" + }; + randomSeed=25982387; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; +class OutroWin +{ + addOns[]= + { + "bornholm" + }; + addOnsAuto[]= + { + "bornholm" + }; + randomSeed=12635739; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.3; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.3; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; +class OutroLoose +{ + addOns[]= + { + "bornholm" + }; + addOnsAuto[]= + { + "bornholm" + }; + randomSeed=37826347; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.3; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.3; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; diff --git a/Sources/mpmissions/epoch.Chernarus/description.ext b/Sources/mpmissions/epoch.Chernarus/description.ext new file mode 100644 index 00000000..1da33683 --- /dev/null +++ b/Sources/mpmissions/epoch.Chernarus/description.ext @@ -0,0 +1,114 @@ +author = "Epoch Mod Team"; +class Header +{ + gameType = Sandbox; + minPlayers = 1; + maxPlayers = 100; +}; +respawn = "BASE"; +respawnDelay = 600; +respawnDialog = 0; + +onLoadMission= "Epoch"; +OnLoadIntro = "Welcome to Epoch Mod"; +loadScreen = "\x\addons\a3_epoch_assets\pictures\loadScreen_ca.paa"; +OnLoadIntroTime = False; +OnLoadMissionTime = False; +onLoadName = "Epoch Mod"; +disabledAI = true; +scriptedPlayer = 1; +disableChannels[]={0,1,2,6}; +enableItemsDropping = 0; +briefing = 0; +debriefing = 0; +enableDebugConsole = 0; +joinUnassigned = 0; +respawnOnStart = 0; +forceRotorLibSimulation = 1; + +corpseManagerMode = 1; +corpseLimit = 10; +corpseRemovalMinTime = 1200; +corpseRemovalMaxTime = 3600; + +wreckManagerMode = 1; +wreckLimit = 2; +wreckRemovalMinTime = 60; +wreckRemovalMaxTime = 360; + +class CfgRemoteExecCommands {}; + +class CfgEpochClient +{ + buildingNearbyMilitary = 0; //1 to allow building nearby + buildingNearbyMilitaryRange = 300; //Define radius of blocked area + + buildingRequireJammer = 0; // 1 = to allow building without a jammer + buildingCountLimit = 200; // how many objects can be built within range of a jammer + buildingJammerRange = 75; // jammer range in meters + + EPOCH_news[] = {"Word is that Sappers have a new boss.","Dogs will often lure them monsters away.","My dog was blown up. I miss him.."}; + + class Altis + { + blockedArea[] = { //[POS],radius + { { 16085, 16997, 0 }, 250 }, //South Telos + { { 12844, 16714, 0 }, 120 }, //Soldner Base + { { 3085, 13184, 0 }, 300 }, //Kavalar Carstel + { { 13493, 12013, 0 }, 450 }, //Makrynisi (Island) + { { 17439, 13165, 0 }, 165 }, //Pyrgorsk Military + { { 20084, 6728, 0 }, 55 }, //West of Selakano + { { 25303, 21807, 0 }, 100 } //Sofia + }; + }; + class Chernarus + { + blockedArea[] = { + { { 10203, 1886, 0 }, 430 }, //South Electro + { { 6822, 2498, 0 }, 600 }, //Cherno + { { 4612, 9670, 0 }, 140 }, //NWAF south barack + { { 4907, 10117, 0 }, 250 }, //NWAF NE hangas + { { 4707, 10384, 0 }, 200 }, //NWAF north barack + { { 4069, 10778, 0 }, 75 }, //NWAF west hangas + { { 4553, 10722, 0 }, 150 }, //NWAF NW hangas + { { 12279, 9505, 0 }, 350 }, //Berenzino Mid + { { 12816, 9816, 0 }, 400 }, //Berenzino SE + { { 12991, 10147, 0 }, 375 }, //Berenzino Docs + { { 2693, 5138, 0 }, 200 }, //Zeleno + { { 11467, 7508, 0 }, 150 }, //Polana Factory + { { 13092, 7096, 0 }, 140 } //Solnichniy Factory + }; + }; +}; + +class CfgEpochSapper +{ + detonateDistMax = 8; //Random distance between 3m and this number at which sapper detonates. Min value = 4 + groanTrig = 16; //Percentage chance of a groan. Min value = 4 + sRange = 300; //Distance from target over which sapper will dispose. Range within which sapper code will be aware of targets. Distance up to which sapper will attempt to find a spot to hide in. Min Value = 150. + smellDist = 24; //Distance up to which sapper can smell. Used to decide if sapper can see target when deciding to charge and influences target selection. Is influenced by wind direction. Min Value = 8. +}; + +class CfgEpochUAV +{ + UAVMinDist = 48; //Minimum distance to choose next position when roaming. Min Value = 8. + UAVMaxDist = 180; //Maximum distance to choose next position when roaming. Min Value = 42 / Max Value = 400. + UAVHeight = 100; //Set height when roaming, slight randomness is applied to this value. UAV will choose own height when locked onto target. Min Value = 42 / Max Value = 280. UAV can still spot targets from height ! +}; + +class CfgEpochAirDrop +{ + AirDropFreq = 1200; //AirDropChance, to decide if Air drop occurs, will only be checked once per AirDropFreq time period, for each player. Min value = 120. + AirDropChance = 6; //Percentage chance of air drop, for current player. Checked every AirDropFreq and upon antagonists spawn trigger. -1 To disable. +}; + +class CfgEpochCloak +{ + cRange = 300; //Distance, from target, at which Cloak will dispose. Cloak is also aware of players within this range. (Min: 60 / Max: 600) + cAggression = 75; //Percentage chance of attack, currently a psychological attack (Cultist spooky voice). (Min: 1 / Max: 100) + attackFrequency = 120; //One attack only per this period. (Min: 120) + attackDistance = 38; // Distance, from target, up to which Cloak will attack. Lower for less vocals. (Min: 16) + targetChangeFrequency = 42; //Cloak will only attempt to change target once per this period. Make Higher to stick to first target player. (Min: 42) + teleportChance = 66; //Chance for cloak to teleport. (Min: 1) + hoverFrequency = 1280; //Cloak has new hover attack. When player is above cloak, and at a distance, cloak will float to player and teleport attack. Only perform one of these moves per this period. (Min: 240) +}; \ No newline at end of file diff --git a/Sources/mpmissions/epoch.Chernarus/mission.sqm b/Sources/mpmissions/epoch.Chernarus/mission.sqm new file mode 100644 index 00000000..8288707f --- /dev/null +++ b/Sources/mpmissions/epoch.Chernarus/mission.sqm @@ -0,0 +1,2129 @@ +#define _ARMA_ + +version = 12; +class Mission +{ + addOns[] = {"A3_Soft_F_Car","A3_Soft_F_Quadbike","a3_soft_f_beta_quadbike","A3_Boat_F_Civilian_Boat","A3_Boat_F_Boat_Transport_01","A3_Air_F_Heli_Light_01","A3_Air_F_Heli_Heli_Transport_04","A3_Air_F_Heli_Heli_Transport_03","aia_chernarus_config","a3_characters_f_gamma","A3_Characters_F_OPFOR","A3_Characters_F_INDEP","A3_Characters_F_Civil","A3_epoch_config","A3_Modules_F_Curator_Curator","a3_characters_f","A3_Data_F_Curator_Virtual"}; + addOnsAuto[] = {"a3_epoch_config","aia_chernarus_config"}; + randomSeed = 12032465; + class Intel + { + briefingName = "Epoch Mod"; + resistanceWest = 0; + timeOfChanges = 28800; + startWeather = 0; + startWind = 0; + forecastWeather = 0; + forecastWind = 0; + forecastWaves = 0; + wavesForced = 1; + windForced = 1; + year = 2035; + month = 6; + day = 24; + hour = 12; + minute = 55; + startFogDecay = 0.013; + forecastFogDecay = 0.013; + }; + class Groups + { + items = 100; + class Item0 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.3512,5.8308096,2021.0009}; + azimut = 159.84946; + special = "NONE"; + id = 0; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item1 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.3019,5.838416,2024.9427}; + azimut = 153.62447; + special = "NONE"; + id = 1; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item2 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.3479,5.8627834,2021.8309}; + azimut = 153.62447; + special = "NONE"; + id = 2; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item3 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1030.1722,5.9023414,2025.722}; + azimut = 153.62447; + special = "NONE"; + id = 3; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item4 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.0636,5.8375897,2025.8109}; + azimut = 153.62447; + special = "NONE"; + id = 4; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item5 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.4781,5.8340983,2026.704}; + azimut = 153.62447; + special = "NONE"; + id = 5; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item6 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.3191,5.8811855,2026.974}; + azimut = 153.62447; + special = "NONE"; + id = 6; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item7 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.6198,5.8889585,2024.4691}; + azimut = 153.62447; + special = "NONE"; + id = 7; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item8 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.2242,5.878675,2025.66}; + azimut = 153.62447; + special = "NONE"; + id = 8; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item9 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1030.4193,5.903355,2024.8309}; + azimut = 153.62447; + special = "NONE"; + id = 9; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item10 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.066,5.8205295,2022.7601}; + azimut = 153.62447; + special = "NONE"; + id = 10; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item11 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.8429,5.826744,2021.9135}; + azimut = 153.62447; + special = "NONE"; + id = 11; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item12 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.1115,5.8456464,2025.5653}; + azimut = 153.62447; + special = "NONE"; + id = 12; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item13 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.1539,5.837232,2023.3221}; + azimut = 153.62447; + special = "NONE"; + id = 13; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item14 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.4049,5.84724,2024.7797}; + azimut = 153.62447; + special = "NONE"; + id = 14; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item15 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.7037,5.86563,2019.3925}; + azimut = 153.62447; + special = "NONE"; + id = 15; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item16 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.6344,5.8410754,2019.3783}; + azimut = 153.62447; + special = "NONE"; + id = 16; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item17 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.278,5.870224,2018.4452}; + azimut = 153.62447; + special = "NONE"; + id = 17; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item18 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.2329,5.872781,2027.1879}; + azimut = 153.62447; + special = "NONE"; + id = 18; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item19 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.4513,5.890012,2026.8007}; + azimut = 153.62447; + special = "NONE"; + id = 19; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item20 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.8062,5.8584495,2024.4462}; + azimut = 159.84946; + special = "NONE"; + id = 20; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item21 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.2692,5.846154,2021.329}; + azimut = 153.62447; + special = "NONE"; + id = 21; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item22 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.2799,5.85424,2021.2592}; + azimut = 153.62447; + special = "NONE"; + id = 22; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item23 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.738,5.8835063,2026.201}; + azimut = 153.62447; + special = "NONE"; + id = 23; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item24 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.486,5.839888,2020.7513}; + azimut = 153.62447; + special = "NONE"; + id = 24; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item25 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.648,5.875017,2026.3749}; + azimut = 153.62447; + special = "NONE"; + id = 25; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item26 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.6481,5.899214,2026.5214}; + azimut = 153.62447; + special = "NONE"; + id = 26; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item27 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.693,5.8975444,2024.223}; + azimut = 153.62447; + special = "NONE"; + id = 27; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item28 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.1471,5.853546,2025.2767}; + azimut = 153.62447; + special = "NONE"; + id = 28; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item29 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.9733,5.835787,2020.0468}; + azimut = 153.62447; + special = "NONE"; + id = 29; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item30 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.86,5.8748803,2020.7064}; + azimut = 153.62447; + special = "NONE"; + id = 30; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item31 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.7565,5.890053,2021.1356}; + azimut = 153.62447; + special = "NONE"; + id = 31; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item32 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.4303,5.847443,2023.0844}; + azimut = 153.62447; + special = "NONE"; + id = 32; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item33 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.9772,5.835818,2021.664}; + azimut = 153.62447; + special = "NONE"; + id = 33; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item34 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.8961,5.82717,2023.4662}; + azimut = 153.62447; + special = "NONE"; + id = 34; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item35 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.5066,5.872053,2024.8632}; + azimut = 153.62447; + special = "NONE"; + id = 35; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item36 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.0406,5.855979,2027.7401}; + azimut = 153.62447; + special = "NONE"; + id = 36; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item37 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.9781,5.829225,2026.0492}; + azimut = 153.62447; + special = "NONE"; + id = 37; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item38 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.4762,5.8878107,2019.6727}; + azimut = 153.62447; + special = "NONE"; + id = 38; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item39 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.649,5.881193,2024.6849}; + azimut = 153.62447; + special = "NONE"; + id = 39; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item40 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.4165,5.8713326,2021.664}; + azimut = 159.84946; + special = "NONE"; + id = 40; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item41 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1019.4386,5.816258,2022.038}; + azimut = 153.62447; + special = "NONE"; + id = 41; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item42 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.818,5.842544,2022.4052}; + azimut = 153.62447; + special = "NONE"; + id = 42; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item43 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.3619,5.825491,2026.9462}; + azimut = 153.62447; + special = "NONE"; + id = 43; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item44 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.3943,5.8634095,2025.1913}; + azimut = 153.62447; + special = "NONE"; + id = 44; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item45 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.1871,5.832839,2027.5057}; + azimut = 153.62447; + special = "NONE"; + id = 45; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item46 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.6373,5.84321,2026.5834}; + azimut = 153.62447; + special = "NONE"; + id = 46; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item47 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.9625,5.8929715,2025.953}; + azimut = 153.62447; + special = "NONE"; + id = 47; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item48 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.9111,5.8606033,2025.9847}; + azimut = 153.62447; + special = "NONE"; + id = 48; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item49 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.9783,5.8678265,2024.3021}; + azimut = 153.62447; + special = "NONE"; + id = 49; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item50 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.2125,5.822347,2025.4847}; + azimut = 153.62447; + special = "NONE"; + id = 50; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item51 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.7546,5.8580375,2022.851}; + azimut = 153.62447; + special = "NONE"; + id = 51; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item52 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.4117,5.850235,2027.205}; + azimut = 153.62447; + special = "NONE"; + id = 52; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item53 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.5366,5.8562937,2019.6722}; + azimut = 153.62447; + special = "NONE"; + id = 53; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item54 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.0582,5.863794,2027.4955}; + azimut = 153.62447; + special = "NONE"; + id = 54; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item55 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.0416,5.876333,2023.9994}; + azimut = 153.62447; + special = "NONE"; + id = 55; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item56 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.3395,5.8947215,2025.0038}; + azimut = 153.62447; + special = "NONE"; + id = 56; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item57 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.2135,5.829917,2025.1561}; + azimut = 153.62447; + special = "NONE"; + id = 57; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item58 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.755,5.8305783,2028.4032}; + azimut = 153.62447; + special = "NONE"; + id = 58; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item59 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.623,5.8672385,2026.6903}; + azimut = 153.62447; + special = "NONE"; + id = 59; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item60 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.6832,5.865466,2020.722}; + azimut = 159.84946; + special = "NONE"; + id = 60; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item61 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.8953,5.8671627,2022.6561}; + azimut = 153.62447; + special = "NONE"; + id = 61; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item62 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.024,5.852193,2022.2714}; + azimut = 153.62447; + special = "NONE"; + id = 62; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item63 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.3531,5.894826,2023.5219}; + azimut = 153.62447; + special = "NONE"; + id = 63; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item64 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.3912,5.83113,2022.7299}; + azimut = 153.62447; + special = "NONE"; + id = 64; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item65 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.1676,5.840527,2027.3895}; + azimut = 153.62447; + special = "NONE"; + id = 65; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item66 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.2377,5.8865013,2025.4496}; + azimut = 153.62447; + special = "NONE"; + id = 66; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item67 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.8336,5.8389335,2028.1981}; + azimut = 153.62447; + special = "NONE"; + id = 67; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item68 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.9998,5.869152,2025.8651}; + azimut = 153.62447; + special = "NONE"; + id = 68; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item69 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.2045,5.8856363,2023.8441}; + azimut = 153.62447; + special = "NONE"; + id = 69; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item70 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1021.65,5.833201,2024.225}; + azimut = 153.62447; + special = "NONE"; + id = 70; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item71 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.4225,5.89538,2021.9154}; + azimut = 153.62447; + special = "NONE"; + id = 71; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item72 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.402,5.857769,2026.914}; + azimut = 153.62447; + special = "NONE"; + id = 72; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item73 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.2242,5.8777947,2019.8339}; + azimut = 153.62447; + special = "NONE"; + id = 73; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item74 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.7047,5.851369,2026.2977}; + azimut = 153.62447; + special = "NONE"; + id = 74; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item75 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.0955,5.876765,2022.414}; + azimut = 153.62447; + special = "NONE"; + id = 75; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item76 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.9137,5.8472424,2027.9491}; + azimut = 153.62447; + special = "NONE"; + id = 76; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item77 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.033,5.8602643,2018.7987}; + azimut = 153.62447; + special = "NONE"; + id = 77; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item78 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.2809,5.8862476,2022.0721}; + azimut = 153.62447; + special = "NONE"; + id = 78; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item79 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.4781,5.8238263,2024.4642}; + azimut = 153.62447; + special = "NONE"; + id = 79; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item80 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1022.8971,5.843178,2024.0673}; + azimut = 153.62447; + special = "NONE"; + id = 80; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item81 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.3884,5.8631077,2023.5682}; + azimut = 153.62447; + special = "NONE"; + id = 81; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item82 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.4607,5.871686,2023.3739}; + azimut = 153.62447; + special = "NONE"; + id = 82; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item83 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1019.755,5.8183675,2023.7953}; + azimut = 153.62447; + special = "NONE"; + id = 83; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item84 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1024.0494,5.852396,2023.8104}; + azimut = 153.62447; + special = "NONE"; + id = 84; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item85 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.8424,5.89874,2022.5233}; + azimut = 153.62447; + special = "NONE"; + id = 85; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item86 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.6442,5.8811536,2023.0258}; + azimut = 153.62447; + special = "NONE"; + id = 86; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item87 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.236,5.8458886,2019.9286}; + azimut = 153.62447; + special = "NONE"; + id = 87; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item88 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.9528,5.8836226,2020.5443}; + azimut = 153.62447; + special = "NONE"; + id = 88; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item89 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.775,5.890201,2022.8002}; + azimut = 153.62447; + special = "NONE"; + id = 89; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item90 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.9059,5.8272476,2020.3627}; + azimut = 153.62447; + special = "NONE"; + id = 90; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item91 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.8873,5.8510985,2019.0765}; + azimut = 153.62447; + special = "NONE"; + id = 91; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item92 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.8063,5.874451,2019.097}; + azimut = 153.62447; + special = "NONE"; + id = 92; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item93 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1020.1593,5.8212748,2021.1102}; + azimut = 153.62447; + special = "NONE"; + id = 93; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item94 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1029.1608,5.893286,2020.202}; + azimut = 153.62447; + special = "NONE"; + id = 94; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item95 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1025.0807,5.860646,2020.2245}; + azimut = 153.62447; + special = "NONE"; + id = 95; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item96 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1027.6241,5.8809934,2021.5482}; + azimut = 153.62447; + special = "NONE"; + id = 96; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item97 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1026.2349,5.8698797,2019.9354}; + azimut = 153.62447; + special = "NONE"; + id = 97; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item98 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1023.8444,5.8507557,2020.4012}; + azimut = 153.62447; + special = "NONE"; + id = 98; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + class Item99 + { + side = "CIV"; + class Vehicles + { + items = 1; + class Item0 + { + position[] = {1028.2035,5.8856287,2019.1552}; + azimut = 153.62447; + special = "NONE"; + id = 99; + side = "CIV"; + vehicle = "VirtualMan_EPOCH"; + player = "PLAY CDG"; + leader = 1; + skill = 0.6; + }; + }; + }; + }; + class Markers + { + items = 3; + class Item0 + { + position[] = {6968.658,324.48145,8345.914}; + name = "center"; + type = "Empty"; + }; + class Item1 + { + position[] = {1024.82,0,2023.51}; + name = "respawn_east"; + type = "Empty"; + angle = 23.608498; + }; + class Item2 + { + position[] = {1024.8502,5.858802,2023.5204}; + name = "respawn_west"; + type = "Empty"; + angle = 23.608498; + }; + }; +}; +class Intro +{ + addOns[] = {"aia_chernarus_config"}; + addOnsAuto[] = {"aia_chernarus_config"}; + randomSeed = 13802307; + class Intel + { + timeOfChanges = 1800.0002; + startWeather = 0.3; + startWind = 0.1; + startWaves = 0.1; + forecastWeather = 0.3; + forecastWind = 0.1; + forecastWaves = 0.1; + forecastLightnings = 0.1; + year = 2035; + month = 6; + day = 24; + hour = 12; + minute = 0; + startFogDecay = 0.013; + forecastFogDecay = 0.013; + }; +}; +class OutroWin +{ + addOns[] = {"aia_chernarus_config"}; + addOnsAuto[] = {"aia_chernarus_config"}; + randomSeed = 4712975; + class Intel + { + timeOfChanges = 1800.0002; + startWeather = 0.3; + startWind = 0.1; + startWaves = 0.1; + forecastWeather = 0.3; + forecastWind = 0.1; + forecastWaves = 0.1; + forecastLightnings = 0.1; + year = 2035; + month = 6; + day = 24; + hour = 12; + minute = 0; + startFogDecay = 0.013; + forecastFogDecay = 0.013; + }; +}; +class OutroLoose +{ + addOns[] = {"aia_chernarus_config"}; + addOnsAuto[] = {"aia_chernarus_config"}; + randomSeed = 10755213; + class Intel + { + timeOfChanges = 1800.0002; + startWeather = 0.3; + startWind = 0.1; + startWaves = 0.1; + forecastWeather = 0.3; + forecastWind = 0.1; + forecastWaves = 0.1; + forecastLightnings = 0.1; + year = 2035; + month = 6; + day = 24; + hour = 12; + minute = 0; + startFogDecay = 0.013; + forecastFogDecay = 0.013; + }; +}; \ No newline at end of file diff --git a/Sources/mpmissions/epoch.Stratis/description.ext b/Sources/mpmissions/epoch.Stratis/description.ext new file mode 100644 index 00000000..1da33683 --- /dev/null +++ b/Sources/mpmissions/epoch.Stratis/description.ext @@ -0,0 +1,114 @@ +author = "Epoch Mod Team"; +class Header +{ + gameType = Sandbox; + minPlayers = 1; + maxPlayers = 100; +}; +respawn = "BASE"; +respawnDelay = 600; +respawnDialog = 0; + +onLoadMission= "Epoch"; +OnLoadIntro = "Welcome to Epoch Mod"; +loadScreen = "\x\addons\a3_epoch_assets\pictures\loadScreen_ca.paa"; +OnLoadIntroTime = False; +OnLoadMissionTime = False; +onLoadName = "Epoch Mod"; +disabledAI = true; +scriptedPlayer = 1; +disableChannels[]={0,1,2,6}; +enableItemsDropping = 0; +briefing = 0; +debriefing = 0; +enableDebugConsole = 0; +joinUnassigned = 0; +respawnOnStart = 0; +forceRotorLibSimulation = 1; + +corpseManagerMode = 1; +corpseLimit = 10; +corpseRemovalMinTime = 1200; +corpseRemovalMaxTime = 3600; + +wreckManagerMode = 1; +wreckLimit = 2; +wreckRemovalMinTime = 60; +wreckRemovalMaxTime = 360; + +class CfgRemoteExecCommands {}; + +class CfgEpochClient +{ + buildingNearbyMilitary = 0; //1 to allow building nearby + buildingNearbyMilitaryRange = 300; //Define radius of blocked area + + buildingRequireJammer = 0; // 1 = to allow building without a jammer + buildingCountLimit = 200; // how many objects can be built within range of a jammer + buildingJammerRange = 75; // jammer range in meters + + EPOCH_news[] = {"Word is that Sappers have a new boss.","Dogs will often lure them monsters away.","My dog was blown up. I miss him.."}; + + class Altis + { + blockedArea[] = { //[POS],radius + { { 16085, 16997, 0 }, 250 }, //South Telos + { { 12844, 16714, 0 }, 120 }, //Soldner Base + { { 3085, 13184, 0 }, 300 }, //Kavalar Carstel + { { 13493, 12013, 0 }, 450 }, //Makrynisi (Island) + { { 17439, 13165, 0 }, 165 }, //Pyrgorsk Military + { { 20084, 6728, 0 }, 55 }, //West of Selakano + { { 25303, 21807, 0 }, 100 } //Sofia + }; + }; + class Chernarus + { + blockedArea[] = { + { { 10203, 1886, 0 }, 430 }, //South Electro + { { 6822, 2498, 0 }, 600 }, //Cherno + { { 4612, 9670, 0 }, 140 }, //NWAF south barack + { { 4907, 10117, 0 }, 250 }, //NWAF NE hangas + { { 4707, 10384, 0 }, 200 }, //NWAF north barack + { { 4069, 10778, 0 }, 75 }, //NWAF west hangas + { { 4553, 10722, 0 }, 150 }, //NWAF NW hangas + { { 12279, 9505, 0 }, 350 }, //Berenzino Mid + { { 12816, 9816, 0 }, 400 }, //Berenzino SE + { { 12991, 10147, 0 }, 375 }, //Berenzino Docs + { { 2693, 5138, 0 }, 200 }, //Zeleno + { { 11467, 7508, 0 }, 150 }, //Polana Factory + { { 13092, 7096, 0 }, 140 } //Solnichniy Factory + }; + }; +}; + +class CfgEpochSapper +{ + detonateDistMax = 8; //Random distance between 3m and this number at which sapper detonates. Min value = 4 + groanTrig = 16; //Percentage chance of a groan. Min value = 4 + sRange = 300; //Distance from target over which sapper will dispose. Range within which sapper code will be aware of targets. Distance up to which sapper will attempt to find a spot to hide in. Min Value = 150. + smellDist = 24; //Distance up to which sapper can smell. Used to decide if sapper can see target when deciding to charge and influences target selection. Is influenced by wind direction. Min Value = 8. +}; + +class CfgEpochUAV +{ + UAVMinDist = 48; //Minimum distance to choose next position when roaming. Min Value = 8. + UAVMaxDist = 180; //Maximum distance to choose next position when roaming. Min Value = 42 / Max Value = 400. + UAVHeight = 100; //Set height when roaming, slight randomness is applied to this value. UAV will choose own height when locked onto target. Min Value = 42 / Max Value = 280. UAV can still spot targets from height ! +}; + +class CfgEpochAirDrop +{ + AirDropFreq = 1200; //AirDropChance, to decide if Air drop occurs, will only be checked once per AirDropFreq time period, for each player. Min value = 120. + AirDropChance = 6; //Percentage chance of air drop, for current player. Checked every AirDropFreq and upon antagonists spawn trigger. -1 To disable. +}; + +class CfgEpochCloak +{ + cRange = 300; //Distance, from target, at which Cloak will dispose. Cloak is also aware of players within this range. (Min: 60 / Max: 600) + cAggression = 75; //Percentage chance of attack, currently a psychological attack (Cultist spooky voice). (Min: 1 / Max: 100) + attackFrequency = 120; //One attack only per this period. (Min: 120) + attackDistance = 38; // Distance, from target, up to which Cloak will attack. Lower for less vocals. (Min: 16) + targetChangeFrequency = 42; //Cloak will only attempt to change target once per this period. Make Higher to stick to first target player. (Min: 42) + teleportChance = 66; //Chance for cloak to teleport. (Min: 1) + hoverFrequency = 1280; //Cloak has new hover attack. When player is above cloak, and at a distance, cloak will float to player and teleport attack. Only perform one of these moves per this period. (Min: 240) +}; \ No newline at end of file diff --git a/Sources/mpmissions/epoch.Stratis/mission.sqm b/Sources/mpmissions/epoch.Stratis/mission.sqm new file mode 100644 index 00000000..8b6d3d96 --- /dev/null +++ b/Sources/mpmissions/epoch.Stratis/mission.sqm @@ -0,0 +1,2167 @@ +version=12; +class Mission +{ + addOns[]= + { + "A3_Soft_F_Car", + "A3_Soft_F_Quadbike", + "a3_soft_f_beta_quadbike", + "A3_Boat_F_Civilian_Boat", + "A3_Boat_F_Boat_Transport_01", + "A3_Air_F_Heli_Light_01", + "A3_Air_F_Heli_Heli_Transport_04", + "A3_Air_F_Heli_Heli_Transport_03", + "a3_map_stratis", + "a3_characters_f_gamma", + "A3_Characters_F_OPFOR", + "A3_Characters_F_INDEP", + "A3_Characters_F_Civil", + "A3_epoch_config", + "a3_characters_f", + "A3_Data_F_Curator_Virtual" + }; + addOnsAuto[]= + { + "a3_epoch_config", + "a3_map_stratis" + }; + randomSeed=12032465; + class Intel + { + briefingName="Epoch Mod"; + resistanceWest=0; + timeOfChanges=28800; + startWeather=0; + startWind=0; + forecastWeather=0; + forecastWind=0; + forecastWaves=0; + wavesForced=1; + windForced=1; + year=2035; + month=6; + day=24; + hour=12; + minute=55; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; + class Groups + { + items=100; + class Item0 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.714,5.5,5118.688}; + azimut=159.84946; + special="NONE"; + id=0; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item1 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.6652,5.5,5122.6299}; + azimut=153.62447; + special="NONE"; + id=1; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item2 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.7111,5.5,5119.5181}; + azimut=153.62447; + special="NONE"; + id=2; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item3 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1724.5353,5.5,5123.4092}; + azimut=153.62447; + special="NONE"; + id=3; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item4 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.4269,5.5,5123.498}; + azimut=153.62447; + special="NONE"; + id=4; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item5 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.8414,5.5,5124.3911}; + azimut=153.62447; + special="NONE"; + id=5; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item6 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.6818,5.5,5124.6611}; + azimut=153.62447; + special="NONE"; + id=6; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item7 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.9835,5.5,5122.1563}; + azimut=153.62447; + special="NONE"; + id=7; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item8 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.587,5.5,5123.3472}; + azimut=153.62447; + special="NONE"; + id=8; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item9 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1724.7823,5.5,5122.5181}; + azimut=153.62447; + special="NONE"; + id=9; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item10 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1714.4298,5.5,5120.4473}; + azimut=153.62447; + special="NONE"; + id=10; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item11 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.2062,5.5,5119.6006}; + azimut=153.62447; + special="NONE"; + id=11; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item12 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.4747,5.5,5123.2524}; + azimut=153.62447; + special="NONE"; + id=12; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item13 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.5167,5.5,5121.0093}; + azimut=153.62447; + special="NONE"; + id=13; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item14 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.7677,5.5,5122.4668}; + azimut=153.62447; + special="NONE"; + id=14; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item15 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.067,5.5,5117.0796}; + azimut=153.62447; + special="NONE"; + id=15; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item16 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.9972,5.5,5117.0654}; + azimut=153.62447; + special="NONE"; + id=16; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item17 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.6412,5.5,5116.1323}; + azimut=153.62447; + special="NONE"; + id=17; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item18 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.5958,5.5,5124.875}; + azimut=153.62447; + special="NONE"; + id=18; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item19 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.8146,5.5,5124.4878}; + azimut=153.62447; + special="NONE"; + id=19; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item20 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.17,5.5,5122.1333}; + azimut=159.84946; + special="NONE"; + id=20; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item21 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.632,5.5,5119.0161}; + azimut=153.62447; + special="NONE"; + id=21; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item22 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.6427,5.5,5118.9463}; + azimut=153.62447; + special="NONE"; + id=22; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item23 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.1017,5.5,5123.8882}; + azimut=153.62447; + special="NONE"; + id=23; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item24 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.8497,5.5,5118.4385}; + azimut=153.62447; + special="NONE"; + id=24; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item25 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.0109,5.5,5124.062}; + azimut=153.62447; + special="NONE"; + id=25; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item26 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1724.0109,5.5,5124.2085}; + azimut=153.62447; + special="NONE"; + id=26; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item27 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1724.0568,5.5,5121.9102}; + azimut=153.62447; + special="NONE"; + id=27; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item28 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.5099,5.5,5122.9639}; + azimut=153.62447; + special="NONE"; + id=28; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item29 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.337,5.5,5117.7339}; + azimut=153.62447; + special="NONE"; + id=29; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item30 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.2228,5.5,5118.3936}; + azimut=153.62447; + special="NONE"; + id=30; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item31 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.1198,5.5,5118.8228}; + azimut=153.62447; + special="NONE"; + id=31; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item32 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.7931,5.5,5120.7715}; + azimut=153.62447; + special="NONE"; + id=32; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item33 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.34,5.5,5119.3511}; + azimut=153.62447; + special="NONE"; + id=33; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item34 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.2589,5.5,5121.1533}; + azimut=153.62447; + special="NONE"; + id=34; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item35 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.8693,5.5,5122.5503}; + azimut=153.62447; + special="NONE"; + id=35; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item36 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.4039,5.5,5125.4272}; + azimut=153.62447; + special="NONE"; + id=36; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item37 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.3409,5.5,5123.7363}; + azimut=153.62447; + special="NONE"; + id=37; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item38 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.84,5.5,5117.3599}; + azimut=153.62447; + special="NONE"; + id=38; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item39 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.0118,5.5,5122.3721}; + azimut=153.62447; + special="NONE"; + id=39; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item40 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.7794,5.5,5119.3511}; + azimut=159.84946; + special="NONE"; + id=40; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item41 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1713.8019,5.5,5119.7251}; + azimut=153.62447; + special="NONE"; + id=41; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item42 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.1808,5.5,5120.0923}; + azimut=153.62447; + special="NONE"; + id=42; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item43 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1714.7247,5.5,5124.6333}; + azimut=153.62447; + special="NONE"; + id=43; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item44 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.757,5.5,5122.8784}; + azimut=153.62447; + special="NONE"; + id=44; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item45 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.5499,5.5,5125.1929}; + azimut=153.62447; + special="NONE"; + id=45; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item46 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.0011,5.5,5124.2705}; + azimut=153.62447; + special="NONE"; + id=46; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item47 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.3253,5.5,5123.6401}; + azimut=153.62447; + special="NONE"; + id=47; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item48 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.2745,5.5,5123.6719}; + azimut=153.62447; + special="NONE"; + id=48; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item49 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.3409,5.5,5121.9893}; + azimut=153.62447; + special="NONE"; + id=49; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item50 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1714.5758,5.5,5123.1719}; + azimut=153.62447; + special="NONE"; + id=50; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item51 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.1173,5.5,5120.5381}; + azimut=153.62447; + special="NONE"; + id=51; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item52 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.7745,5.5,5124.8921}; + azimut=153.62447; + special="NONE"; + id=52; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item53 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.9,5.5,5117.3594}; + azimut=153.62447; + special="NONE"; + id=53; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item54 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.421,5.5,5125.1826}; + azimut=153.62447; + special="NONE"; + id=54; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item55 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.4044,5.5,5121.6865}; + azimut=153.62447; + special="NONE"; + id=55; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item56 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.7028,5.5,5122.6909}; + azimut=153.62447; + special="NONE"; + id=56; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item57 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.5768,5.5,5122.8433}; + azimut=153.62447; + special="NONE"; + id=57; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item58 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.1183,5.5,5126.0903}; + azimut=153.62447; + special="NONE"; + id=58; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item59 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.9865,5.5,5124.3774}; + azimut=153.62447; + special="NONE"; + id=59; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item60 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.046,5.5,5118.4092}; + azimut=159.84946; + special="NONE"; + id=60; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item61 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.2589,5.5,5120.3433}; + azimut=153.62447; + special="NONE"; + id=61; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item62 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.3868,5.5,5119.9585}; + azimut=153.62447; + special="NONE"; + id=62; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item63 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.7159,5.5,5121.209}; + azimut=153.62447; + special="NONE"; + id=63; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item64 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.754,5.5,5120.417}; + azimut=153.62447; + special="NONE"; + id=64; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item65 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.5304,5.5,5125.0767}; + azimut=153.62447; + special="NONE"; + id=65; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item66 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.6007,5.5,5123.1367}; + azimut=153.62447; + special="NONE"; + id=66; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item67 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.1964,5.5,5125.8853}; + azimut=153.62447; + special="NONE"; + id=67; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item68 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.3634,5.5,5123.5522}; + azimut=153.62447; + special="NONE"; + id=68; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item69 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.5675,5.5,5121.5313}; + azimut=153.62447; + special="NONE"; + id=69; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item70 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1716.0133,5.5,5121.9121}; + azimut=153.62447; + special="NONE"; + id=70; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item71 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.7858,5.5,5119.6025}; + azimut=153.62447; + special="NONE"; + id=71; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item72 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.7648,5.5,5124.6011}; + azimut=153.62447; + special="NONE"; + id=72; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item73 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.587,5.5,5117.521}; + azimut=153.62447; + special="NONE"; + id=73; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item74 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.0675,5.5,5123.9849}; + azimut=153.62447; + special="NONE"; + id=74; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item75 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.4581,5.5,5120.1011}; + azimut=153.62447; + special="NONE"; + id=75; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item76 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.2765,5.5,5125.6362}; + azimut=153.62447; + special="NONE"; + id=76; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item77 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.3956,5.5,5116.4858}; + azimut=153.62447; + special="NONE"; + id=77; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item78 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.6447,5.5,5119.7593}; + azimut=153.62447; + special="NONE"; + id=78; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item79 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1714.8409,5.5,5122.1514}; + azimut=153.62447; + special="NONE"; + id=79; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item80 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.2599,5.5,5121.7544}; + azimut=153.62447; + special="NONE"; + id=80; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item81 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.7511,5.5,5121.2554}; + azimut=153.62447; + special="NONE"; + id=81; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item82 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.8234,5.5,5121.061}; + azimut=153.62447; + special="NONE"; + id=82; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item83 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1714.1183,5.5,5121.4824}; + azimut=153.62447; + special="NONE"; + id=83; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item84 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.4132,5.5,5121.4976}; + azimut=153.62447; + special="NONE"; + id=84; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item85 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1724.2052,5.5,5120.2104}; + azimut=153.62447; + special="NONE"; + id=85; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item86 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.007,5.5,5120.7129}; + azimut=153.62447; + special="NONE"; + id=86; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item87 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1717.5988,5.5,5117.6157}; + azimut=153.62447; + special="NONE"; + id=87; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item88 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.3156,5.5,5118.2314}; + azimut=153.62447; + special="NONE"; + id=88; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item89 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.1378,5.5,5120.4873}; + azimut=153.62447; + special="NONE"; + id=89; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item90 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1715.2687,5.5,5118.0498}; + azimut=153.62447; + special="NONE"; + id=90; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item91 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.2501,5.5,5116.7637}; + azimut=153.62447; + special="NONE"; + id=91; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item92 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.17,5.5,5116.7842}; + azimut=153.62447; + special="NONE"; + id=92; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item93 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1714.5226,5.5,5118.7974}; + azimut=153.62447; + special="NONE"; + id=93; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item94 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1723.5236,5.5,5117.8892}; + azimut=153.62447; + special="NONE"; + id=94; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item95 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1719.4435,5.5,5117.9116}; + azimut=153.62447; + special="NONE"; + id=95; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item96 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1721.9874,5.5,5119.2354}; + azimut=153.62447; + special="NONE"; + id=96; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item97 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1720.5988,5.5,5117.6226}; + azimut=153.62447; + special="NONE"; + id=97; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item98 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1718.2072,5.5,5118.0884}; + azimut=153.62447; + special="NONE"; + id=98; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + class Item99 + { + side="CIV"; + class Vehicles + { + items=1; + class Item0 + { + position[]={1722.5665,5.5,5116.8423}; + azimut=153.62447; + special="NONE"; + id=99; + side="CIV"; + vehicle="VirtualMan_EPOCH"; + player="PLAY CDG"; + leader=1; + skill=0.60000002; + }; + }; + }; + }; + class Markers + { + items=3; + class Item0 + { + position[]={4031.6592,110.60542,4222.1802}; + name="center"; + type="Empty"; + }; + class Item1 + { + position[]={1719.4357,5.5,5120.9775}; + name="respawn_east"; + type="Empty"; + angle=23.608498; + }; + class Item2 + { + position[]={1719.5787,5.5,5121.1045}; + name="respawn_west"; + type="Empty"; + angle=23.608498; + }; + }; +}; +class Intro +{ + addOns[]= + { + "a3_map_stratis" + }; + addOnsAuto[]= + { + "a3_map_stratis" + }; + randomSeed=13802307; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; +class OutroWin +{ + addOns[]= + { + "a3_map_stratis" + }; + addOnsAuto[]= + { + "a3_map_stratis" + }; + randomSeed=4712975; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +}; +class OutroLoose +{ + addOns[]= + { + "a3_map_stratis" + }; + addOnsAuto[]= + { + "a3_map_stratis" + }; + randomSeed=10755213; + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.30000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.30000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + year=2035; + month=6; + day=24; + hour=12; + minute=0; + startFogDecay=0.013; + forecastFogDecay=0.013; + }; +};