diff --git a/addons/cup_maps/CfgWorlds.hpp b/addons/cup_maps/CfgWorlds.hpp index df962b54..6a6600f6 100644 --- a/addons/cup_maps/CfgWorlds.hpp +++ b/addons/cup_maps/CfgWorlds.hpp @@ -1045,4 +1045,142 @@ class CfgWorlds }; }; }; + + class Woodland_ACR : CAWorld + { + class Names + { + class ACityC_Chernogorsk + { + angle = 55; + positionOffset[] = { -150, 200 }; + radiusA = 600; + radiusB = 800; + }; + + class ACityC_Elektrozavodsk + { + angle = 70; + radiusA = 500; + radiusB = 800; + }; + + class ACityC_StarySobor + { + angle = 45; + positionOffset[] = { -20, -50 }; + radiusA = 400; + radiusB = 200; + }; + + class ACityC_Dolina + { + positionOffset[] = { -50, -30 }; + radiusA = 300; + radiusB = 150; + }; + + class ACityC_Guglovo + { + positionOffset[] = { 50, -50 }; + }; + + class ACityC_Kamyshovo + { + positionOffset[] = { 0, 50 }; + radiusA = 200; + radiusB = 200; + }; + + class ACityC_Mogilevka + { + angle = 30; + positionOffset[] = { -50, 50 }; + radiusA = 200; + radiusB = 250; + }; + + class ACityC_Msta + { + angle = 60; + positionOffset[] = { -60, 20 }; + radiusA = 100; + radiusB = 200; + }; + + class ACityC_Nadezhdino + { + angle = 50; + positionOffset[] = { 25, 75 }; + radiusA = 175; + radiusB = 300; + }; + + class ACityC_Nizhnoye + { + type = "NameLocal"; + }; + + class ACityC_NovySobor + { + angle = 45; + positionOffset[] = { -50, -100 }; + radiusA = 250; + radiusB = 200; + }; + + class ACityC_Orlovets + { + positionOffset[] = { 25, 100 }; + radiusA = 200; + radiusB = 150; + }; + + class ACityC_Polana + { + angle = 30; + positionOffset[] = { -50, -50 }; + radiusA = 200; + radiusB = 300; + }; + + class ACityC_Prigorodki + { + angle = 35; + positionOffset[] = { -75, -75 }; + radiusA = 300; + radiusB = 150; + }; + + class ACityC_Pusta + { + positionOffset[] = { 25, 0 }; + radiusB = 225; + }; + + class ACityC_Shakhovka + { + positionOffset[] = { -100, 0 }; + }; + + class ACityC_Staroye + { + positionOffset[] = { -125, 100 }; + radiusA = 300; + radiusB = 200; + }; + + class ACityC_Tulga + { + positionOffset[] = { -25, 50 }; + radiusA = 200; + }; + + class ACityC_Vyshnoye + { + angle = 75; + radiusA = 150; + }; + }; + }; }; diff --git a/addons/missions/CfgMissions.hpp b/addons/missions/CfgMissions.hpp index 0a07d23c..f823085b 100644 --- a/addons/missions/CfgMissions.hpp +++ b/addons/missions/CfgMissions.hpp @@ -4,6 +4,7 @@ class CfgMissions { MISSION_CONFIG(SerialKillers_CUP_RHS,Chernarus_Winter); MISSION_CONFIG(SerialKillers_CUP_RHS,Chernarus_Summer); MISSION_CONFIG(SerialKillers,Tanoa); + MISSION_CONFIG(SerialKillers,Woodland_ACR); // Bystrica MISSION_CONFIG(SK_test,Malden); }; }; diff --git a/addons/missions/SerialKillers.Woodland_ACR/CfgSerialKillers.hpp b/addons/missions/SerialKillers.Woodland_ACR/CfgSerialKillers.hpp new file mode 100644 index 00000000..4c972693 --- /dev/null +++ b/addons/missions/SerialKillers.Woodland_ACR/CfgSerialKillers.hpp @@ -0,0 +1,12 @@ +class CfgSerialKillers +{ + class Killers + { + FlagClassName = "FlagCarrierINS"; + }; + + class Police + { + FlagClassName = "FlagCarrierCDF"; + }; +}; diff --git a/addons/missions/SerialKillers.Woodland_ACR/cba_settings.sqf b/addons/missions/SerialKillers.Woodland_ACR/cba_settings.sqf new file mode 100644 index 00000000..a0addcdd --- /dev/null +++ b/addons/missions/SerialKillers.Woodland_ACR/cba_settings.sqf @@ -0,0 +1,16 @@ +// SerialKillers map custom settings +force force afsk_civilian_respectCityArea = true; // Use configured areas as the mod changes them to be usable +force force afsk_civilian_initialCiviliansCount = 100; +force force afsk_vehicles_emptyVehiclesCount = 200; + +// ACE Fatigue +force force ace_advanced_fatigue_enabled = false; + +// AF Mods Spectator +force force afm_spectator_enabled = false; + +// AF Friendly Tracker (BFT) +force force afft_friendly_tracker_enabled = false; + +// DUI Nametags +force force diwako_dui_nametags_useSideIsFriendly = false; diff --git a/addons/missions/SerialKillers.Woodland_ACR/description.ext b/addons/missions/SerialKillers.Woodland_ACR/description.ext new file mode 100644 index 00000000..8be9e4ab --- /dev/null +++ b/addons/missions/SerialKillers.Woodland_ACR/description.ext @@ -0,0 +1,23 @@ +cba_settings_hasSettingsFile = 1; + +class Header +{ + gameType = "SK"; + minPlayers = 2; + maxPlayers = 24; +}; + +author = "3Mydlo3"; +onLoadName = "ArmaForces SerialKillers"; +onLoadMission = "Police obtained information that up to 4 well equipped killers want to wreak havoc in Bystrica. Their task is simple - stop the assassins as soon as possible."; +briefingName = "ArmaForces SerialKillers"; + +disabledAI = "true"; +enableDebugConsole = 1; +respawn = 3; +respawnDelay = 20; +respawnOnStart = -1; +respawnTemplatesWest[] = {"MenuPosition", "Counter"}; +respawnTemplatesEast[] = {"Base", "Counter"}; + +#include "CfgSerialKillers.hpp" diff --git a/addons/missions/SerialKillers.Woodland_ACR/mission.sqm b/addons/missions/SerialKillers.Woodland_ACR/mission.sqm new file mode 100644 index 00000000..85248ea0 --- /dev/null +++ b/addons/missions/SerialKillers.Woodland_ACR/mission.sqm @@ -0,0 +1,6557 @@ +version=54; +class EditorData +{ + moveGridStep=1; + angleGridStep=0.2617994; + scaleGridStep=1; + autoGroupingDist=10; + toggles=513; + mods[]= + { + "3denEnhanced" + }; + class ItemIDProvider + { + nextID=523; + }; + class LayerIndexProvider + { + nextID=52; + }; + class Camera + { + pos[]={1442.5902,27.820597,1726.5652}; + dir[]={0.64767146,-0.31821099,-0.69235212}; + up[]={0.21741368,0.94800514,-0.23241115}; + aside[]={-0.73030484,-9.7521115e-007,-0.68317157}; + }; +}; +binarizationWanted=0; +sourceName="serialkillers"; +addons[]= +{ + "A3_Characters_F", + "rhsusf_c_weapons", + "ace_compat_rhs_usf3", + "armaforces_rhs_cba_mag_compat_usf", + "A3_Weapons_F", + "ace_optics", + "ace_microdagr", + "ace_flashlights", + "A3_Weapons_F_Items", + "acre_sys_prc152", + "afsk_modules", + "A3_Supplies_F_Heli_CargoNets", + "A3_Ui_F", + "A3_Modules_F_Curator_Curator", + "A3_Modules_F", + "A3_Modules_F_Multiplayer", + "A3_Modules_F_Curator_Multiplayer", + "A3_Structures_F_Mil_Helipads", + "A3_Structures_F_Bootcamp_VR_Helpers", + "A3_Structures_F_Mil_Fortification", + "A3_Structures_F_Items_Vessels", + "ace_field_rations", + "ace_dragging", + "cba_xeh", + "A3_Structures_F_Civ_Market", + "A3_Structures_F_Households_Stone_Shed", + "ace_logistics_wirecutter", + "ace_concertina_wire", + "A3_Structures_F_EPA_Civ_Constructions", + "A3_Structures_F_Mil_Shelters", + "A3_Structures_F_EPA_Mil_Scrapyard", + "ace_cargo", + "A3_Structures_F_Mil_BagFence", + "A3_Structures_F_Civ_Camping", + "ace_sitting", + "rhssaf_main", + "A3_Structures_F_Ind_Transmitter_Tower", + "A3_Structures_F_EPA_Civ_Camping", + "CUP_Misc3_Config" +}; +class AddonsMetaData +{ + class List + { + items=28; + class Item0 + { + className="A3_Characters_F"; + name="Arma 3 Alpha - Characters and Clothing"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item1 + { + className="rhsusf_c_weapons"; + name="RHSUSF Weapons & Accessories"; + author="Red Hammer Studios"; + url="http://www.rhsmods.org/"; + }; + class Item2 + { + className="ace_compat_rhs_usf3"; + name="ACE3 - RHS USAF Compatibility"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item3 + { + className="armaforces_rhs_cba_mag_compat_usf"; + name="ArmaForces - RHS CBA Mag Compat - USAF"; + author="3Mydlo3, veteran29"; + }; + class Item4 + { + className="A3_Weapons_F"; + name="Arma 3 Alpha - Weapons and Accessories"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item5 + { + className="ace_optics"; + name="ACE3 - Optics"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item6 + { + className="ace_microdagr"; + name="ACE3 - MicroDAGR"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item7 + { + className="ace_flashlights"; + name="ACE3 - Flashlights"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item8 + { + className="acre_sys_prc152"; + name="ACRE2 - AN/PRC-152"; + author="ACRE2Team"; + url="https://github.com/IDI-Systems/acre2"; + }; + class Item9 + { + className="afsk_modules"; + name="AFSK - modules"; + author="ArmaForces"; + }; + class Item10 + { + className="A3_Supplies_F_Heli"; + name="Arma 3 Helicopters - Ammoboxes and Supplies"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item11 + { + className="A3_Ui_F"; + name="Arma 3 - User Interface"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item12 + { + className="A3_Modules_F_Curator"; + name="Arma 3 Zeus Update - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item13 + { + className="A3_Modules_F"; + name="Arma 3 Alpha - Scripted Modules"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item14 + { + className="A3_Structures_F_Mil"; + name="Arma 3 - Military Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item15 + { + className="A3_Structures_F_Bootcamp"; + name="Arma 3 Bootcamp Update - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item16 + { + className="A3_Structures_F"; + name="Arma 3 - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item17 + { + className="ace_field_rations"; + name="ACE3 - Field Rations"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item18 + { + className="ace_dragging"; + name="ACE3 - Dragging"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item19 + { + className="A3_Structures_F_Households"; + name="Arma 3 - Houses"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item20 + { + className="ace_logistics_wirecutter"; + name="ACE3 - Logistics Wire Cutter"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item21 + { + className="ace_concertina_wire"; + name="ACE3 - Concertina Wire"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item22 + { + className="A3_Structures_F_EPA"; + name="Arma 3 Survive Episode - Buildings and Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item23 + { + className="ace_cargo"; + name="ACE3 - Cargo"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item24 + { + className="ace_sitting"; + name="ACE3 - Sitting"; + author="ACE-Team"; + url="https://ace3.acemod.org/"; + }; + class Item25 + { + className="rhssaf_main"; + name="RHS: SAF main"; + author="Red Hammer Studios"; + url="http://www.rhsmods.org/"; + }; + class Item26 + { + className="A3_Structures_F_Ind"; + name="Arma 3 - Industrial Structures"; + author="Bohemia Interactive"; + url="https://www.arma3.com"; + }; + class Item27 + { + className="CUP_Misc3_Config"; + name="CUP_Misc3_Config"; + }; + }; +}; +dlcs[]= +{ + "RHS_USAF", + "Kart", + "Heli", + "RHS_SAF" +}; +randomSeed=5172415; +class ScenarioData +{ + author="3Mydlo3"; +}; +class CustomAttributes +{ + class Category0 + { + name="Scenario"; + class Attribute0 + { + property="cba_settings_hasSettingsFile"; + expression="false"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=1; + }; +}; +class Mission +{ + class Intel + { + timeOfChanges=1800.0002; + startWeather=0.15000001; + startWind=0.1; + startWaves=0.1; + forecastWeather=0.15000001; + forecastWind=0.1; + forecastWaves=0.1; + forecastLightnings=0.1; + wavesForced=1; + windForced=1; + year=2010; + month=7; + day=6; + hour=10; + minute=0; + startFogDecay=0.014; + forecastFogDecay=0.014; + }; + class Entities + { + items=24; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1462.4852,6.0014391,1689.2047}; + angles[]={0,0.81184471,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="LIEUTENANT"; + description="Policjant Głównodowodzący"; + isPlayer=1; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=1; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1461.5446,6.0014386,1688.2057}; + angles[]={0,0.81184471,0}; + }; + side="West"; + flags=4; + class Attributes + { + rank="SERGEANT"; + description="Policjant Głównodowodzący"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=2; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=0; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="East"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7398.2349,174.34903,193.37741}; + }; + side="East"; + flags=7; + class Attributes + { + name="killer1"; + description="Terrorysta"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + }; + }; + id=4; + type="C_man_p_fugitive_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01GRE"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={7396.083,174.43875,190.41843}; + }; + side="East"; + flags=5; + class Attributes + { + name="killer2"; + description="Terrorysta"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + }; + }; + id=5; + type="C_man_p_fugitive_F"; + atlOffset=1.5258789e-005; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01GRE"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={7399.334,174.01904,189.6196}; + }; + side="East"; + flags=5; + class Attributes + { + name="killer3"; + description="Terrorysta"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + }; + }; + id=6; + type="C_man_p_fugitive_F"; + atlOffset=4.5776367e-005; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02GRE"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=3; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={7402.5723,173.70164,190.62936}; + }; + side="East"; + flags=5; + class Attributes + { + name="killer4"; + description="Terrorysta"; + isPlayable=1; + class Inventory + { + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + }; + }; + id=7; + type="C_man_p_fugitive_F"; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03GRE"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=3; + atlOffset=3.0517578e-005; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Layer"; + name="Terrorist start"; + class Entities + { + items=5; + class Item0 + { + dataType="Logic"; + class PositionInfo + { + position[]={751.23907,337.69843,7189.1396}; + angles[]={6.1835165,0,0.10494342}; + }; + id=9; + type="afsk_modules_moduleKillersStart"; + atlOffset=0.013885498; + class CustomAttributes + { + class Attribute0 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Logic"; + class PositionInfo + { + position[]={1167.9651,81.052666,2607.0601}; + angles[]={0.030658109,0,0.039977662}; + }; + id=16; + type="afsk_modules_moduleKillersStart"; + atlOffset=0.013900757; + class CustomAttributes + { + class Attribute0 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={5913.1948,80.8339,5829.3232}; + }; + id=17; + type="afsk_modules_moduleKillersStart"; + atlOffset=0.013900757; + class CustomAttributes + { + class Attribute0 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={5010.6128,6.0113649,1761.6754}; + }; + id=19; + type="afsk_modules_moduleKillersStart"; + atlOffset=0.013904095; + class CustomAttributes + { + class Attribute0 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=1; + }; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={2175.5339,214.03027,4337.7168}; + angles[]={0.0012918708,0,0}; + }; + id=20; + type="afsk_modules_moduleKillersStart"; + atlOffset=0.013900757; + class CustomAttributes + { + class Attribute0 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=8; + atlOffset=-33.282883; + }; + class Item3 + { + dataType="Layer"; + name="Baza Terrorystów"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7349.0752,179.67178,162.90768}; + angles[]={6.2338929,0,6.1545658}; + }; + side="Empty"; + flags=4; + class Attributes + { + name="special_ammo"; + }; + id=22; + type="I_CargoNet_01_ammo_F"; + atlOffset=-0.0077667236; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_rpg7"",""rhs_weap_fgm148"",""rhs_weap_fim92"",""rhs_weap_m249_pip_S_para""],[1,1,1,1]],[[""DemoCharge_Remote_Mag"",""Laserbatteries"",""ACE_HandFlare_Yellow"",""ACE_HandFlare_White"",""ACE_HandFlare_Red"",""ACE_HandFlare_Green"",""rhs_mag_an_m8hc"",""rhs_mag_m18_yellow"",""rhs_mag_m18_red"",""rhs_mag_m18_purple"",""rhs_mag_m18_green"",""rhs_mag_m67"",""rhs_mag_mk3a2"",""rhs_mag_an_m14_th3"",""SatchelCharge_Remote_Mag"",""rhs_200rnd_556x45_T_SAW"",""rhs_fim92_mag"",""rhs_fgm148_magazine_AT"",""rhs_rpg7_OG7V_mag"",""rhs_rpg7_PG7VL_mag"",""rhs_rpg7_TBG7V_mag"",""rhs_rpg7_type69_airburst_mag"",""ACE_M84""],[2,4,5,5,5,5,10,2,2,2,2,3,3,2,2,4,1,1,1,1,1,1,4]],[[""Laserdesignator"",""ACE_morphine"",""ACE_Banana"",""ACE_elasticBandage"",""ACE_epinephrine"",""ACE_microDAGR"",""rhsusf_acc_SpecterDR_A"",""ACE_M26_Clacker"",""ACRE_PRC148""],[4,40,10,40,20,4,1,1,4]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Logic"; + class PositionInfo + { + position[]={7400.1719,174.10405,192.93503}; + angles[]={6.2285728,0,6.1690178}; + }; + id=23; + type="afsk_modules_moduleKillersBase"; + atlOffset=3.0517578e-005; + }; + }; + id=21; + atlOffset=0.12945557; + }; + class Item4 + { + dataType="Marker"; + position[]={1457.675,6,1693.167}; + name="respawn_west"; + type="Empty"; + colorName="ColorWEST"; + id=24; + }; + class Item5 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1461.2562,6.0014386,1690.1129}; + angles[]={0,0.78433836,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Pilot"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=26; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1460.4471,6.0014386,1689.2617}; + angles[]={0,0.78433836,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Drugi pilot"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=27; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=25; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item6 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1460.1532,6.0014391,1691.2687}; + angles[]={0,0.77407873,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=29; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1459.2086,6.0014391,1690.3197}; + angles[]={0,0.77407873,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=30; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=28; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item7 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1457.7935,6.0064178,1692.9236}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=32; + type="B_Soldier_F"; + atlOffset=0.0049786568; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1456.9221,6.0014391,1692.2194}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=33; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=31; + atlOffset=0.0049786568; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item8 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1459.0504,6.0014386,1692.166}; + angles[]={0,0.74756467,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=35; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1458.2386,6.0014386,1691.2651}; + angles[]={0,0.74756467,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=36; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=34; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item9 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1456.7234,6.0014391,1694.3315}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=38; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1455.9994,6.0014386,1693.5398}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=39; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=37; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item10 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1455.4946,6.0014391,1695.1942}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=41; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1454.5332,6.0014386,1694.1752}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=42; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=40; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item11 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1454.6471,6.0014386,1696.563}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=44; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1453.6871,6.0014391,1695.4055}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=45; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=43; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item12 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1453.3632,6.0014386,1697.3475}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=47; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1452.6901,6.0014391,1696.6135}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=48; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=46; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item13 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1452.3828,6.0014386,1698.3436}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=6; + class Attributes + { + rank="CORPORAL"; + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=50; + type="B_Soldier_F"; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1451.6731,6.0014391,1697.6005}; + angles[]={0,0.85498935,0}; + }; + side="West"; + flags=4; + class Attributes + { + description="Policjant"; + isPlayable=1; + class Inventory + { + class handgun + { + name="rhsusf_weap_glock17g4"; + firemode="rhsusf_weap_glock17g4:Single"; + class primaryMuzzleMag + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + ammoLeft=17; + }; + }; + class binocular + { + name="Binocular"; + }; + class uniform + { + typeName="U_Marshal"; + isBackpack=0; + class ItemCargo + { + items=3; + class Item0 + { + name="ACE_microDAGR"; + count=1; + }; + class Item1 + { + name="ACE_Flashlight_XL50"; + count=1; + }; + class Item2 + { + name="FirstAidKit"; + count=1; + }; + }; + }; + class vest + { + typeName="V_TacVest_blk_POLICE"; + isBackpack=0; + class MagazineCargo + { + items=1; + class Item0 + { + name="rhsusf_mag_17Rnd_9x19_JHP"; + count=3; + ammoLeft=17; + }; + }; + class ItemCargo + { + items=2; + class Item0 + { + name="ACRE_PRC152"; + count=1; + }; + class Item1 + { + name="FirstAidKit"; + count=3; + }; + }; + }; + map="ItemMap"; + compass="ItemCompass"; + watch="ItemWatch"; + gps="ItemGPS"; + headgear="H_Cap_police"; + }; + }; + id=51; + type="B_Soldier_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENGFRE"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + }; + id=49; + atlOffset=-4.7683716e-007; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=1; + }; + }; + class Item14 + { + dataType="Marker"; + position[]={2253.876,214.09531,4361.8862}; + name="respawn_east"; + type="Empty"; + colorName="ColorEAST"; + id=57; + }; + class Item15 + { + dataType="Logic"; + class PositionInfo + { + position[]={1467.696,6,1684.1218}; + angles[]={0,6.0448084,0}; + }; + name="adminzeus"; + id=58; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="#adminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + nAttributes=4; + }; + }; + class Item16 + { + dataType="Logic"; + class PositionInfo + { + position[]={1459.2748,6,1692.4233}; + }; + id=59; + type="SideBLUFOR_F"; + }; + class Item17 + { + dataType="Logic"; + class PositionInfo + { + position[]={1460.0404,6,1693.9136}; + }; + id=60; + type="SideOPFOR_F"; + }; + class Item18 + { + dataType="Logic"; + class PositionInfo + { + position[]={1458.9838,6,1693.6938}; + }; + areaSize[]={24.587589,0,26.916046}; + flags=1; + id=61; + type="ModuleSector_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleSector_F_DefaultOwner"; + expression="_this setVariable ['DefaultOwner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="1"; + }; + }; + }; + class Attribute1 + { + property="ModuleSector_F_CostInfantry"; + expression="_this setVariable ['CostInfantry',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute2 + { + property="ModuleSector_F_OnOwnerChange"; + expression="_this setVariable ['OnOwnerChange',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleSector_F_ScoreReward"; + expression="_this setVariable ['ScoreReward',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute4 + { + property="ModuleSector_F_CostWheeled"; + expression="_this setVariable ['CostWheeled',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute5 + { + property="ModuleSector_F_OwnerLimit"; + expression="_this setVariable ['OwnerLimit',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute6 + { + property="ModuleSector_F_TaskTitle"; + expression="_this setVariable ['TaskTitle',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute7 + { + property="ModuleSector_F_Designation"; + expression="_this setVariable ['Designation',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute8 + { + property="ModuleSector_F_TaskOwner"; + expression="_this setVariable ['TaskOwner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute9 + { + property="ModuleSector_F_CostAir"; + expression="_this setVariable ['CostAir',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute10 + { + property="ModuleSector_F_CostPlayers"; + expression="_this setVariable ['CostPlayers',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute11 + { + property="ModuleSector_F_CostTracked"; + expression="_this setVariable ['CostTracked',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute12 + { + property="ModuleSector_F_TaskDescription"; + expression="_this setVariable ['TaskDescription',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute13 + { + property="ModuleSector_F_CostWater"; + expression="_this setVariable ['CostWater',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute14 + { + property="ModuleSector_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="Czernogórsk"; + }; + }; + }; + nAttributes=15; + }; + }; + class Item19 + { + dataType="Logic"; + class PositionInfo + { + position[]={1458.1547,6,1694.2671}; + }; + id=62; + type="ModuleBleedTickets_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleBleedTickets_F_ticketBleedRatio"; + expression="_this setVariable ['ticketBleedRatio',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ModuleBleedTickets_F_ticketBleedMax"; + expression="_this setVariable ['ticketBleedMax',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleBleedTickets_F_delay"; + expression="_this setVariable ['delay',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=5; + }; + }; + }; + nAttributes=3; + }; + }; + class Item20 + { + dataType="Logic"; + class PositionInfo + { + position[]={7399.1641,174.218,192.90573}; + angles[]={6.2285728,0,6.1690178}; + }; + areaSize[]={50,-1,50}; + flags=1; + id=63; + type="ModuleSector_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleSector_F_DefaultOwner"; + expression="_this setVariable ['DefaultOwner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute1 + { + property="ModuleSector_F_CostInfantry"; + expression="_this setVariable ['CostInfantry',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute2 + { + property="ModuleSector_F_OnOwnerChange"; + expression="_this setVariable ['OnOwnerChange',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleSector_F_ScoreReward"; + expression="_this setVariable ['ScoreReward',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute4 + { + property="ModuleSector_F_CostWheeled"; + expression="_this setVariable ['CostWheeled',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute5 + { + property="ModuleSector_F_OwnerLimit"; + expression="_this setVariable ['OwnerLimit',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute6 + { + property="ModuleSector_F_TaskTitle"; + expression="_this setVariable ['TaskTitle',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute7 + { + property="ModuleSector_F_Designation"; + expression="_this setVariable ['Designation',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute8 + { + property="ModuleSector_F_TaskOwner"; + expression="_this setVariable ['TaskOwner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute9 + { + property="ModuleSector_F_CostAir"; + expression="_this setVariable ['CostAir',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute10 + { + property="ModuleSector_F_CostPlayers"; + expression="_this setVariable ['CostPlayers',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute11 + { + property="ModuleSector_F_CostTracked"; + expression="_this setVariable ['CostTracked',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute12 + { + property="ModuleSector_F_TaskDescription"; + expression="_this setVariable ['TaskDescription',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute13 + { + property="ModuleSector_F_CostWater"; + expression="_this setVariable ['CostWater',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="0"; + }; + }; + }; + class Attribute14 + { + property="ModuleSector_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="Baza terrorystów"; + }; + }; + }; + nAttributes=15; + }; + }; + class Item21 + { + dataType="Layer"; + name="Police Stations"; + class Entities + { + items=4; + class Item0 + { + dataType="Logic"; + class PositionInfo + { + position[]={1469.5123,6.1019988,1698.9784}; + angles[]={0,0.85095859,0}; + }; + areaSize[]={21.104017,0,36.433228}; + areaIsRectangle=1; + flags=1; + id=83; + type="afsk_modules_modulePoliceStation"; + class CustomAttributes + { + class Attribute0 + { + property="HasHelipad"; + expression="_this setVariable ['HasHelipad',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute1 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Logic"; + class PositionInfo + { + position[]={5088.9058,6.0139041,1539.2728}; + angles[]={0,5.6730065,0}; + }; + areaSize[]={16.025999,0,18.291454}; + areaIsRectangle=1; + flags=1; + id=85; + type="afsk_modules_modulePoliceStation"; + atlOffset=0.013904095; + class CustomAttributes + { + class Attribute0 + { + property="HasHelipad"; + expression="_this setVariable ['HasHelipad',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="LocationName"; + expression="_this setVariable ['LocationName',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Layer"; + name="Baza Chernogorsk"; + class Entities + { + items=7; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1482.0255,6,1724.7336}; + angles[]={0,5.4564276,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=91; + type="Land_HelipadCivil_F"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1460.4244,6.0005002,1706.9735}; + angles[]={0,0.7693994,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + }; + id=92; + type="VR_Area_01_circle_4_grey_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={1485.3442,6.0010886,1700.6201}; + angles[]={0,5.3349714,0}; + }; + side="Empty"; + class Attributes + { + }; + id=93; + type="VR_Area_01_circle_4_grey_F"; + atlOffset=0.00058841705; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={1445.7454,7.21,1702.2372}; + angles[]={0,2.346554,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=519; + type="Land_HBarrierBig_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={1451.4402,7.21,1708.8079}; + angles[]={0,2.346554,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=520; + type="Land_HBarrierBig_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1468.8959,7.21,1680.6826}; + angles[]={0,2.346554,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=521; + type="Land_HBarrierBig_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={1474.4512,7.21,1687.4156}; + angles[]={0,2.2448318,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=522; + type="Land_HBarrierBig_F"; + }; + }; + id=90; + atlOffset=1.8119812e-005; + }; + class Item3 + { + dataType="Layer"; + name="Baza Elektrozavodsk"; + class Entities + { + items=11; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={5120.1362,6.0144043,1513.7806}; + angles[]={0,5.4161963,0}; + }; + side="Empty"; + class Attributes + { + }; + id=95; + type="VR_Area_01_circle_4_grey_F"; + atlOffset=0.013904095; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={5078.2964,7.2239041,1524.9174}; + angles[]={0,4.1364441,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=96; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={5073.4097,7.2239041,1532.0614}; + angles[]={0,4.1427608,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=97; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={5083.3784,7.2239041,1517.6298}; + angles[]={0,4.1364441,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=98; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={5089.4722,7.2239041,1518.7113}; + angles[]={0,5.5441999,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=99; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={5100.7261,7.2239041,1550.765}; + angles[]={0,0.78483641,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=100; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={5107.0659,7.2239041,1545.2103}; + angles[]={0,0.70218694,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=101; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={5109.4312,7.2239041,1539.2562}; + angles[]={0,2.2716472,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=102; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={5105.4819,7.2239041,1534.4266}; + angles[]={0,2.290345,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=103; + type="Land_HBarrierBig_F"; + atlOffset=0.013904095; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={5085.0444,6.0144043,1529.4496}; + angles[]={0,0.96510011,0}; + }; + side="Empty"; + class Attributes + { + }; + id=104; + type="VR_Area_01_circle_4_grey_F"; + atlOffset=0.013904095; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={5098.8726,6.0144043,1541.7211}; + angles[]={0,3.8291993,0}; + }; + side="Empty"; + class Attributes + { + }; + id=105; + type="VR_Area_01_circle_4_grey_F"; + atlOffset=0.013904095; + }; + }; + id=94; + atlOffset=0.013904095; + }; + }; + id=82; + atlOffset=-54.149475; + }; + class Item22 + { + dataType="Layer"; + name="Terrorist stash"; + class Entities + { + items=14; + class Item0 + { + dataType="Layer"; + name="Lok_1_2"; + class Entities + { + items=27; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1257.9934,492.35632,7637.083}; + angles[]={0,5.5767837,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=272; + type="Land_WaterTank_F"; + atlOffset=134.41156; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1266.4993,354.73395,7646.2314}; + angles[]={6.2645183,3.2206917,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=273; + type="Land_MetalBarrel_F"; + atlOffset=0.011444092; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={1265.6995,354.71747,7646.2061}; + angles[]={6.2645183,4.5296016,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=274; + type="Land_MetalBarrel_F"; + atlOffset=0.011474609; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={1266.1863,354.71661,7645.6357}; + angles[]={6.2645183,0.8640573,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=275; + type="Land_MetalBarrel_F"; + atlOffset=0.011535645; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={1262.9348,354.57104,7638.2695}; + angles[]={6.2738504,5.5767641,0.0093350215}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=276; + type="MetalBarrel_burning_F"; + atlOffset=0.010437012; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={1267.5598,354.68204,7643.8936}; + angles[]={6.2645183,6.1003628,0.022664838}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=277; + type="Land_Sacks_heap_F"; + atlOffset=0.013885498; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={1256.7063,354.79398,7633.7871}; + angles[]={6.2751918,0.86437511,0.0093286335}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=278; + type="Land_HBarrier_5_F"; + atlOffset=0.013916016; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={1260.4802,354.75418,7632.416}; + angles[]={6.2751918,5.5767641,6.1598163}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=279; + type="Land_HBarrier_5_F"; + atlOffset=0.013916016; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={1256.8562,354.46265,7638.8789}; + angles[]={0,5.5767641,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=280; + type="Land_i_Stone_Shed_V1_F"; + atlOffset=0.013885498; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={1252.6863,354.78644,7635.6143}; + angles[]={6.2738566,0.86437511,0.0093286335}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=281; + type="Land_Razorwire_F"; + atlOffset=0.013885498; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={1267.6804,354.75027,7645.4268}; + angles[]={6.2645183,5.5767641,0.022664838}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=282; + type="Land_Pallets_stack_F"; + atlOffset=0.011779785; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={1260.8904,355.28125,7636.2041}; + angles[]={6.2738504,5.5767641,0.0093350215}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=283; + type="CamoNet_BLUFOR_open_F"; + atlOffset=0.013885498; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={1258.9128,354.8114,7644.0664}; + angles[]={6.2711902,5.5767641,0.013327583}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=284; + type="Land_PaperBox_closed_F"; + atlOffset=0.013916016; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={1262.4895,357.33624,7640.1494}; + angles[]={6.0049911,1.8004304,0.1117321}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=285; + type="Land_BagFence_Round_F"; + atlOffset=0.010375977; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={1264.4524,354.62762,7641.3789}; + angles[]={6.2698536,3.310297,0.013332055}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=286; + type="Land_BagFence_Round_F"; + atlOffset=0.013916016; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={1266.7463,357.50592,7638.29}; + angles[]={6.1539593,4.8354878,0.10190956}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=287; + type="Land_BagFence_Round_F"; + atlOffset=0.026672363; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={1263.8464,357.3808,7634.9697}; + angles[]={0.16791666,2.4351716,0.12371725}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=288; + type="Land_BagFence_Long_F"; + atlOffset=2.8497925; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={1259.1267,357.58566,7633.4072}; + angles[]={0.21576972,5.5767641,6.2557931}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=289; + type="Land_Pallet_MilBoxes_F"; + atlOffset=0.0068969727; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={1260.4915,355.37817,7642.2207}; + angles[]={6.2698536,4.0059676,0.013332055}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=290; + type="Land_FieldToilet_F"; + atlOffset=0.005065918; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={1265.5261,357.42221,7636.4453}; + angles[]={6.2514272,2.4234948,0.3213433}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=291; + type="Land_BagFence_Short_F"; + atlOffset=0.052368164; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={1266.0452,357.69931,7640.2832}; + angles[]={6.1605916,4.0088124,0.11591778}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=292; + type="Land_BagFence_Short_F"; + atlOffset=0.039764404; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={1262.3425,354.74661,7646.4229}; + angles[]={6.2711902,0.34081459,0.013332055}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=293; + type="Land_CampingChair_V1_F"; + atlOffset=0.010559082; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={1261.2869,354.73819,7646.8955}; + angles[]={6.2711902,6.0999284,0.013332055}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=294; + type="Land_CampingChair_V1_F"; + atlOffset=0.010559082; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={1261.7571,354.63879,7646.0498}; + angles[]={6.2711902,0.078978539,0.013332055}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=295; + type="Land_CampingTable_F"; + atlOffset=0.011138916; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={1257.6965,354.77609,7645.4863}; + angles[]={6.2711902,5.3149643,0.013327583}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=296; + type="Land_PaperBox_open_empty_F"; + atlOffset=0.013946533; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={1252.2629,354.87659,7642.3125}; + angles[]={6.2738566,2.4351716,6.1598125}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=297; + type="Land_Razorwire_F"; + atlOffset=0.013885498; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={1265.9265,358.25238,7644.8105}; + angles[]={6.2645183,5.5767641,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=298; + type="rhssaf_flag_serbia"; + atlOffset=0.013885498; + }; + }; + id=271; + atlOffset=0.07208252; + }; + class Item1 + { + dataType="Layer"; + name="Lok_2_2"; + class Entities + { + items=36; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={4724.6558,317.48914,5355.7998}; + angles[]={6.0973544,0.52912956,0.11811209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=337; + type="CamoNet_BLUFOR_F"; + atlOffset=0.013916016; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={4723.0347,315.54346,5351.5313}; + angles[]={0,3.6707222,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=338; + type="Land_i_Stone_Shed_V3_F"; + atlOffset=0.01385498; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={4727.3872,323.50461,5349.5649}; + angles[]={0,3.6707222,0}; + }; + side="Empty"; + flags=5; + class Attributes + { + skill=0.2; + }; + id=339; + type="Land_TTowerSmall_2_F"; + atlOffset=0.013916016; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={4729.8403,317.25256,5356.2417}; + angles[]={6.0973539,3.6707222,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=340; + type="Land_HBarrier_3_F"; + atlOffset=0.013916016; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={4727.2876,317.59119,5358.3145}; + angles[]={6.0973539,0.7909289,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=341; + type="Land_HBarrier_3_F"; + atlOffset=0.013916016; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={4724.7788,317.87653,5360.2153}; + angles[]={6.0973544,3.6707222,0.11811209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=342; + type="Land_HBarrier_3_F"; + atlOffset=0.013885498; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={4718.5181,316.12567,5354.4629}; + angles[]={6.0742793,3.6707222,0.10494342}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=343; + type="Land_HBarrier_3_F"; + atlOffset=0.013885498; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={4722.5581,317.73361,5361.3687}; + angles[]={6.0973544,0.0055306554,0.11811209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=344; + type="Land_HBarrier_1_F"; + atlOffset=0.013885498; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={4731.4312,317.09457,5355.7441}; + angles[]={6.0973539,2.6235244,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=345; + type="Land_HBarrier_1_F"; + atlOffset=0.013885498; + }; + class Item9 + { + dataType="Object"; + class PositionInfo + { + position[]={4726.9565,319.51932,5351.5562}; + angles[]={6.2653613,2.0999258,0.1887897}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=346; + type="Land_PaperBox_open_empty_F"; + atlOffset=0.12918091; + }; + class Item10 + { + dataType="Object"; + class PositionInfo + { + position[]={4722.2358,320.19342,5359.8174}; + angles[]={6.1906104,3.6707222,0.27205351}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=347; + type="Land_WaterBarrel_F"; + atlOffset=0.24975586; + }; + class Item11 + { + dataType="Object"; + class PositionInfo + { + position[]={4717.644,316.61874,5359.897}; + angles[]={6.1102638,2.0999258,0.10494342}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=348; + type="Land_BagFence_Short_F"; + atlOffset=0.013885498; + }; + class Item12 + { + dataType="Object"; + class PositionInfo + { + position[]={4730.1128,315.4407,5349.2764}; + angles[]={6.0742793,5.241519,0.022664838}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=349; + type="Land_BagFence_Short_F"; + atlOffset=0.013885498; + }; + class Item13 + { + dataType="Object"; + class PositionInfo + { + position[]={4730.9331,315.75247,5350.6792}; + angles[]={6.0768309,5.241519,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=350; + type="Land_BagFence_Short_F"; + atlOffset=0.013916016; + }; + class Item14 + { + dataType="Object"; + class PositionInfo + { + position[]={4728.0601,315.28012,5348.7383}; + angles[]={6.0742793,3.6707222,0.022664838}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=351; + type="Land_BagFence_Short_F"; + atlOffset=0.013885498; + }; + class Item15 + { + dataType="Object"; + class PositionInfo + { + position[]={4730.7651,316.46652,5354.1064}; + angles[]={6.0768309,5.241519,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=352; + type="Land_BagFence_Short_F"; + atlOffset=0.013885498; + }; + class Item16 + { + dataType="Object"; + class PositionInfo + { + position[]={4718.4653,316.95029,5361.2998}; + angles[]={6.1102638,2.0999258,0.10494342}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=353; + type="Land_BagFence_Short_F"; + atlOffset=0.013885498; + }; + class Item17 + { + dataType="Object"; + class PositionInfo + { + position[]={4720.5171,317.29184,5361.8384}; + angles[]={6.0973544,0.52912956,0.11811209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=354; + type="Land_BagFence_Short_F"; + atlOffset=0.013885498; + }; + class Item18 + { + dataType="Object"; + class PositionInfo + { + position[]={4717.811,320.06369,5356.4688}; + angles[]={0,2.0999258,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=355; + type="Land_BagFence_Short_F"; + atlOffset=4.0400391; + }; + class Item19 + { + dataType="Object"; + class PositionInfo + { + position[]={4719.312,317.23376,5362.2534}; + angles[]={6.0973544,5.241519,0.11811209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=356; + type="Land_BagFence_Corner_F"; + atlOffset=0.013916016; + }; + class Item20 + { + dataType="Object"; + class PositionInfo + { + position[]={4729.2661,315.22638,5348.3237}; + angles[]={6.0742793,2.0999258,0.022664838}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=357; + type="Land_BagFence_Corner_F"; + atlOffset=0.013916016; + }; + class Item21 + { + dataType="Object"; + class PositionInfo + { + position[]={4718.1187,316.2984,5357.7378}; + angles[]={6.1102638,0.52912956,0.10494342}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=358; + type="Land_BagFence_Corner_F"; + atlOffset=0.013916016; + }; + class Item22 + { + dataType="Object"; + class PositionInfo + { + position[]={4730.4585,316.20166,5352.8384}; + angles[]={6.0768309,3.6707222,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=359; + type="Land_BagFence_Corner_F"; + atlOffset=0.013885498; + }; + class Item23 + { + dataType="Object"; + class PositionInfo + { + position[]={4731.1772,316.00702,5351.8398}; + angles[]={6.0768309,0.52912956,0.020001993}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=360; + type="Land_BagFence_Corner_F"; + atlOffset=0.013885498; + }; + class Item24 + { + dataType="Object"; + class PositionInfo + { + position[]={4717.3989,316.38727,5358.7368}; + angles[]={6.1102638,3.6707222,0.2012385}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=361; + type="Land_BagFence_Corner_F"; + atlOffset=0.013946533; + }; + class Item25 + { + dataType="Object"; + class PositionInfo + { + position[]={4721.5073,317.35052,5361.5493}; + angles[]={6.0973544,6.026917,0.11811209}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=362; + type="Land_BagFence_End_F"; + atlOffset=0.013916016; + }; + class Item26 + { + dataType="Object"; + class PositionInfo + { + position[]={4727.0718,315.31427,5349.0269}; + angles[]={6.0742793,2.8853238,0.022664838}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=363; + type="Land_BagFence_End_F"; + atlOffset=0.013916016; + }; + class Item27 + { + dataType="Object"; + class PositionInfo + { + position[]={4726.9653,319.44864,5356.7627}; + angles[]={0.019273495,1.314667,0.39407498}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=364; + type="Land_MetalBarrel_F"; + atlOffset=2.5554504; + }; + class Item28 + { + dataType="Object"; + class PositionInfo + { + position[]={4719.9087,319.34659,5355.0967}; + angles[]={6.1935906,2.6235597,6.1371818}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=365; + type="Land_MetalBarrel_F"; + atlOffset=3.3392334; + }; + class Item29 + { + dataType="Object"; + class PositionInfo + { + position[]={4727.7896,319.54544,5355.7026}; + angles[]={6.0657763,3.6707222,0.28054315}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=366; + type="Land_Sacks_heap_F"; + atlOffset=2.8566895; + }; + class Item30 + { + dataType="Object"; + class PositionInfo + { + position[]={4716.105,315.60623,5356.0186}; + angles[]={6.1310377,4.9797263,0.18067399}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=367; + type="Land_Pallets_stack_F"; + atlOffset=-0.05670166; + }; + class Item31 + { + dataType="Object"; + class PositionInfo + { + position[]={4722.7974,319.35925,5357.168}; + angles[]={0.21304566,1.0526583,0.37202299}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=368; + type="Land_WoodenTable_large_F"; + atlOffset=0.10140991; + }; + class Item32 + { + dataType="Object"; + class PositionInfo + { + position[]={4723.7017,319.47314,5356.7783}; + angles[]={6.0142555,2.0998905,0.18024625}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=369; + type="Land_CampingChair_V2_F"; + atlOffset=2.666687; + }; + class Item33 + { + dataType="Object"; + class PositionInfo + { + position[]={4722.0903,320.35559,5357.5864}; + angles[]={0,6.0269346,0}; + }; + side="Empty"; + class Attributes + { + skill=0.2; + }; + id=370; + type="Land_CampingChair_V2_F"; + atlOffset=0.75518799; + }; + class Item34 + { + dataType="Object"; + class PositionInfo + { + position[]={4727.7935,314.53317,5343.8276}; + angles[]={6.0755563,3.1471231,0.025330193}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=371; + type="Land_HBarrier_1_F"; + atlOffset=0.013885498; + }; + class Item35 + { + dataType="Object"; + class PositionInfo + { + position[]={4725.0571,314.31284,5343.1108}; + angles[]={6.0755563,2.0999258,0.025330193}; + }; + side="Empty"; + flags=4; + class Attributes + { + skill=0.2; + }; + id=372; + type="Land_HBarrier_1_F"; + atlOffset=0.013885498; + }; + }; + id=336; + atlOffset=0.67712402; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={2688.7195,6.823904,2545.0728}; + }; + id=374; + type="afsk_modules_moduleKillersStash"; + atlOffset=0.013904095; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={1255.5764,357.5675,7641.9756}; + angles[]={0.33929038,0,0.30688128}; + }; + id=377; + type="afsk_modules_moduleKillersStash"; + atlOffset=0.037597656; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={4723.6802,317.09247,5348.4839}; + }; + id=378; + type="afsk_modules_moduleKillersStash"; + atlOffset=1.6509399; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={6811.5889,177.08163,6537.498}; + }; + id=380; + type="afsk_modules_moduleKillersStash"; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={5850.105,293.17664,3463.9575}; + }; + id=383; + type="afsk_modules_moduleKillersStash"; + atlOffset=0.013885498; + }; + class Item7 + { + dataType="Logic"; + class PositionInfo + { + position[]={1143.2277,6.1102076,1597.8159}; + angles[]={0.0028887119,0,0}; + }; + id=384; + type="afsk_modules_moduleKillersStash"; + }; + class Item8 + { + dataType="Logic"; + class PositionInfo + { + position[]={1336.4207,6.0155244,1659.4701}; + angles[]={6.282495,0,6.2826972}; + }; + id=385; + type="afsk_modules_moduleKillersStash"; + atlOffset=0.015524387; + }; + class Item9 + { + dataType="Logic"; + class PositionInfo + { + position[]={1276.4352,6.1057081,2022.1654}; + }; + id=389; + type="afsk_modules_moduleKillersStash"; + }; + class Item10 + { + dataType="Logic"; + class PositionInfo + { + position[]={1154.0559,393.37152,4786.9531}; + }; + id=392; + type="afsk_modules_moduleKillersStash"; + atlOffset=0.013885498; + }; + class Item11 + { + dataType="Logic"; + class PositionInfo + { + position[]={1635.7094,6.1389661,1808.5154}; + angles[]={6.2820406,0,0.00069053395}; + }; + id=393; + type="afsk_modules_moduleKillersStash"; + }; + class Item12 + { + dataType="Logic"; + class PositionInfo + { + position[]={1814.8713,252.31218,6138.9365}; + }; + id=394; + type="afsk_modules_moduleKillersStash"; + atlOffset=0.013900757; + }; + class Item13 + { + dataType="Logic"; + class PositionInfo + { + position[]={888.31329,80.498192,2948.3711}; + angles[]={6.2828403,0,6.2825875}; + }; + id=396; + type="afsk_modules_moduleKillersStash"; + }; + }; + id=242; + atlOffset=-99.005188; + }; + class Item23 + { + dataType="Layer"; + name="Jail"; + class Entities + { + items=2; + class Item0 + { + dataType="Logic"; + class PositionInfo + { + position[]={2253.9983,214.09526,4361.7485}; + angles[]={0,2.0958192,0}; + }; + areaSize[]={6.9473782,0,6.56457}; + areaIsRectangle=1; + flags=1; + id=398; + type="afsk_modules_moduleJail"; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2241.7429,218.09894,4368.4556}; + angles[]={0,0,6.1232295}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="this addAction [""Uwolnij więżniów"", { " \n " [""AFSK_jail_freeAll"", [jail_flag]] call CBA_fnc_serverEvent;" \n "}, {}, 6, true, true, """", ""true"", 5];"; + name="jail_flag"; + }; + id=399; + type="FlagCarrierCDF"; + atlOffset=1.5258789e-005; + }; + }; + id=397; + atlOffset=0.012298584; + }; + }; + class Connections + { + class LinkIDProvider + { + nextID=4; + }; + class Links + { + items=4; + class Item0 + { + linkID=0; + item0=60; + item1=61; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=59; + item1=61; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=59; + item1=63; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=60; + item1=63; + class CustomData + { + type="Sync"; + }; + }; + }; + }; +}; diff --git a/addons/vehicles/XEH_preInit.sqf b/addons/vehicles/XEH_preInit.sqf index 5072a673..2ac6cb06 100644 --- a/addons/vehicles/XEH_preInit.sqf +++ b/addons/vehicles/XEH_preInit.sqf @@ -8,7 +8,7 @@ ADDON = false; if (!EGVAR(common,enabled)) exitWith {}; // We need some improvements in determining civilian vehicles limit -GVAR(emptyVehiclesLimit) = 500; +GVAR(emptyVehiclesLimit) = GVAR(emptyVehiclesCount); if (isServer) then { call FUNC(initVehicles); diff --git a/addons/vehicles/initSettings.inc.sqf b/addons/vehicles/initSettings.inc.sqf index 41ea838d..8414ab22 100644 --- a/addons/vehicles/initSettings.inc.sqf +++ b/addons/vehicles/initSettings.inc.sqf @@ -1,7 +1,18 @@ +[ + QGVAR(emptyVehiclesCount), + "SLIDER", + [LSTRING(EmptyVehiclesLimit), LSTRING(EmptyVehiclesLimit_Description)], + [LSTRING(DisplayName), localize "str_dn_vehicles"], + [0, 1000, 400, 0], + true, + {}, + true +] call CBA_fnc_addSetting; + [ QGVAR(emptyVehiclesLimitMultiplier), "LIST", - [LSTRING(EmptyVehiclesLimit), LSTRING(EmptyVehiclesLimit_Description)], + [LSTRING(EmptyVehiclesMultiplier), LSTRING(EmptyVehiclesMultiplier_Description)], [LSTRING(DisplayName), localize "str_dn_vehicles"], [[1, 2, 3], [LSTRING(Low), LSTRING(Medium), LSTRING(High)], 1], true, diff --git a/addons/vehicles/stringtable.xml b/addons/vehicles/stringtable.xml index 32e177d4..37271d50 100644 --- a/addons/vehicles/stringtable.xml +++ b/addons/vehicles/stringtable.xml @@ -93,9 +93,13 @@ Controls how much civilian vehicles will be created on the whole map. Ustala jak dużo pojazdów cywilnych będzie utworzonych na całej mapie. - - High - Dużo + + Civilian vehicles multiplier + Mnożnik pojazdów cywilnych + + + Controls how much civilian vehicles will at most be created in one area. + Ustala jak dużo pojazdów cywilnych zostanie utworzonych w pobliżu. If civilians nearby