sreVcba_settings.sqf,J-`,description.extainit.sqf#D?]#initPlayerLocal.sqfW nK`W initServer.sqfK`mission.sqm6zp`plank.hEjK`zone_spawned_unit.sqfj[admiral\admiral.h&y\`&hull3\hull3.hCmK`Chull3\LICENSE8_0X8hull3\VZ58_CZ.h#`X`#hull3\briefing\blufor.sqfiX`ihull3\briefing\civilian.sqf_0Xhull3\briefing\indfor.sqf_0Xhull3\briefing\opfor.sqf_0Xforce ace_mk6mortar_useAmmoHandling = false;#include "admiral\admiral.h" #include "hull3\hull3.h" #include "plank.h" allowProfileGlasses = 0; enableDebugConsole = 1; disableChannels[]={{2,true,true},{4,true,true},{6,true,true}}; onLoadName = "Czechpoint"; onLoadMission = "Made with Hull3"; author = "Dextrus"; loadScreen = "x\ark\addons\hull3\resources\hull3_logo.paa"; class Header { gameType = Coop; minPlayers = 1; maxPlayers = 78; }; respawn = 0; respawndelay = 3; respawnTemplates[] = {"Hull3_RespawnHandler"}; class Params { class Hull3_Date { title = "Moon Phase"; values[] = {0,1}; texts[] = {"New Moon", "Full Moon"}; default = 1; code = "hull3_mission_date = %1"; }; class Hull3_TimeOfDay { title = "Time of Day"; values[] = {0,1,2,3,4,5,6,7}; texts[] = {"Dawn", "Early Morning", "Morning", "Noon", "Afternoon", "Evening", "Dusk", "Night"}; default = 0; code = "hull3_mission_timeOfDay = %1"; }; class Hull3_Fog { title = "Fog"; values[] = {0,1,2}; texts[] = {"None", "Light", "Heavy"}; default = 0; code = "hull3_mission_fog = %1"; }; class Hull3_Weather { title = "Weather"; values[] = {0,1,2,3,4,5,6,7,8,9}; texts[] = {"Random", "Clear (Calm)", "Clear (Light Winds)", "Clear (Strong Winds)", "Overcast (Calm)", "Overcast (Light Winds)", "Overcast (Strong Winds)", "Rain (Light Winds)", "Rain (Strong Winds)", "Storm"}; default = 5; code = "hull3_mission_weather = %1"; }; class Hull3_SafetyTimer { title = "Safety Timer"; values[] = {9999,0}; texts[] = {"On", "Off"}; default = 9999; code = "hull3_mission_safetyTimerEnd = %1"; }; }; class CfgDebriefingSections { class acex_killTracker { title = "Acex Killed Events"; variable = "acex_killTracker_outputText"; }; };ark_fnc_enableSim = { params ["_veh","_enabled"]; _veh enableSimulationGlobal _enabled; {_x enableSimulationGlobal _enabled} forEach crew _veh; }; // Disable simulation for vehicles + crews at game start {[_x,false] call ark_fnc_enableSim;} forEach [heli1,heli2,heli3];ark_fnc_ho_assignFortifications = { private _unit = _this select 0; private _gearClass = _unit getVariable "hull3_gear_class"; if (isNil {_unit getVariable "ho_areFortsAssigned"}) then { call { if (_gearClass in ["CO", "XO", "SL"]) exitWith {[_unit, [1, 0, 4, 0, 4, 0, 0, 1, 0]] call plank_api_fnc_forceAddFortifications}; if (_gearClass in ["FTL", "MMGAG", "HATAG"]) exitWith {[_unit, [0, 1, 2, 0, 2, 0, 0, 0, 0]] call plank_api_fnc_forceAddFortifications}; if (_gearClass in ["Medic", "AR", "MMG" ]) exitWith {[_unit, [0, 0, 2, 1, 2, 0, 0, 0, 0]] call plank_api_fnc_forceAddFortifications}; if (_gearClass in ["AAR", "Rifleman", "HATAC"]) exitWith {[_unit, [0, 0, 2, 0, 2, 0, 0, 0, 0]] call plank_api_fnc_forceAddFortifications}; if (_gearClass in ["RAT", "HATG"]) exitWith {[_unit, [0, 0, 2, 0, 2, 0, 0, 0, 0]] call plank_api_fnc_forceAddFortifications}; }; _unit setVariable ["ho_areFortsAssigned", true, true]; }; }; ark_fnc_ho_fillSmallAmmobox = { //7 private _box = _this select 1; private ["_magazines", "_weapons"]; _magazines = [ ["CUP_PG7VM_M", 25], ["CUP_30Rnd_Sa58_M", 25], ["CUP_30Rnd_Sa58_M_TracerG", 10], ["CUP_50Rnd_UK59_762x54R_Tracer", 10], ["HandGrenade", 5], ["ACE_Chemlight_HiRed", 10], ["SmokeShell", 10], ["ACE_HandFlare_White", 20] ]; _weapons = [ ["CUP_launch_FIM92Stinger", 5], ["CUP_launch_M72A6", 20] ]; _items = [ ["ACE_fieldDressing", 25] ]; clearMagazineCargoGlobal _box; clearWeaponCargoGlobal _box; clearItemCargoGlobal _box; {_box addMagazineCargoGlobal _x;} foreach _magazines; {_box addWeaponCargoGlobal _x;} foreach _weapons; {_box addItemCargoGlobal _x;} foreach _items; }; ark_fnc_ho_fillBigAmmobox = { //6 private _box = _this select 1; private ["_magazines", "_weapons", "_items"]; _magazines = [ ["CUP_30Rnd_Sa58_M", 100], ["CUP_30Rnd_Sa58_M_TracerG", 50], ["CUP_50Rnd_UK59_762x54R_Tracer", 50], ["CUP_PG7VL_M", 25], ["CUP_PG7VM_M", 10], ["CUP_AT13_M", 25], ["ACE_Chemlight_HiRed", 10], ["UGL_FlareWhite_F", 15], ["ACE_HandFlare_White", 10], ["1Rnd_HE_Grenade_shell", 15], ["HandGrenade", 25], ["SmokeShell", 25] ]; _weapons = [ ["CUP_launch_FIM92Stinger", 10], ["CUP_launch_M72A6", 20] ]; _items = [ ["ACE_fieldDressing", 50] ]; clearMagazineCargoGlobal _box; clearWeaponCargoGlobal _box; clearItemCargoGlobal _box; {_box addMagazineCargoGlobal _x;} foreach _magazines; {_box addWeaponCargoGlobal _x;} foreach _weapons; {_box addItemCargoGlobal _x;} foreach _items; }; if (!didJIP) then { [player] call ark_fnc_ho_assignFortifications; ["mission.safetytimer.ended", {[player] call plank_api_fnc_forceRemoveAllFortifications;}] call hull3_event_fnc_addEventHandler; };ark_script_fnc_fireArty = { params ["_vehicle","_target"]; private _gunner = effectiveCommander _vehicle; {_gunner disableAI _x} forEach ["AUTOTARGET","FSM","AUTOCOMBAT"]; private _roundCount = 10; // How many shots fired in one cycle private _delay = 600; // How long between cycles [ { params ["_args", "_id"]; _args params ["_gunner","_target","_roundCount"]; if (!alive _gunner) exitWith {_id call CBA_fnc_removePerFrameHandler}; [_gunner, _target, _roundCount] call ark_script_fnc_doFireArty; }, _delay, [_gunner,_target,_roundCount] ] call CBA_fnc_addPerFrameHandler; }; ark_script_fnc_doFireArty = { params ["_gunner","_target","_roundCount"]; private _veh = vehicle _gunner; private _mag = currentMagazine _veh; private _targetPos = getMarkerPos _target; if ((_targetPos inRangeOfArtillery [[_gunner], _mag]) isEqualTo false) exitWith { systemChat format ["ARK Arty: Error target %1 is out of range of %2",_target,_gunner]; }; _gunner doArtilleryFire [_targetPos, _mag, _roundCount]; _veh setVehicleAmmoDef 1; _veh setVehicleAmmo 1; };raP version6EditorDataMsourceNameark_co77_czechpointaddonsA3_Characters_FCUP_WheeledVehicles_T810A3_Modules_FCUP_WheeledVehicles_DingoCUP_TrackedVehicles_BMPCUP_TrackedVehicles_T72ace_nouniformrestrictionsace_parachuteCUP_AirVehicles_Mi24CUP_Editor_Plants_ConfigCUP_Weapons_AmmoBoxesCUP_Ind_Garage01admiralCUP_Creatures_Military_RussiaCUP_Creatures_StaticWeaponsA3_Ui_Fark_rotorCUP_AirVehicles_Mi8A3_Modules_F_Curator_CuratorAddonsMetaDatarandomSeedScenarioDataW CustomAttributes Mission moveGridStep?angleGridStep >scaleGridStep?autoGroupingDist AtogglesItemIDProviderMarkerIDProviderLayerIndexProvider'Camera:nextIDnextID'nextID:posgBFyB&Fdir#<|6up?#<X1:asideZ1:ListW itemsItem0Item1Item2eItem3Item41Item5Item6Item7eItem8Item9 Item10WItem11Item12Item13 Item14c Item15 Item16& Item17 Item18 W classNameA3_Characters_FnameArma 3 Alpha - Characters and ClothingauthorBohemia Interactiveurlhttps://www.arma3.comclassNameCUP_WheeledVehicles_T810nameCUP_WheeledVehicles_T810eclassNameA3_Modules_FnameArma 3 Alpha - Scripted ModulesauthorBohemia Interactiveurlhttps://www.arma3.comclassNameCUP_WheeledVehicles_DingonameCUP_WheeledVehicles_Dingo1classNameCUP_TrackedVehicles_BMPnameCUP_TrackedVehicles_BMPauthorCommunity Cupgrade ProjectclassNameCUP_TrackedVehicles_T72nameCUP_TrackedVehicles_T72classNameace_nouniformrestrictionsnameACE3 - No Uniform RestrictionsauthorACE-Teamurlhttp://ace3mod.com/eclassNameace_parachutenameACE3 - ParachuteauthorACE-Teamurlhttp://ace3mod.com/classNameCUP_AirVehicles_Mi24nameCUP_AirVehicles_Mi24 classNameCUP_Editor_Plants_ConfignameCUP_Editor_Plants_ConfigWclassNameCUP_Weapons_AmmoBoxesnameCUP_Weapons_AmmoBoxesclassNameCUP_Ind_Garage01nameCUP_Ind_Garage01classNameAdmiralnameadmiralauthorKami classNameCUP_Creatures_Military_RussianameCUP_Creatures_Military_Russiac classNameCUP_Creatures_StaticWeaponsnameCUP_Creatures_StaticWeapons classNameA3_Ui_FnameArma 3 - User InterfaceauthorBohemia Interactiveurlhttps://www.arma3.com& classNameark_rotornameARK Inhouse - RotorauthorARKurlhttp://www.ark-group.org classNameCUP_AirVehicles_Mi8nameCUP_AirVehicles_Mi8 classNameA3_Modules_F_CuratornameArma 3 Zeus Update - Scripted ModulesauthorBohemia Interactiveurlhttps://www.arma3.comW authorDextrusoverviewTextCzech troops dig in to delay a Russian offensive.Header gameTypeCoopminPlayersmaxPlayersN Category0 Category1 nameMultiplayerAttribute0b Attribute1? nAttributes propertyRespawnTemplatesexpressiontrueValue ? data ? type value ? typeARRAY itemsItem0 ? data ? type* valueNone? typeSTRING? propertyRespawnButtonexpressiontrueValue{ data type value? typeSCALAR nameScenarioAttribute0 nAttributespropertycba_settings_hasSettingsFileexpressionfalseValue@dataPtypelvaluetypeBOOLIntelEntitiesCConnectionsvbriefingNameark_co78_czechpointoverviewTextCzech troops defend against a surprise Russian advancetimeOfChangesFstartWeather>startWind=startWaves=forecastWeather>forecastWind=forecastWaves=forecastLightnings=wavesForcedwindForcedyearmonthday hour minutestartFogDecayT<forecastFogDecayTItem03Item1 Item2Item3#Item4N*Item50Item6;4Item7:Item8SBItem9HItem10JLItem11RItem12YItem13_Item14bItem15hItem16EiItem17+lItem18oItem19tItem206Item21vItem22ɾItem23Item24]Item25Item26Item27`Item28Item29Item30JItem31EItem32\Item33XItem34Item35Item36Item37Item38"Item39e Item40#Item419Item42Item43ȾItem44=Item45'Item46=Item47Item48Item49Item50Item513Item52Item53HItem54Item55Item56Item57)Item58Item59Item60Item61vdataTypeGroupsideWestEntitiesAttributesidatlOffset7 itemsItem0Item1gItem2Item3cdataTypeObjectPositionInfoIsideWestflagsAttributesidtypeB_officer_FatlOffset7gpositionmyBFp<@y%Fangles@b?չg<skill?rankCAPTAINinit [this, ["faction", "CUP_CZ_DE"], ["gear", "CO"], ["marker", "CO", "ColorYellow"]] call hull3_unit_fnc_init;descriptionCzech Army - Commanding Officer@COisPlayerisPlayablegdataTypeObjectPositionInfosideWestflagsAttributesidtypeB_medic_FatlOffset7position-xBFHD9@Fangles@b?չg<skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "Medic"], ["marker", "COM", "ColorYellow"]] call hull3_unit_fnc_init;descriptionCzech Army - Platoon Medic@COisPlayabledataTypeObjectPositionInfopsideWestflagsAttributesidtypeB_Soldier_FatlOffset7cpositionkBF9@'Fangles@b?չg<skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;descriptionCzech Army - Platoon Rifleman@COisPlayablecdataTypeObjectPositionInfosideWestflagsAttributesidtypeB_officer_FatlOffset7positionjBF(7@Fanglesb?skill?rankLIEUTENANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "XO"], ["marker", "XO", "ColorYellow"]] call hull3_unit_fnc_init;descriptionCzech Army - Executive Officer@COisPlayableformationDIAMOND dataTypeGroupsideWestEntitiesVAttributesiditemsItem0~Item1dataTypeObjectPositionInfosideWestflagsAttributes'idtypeB_Soldier_SL_FpositionԂBFe=@ Fangles@n@չg<'skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "ASL", "ColorRed"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha Squad Leader@Alpha SLisPlayabledataTypeObjectPositionInfoosideWestflagsAttributesidtypeB_medic_FpositionیBFm\?@(Fanglesչg<n@@skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "Medic"], ["marker", "AM", "ColorRed"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha Squad Medic@Alpha SLisPlayableformationDIAMONDdataTypeGroupsideWestEntitiesAttributes#id #itemsItem0&Item1Item2!Item3"#dataTypeObjectPositionInfosideWestflagsAttributesid typeB_Soldier_TL_FpositionЍBF|>@Fangles@n@skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "A1", "ColorRed"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 1 Fireteam Leader@Alpha 1isPlayabledataTypeObjectPositionInfo sideWestflagsAttributesX id typeB_soldier_AR_F!positionחBFd<@(Fanglesչg<n@@X skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 1 Automatic Rifleman@Alpha 1isPlayable!dataTypeObjectPositionInfo!sideWestflagsAttributes!id typeB_Soldier_A_F"positionaBF<<@Fangles@n@!skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 1 Assistant Automatic Rifleman@Alpha 1isPlayable"dataTypeObjectPositionInfo"sideWestflagsAttributes-#id typeB_soldier_LAT_F#positionBF:@Fanglesn@@-#skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 1 Rifleman (AT)@Alpha 1isPlayable#formationDIAMOND#dataTypeGroupsideWestEntities@$Attributes4*idN*itemsItem0~$Item1&Item2t'Item3(4*dataTypeObjectPositionInfo$sideWestflagsAttributes'%idtypeB_Soldier_TL_F&positionBF=@Fanglesn@@'%skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "A2", "ColorRed"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 2 Fireteam Leader@Alpha 2isPlayable&dataTypeObjectPositionInfox&sideWestflagsAttributes&idtypeB_soldier_AR_Ft'positionBF[;@(Fanglesչg<n@@&skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 2 Automatic Rifleman@Alpha 2isPlayablet'dataTypeObjectPositionInfo'sideWestflagsAttributes(idtypeB_Soldier_A_F(position%BF\;@Fanglesn@@(skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 2 Assistant Automatic Rifleman@Alpha 2isPlayable(dataTypeObjectPositionInfoM)sideWestflagsAttributes)idtypeB_soldier_LAT_F4*position_BFJ9@Fanglesn@@)skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 2 Rifleman (AT)@Alpha 2isPlayable4*formationDIAMONDN*dataTypeGroupsideWestEntities*Attributes0id0itemsItem0*Item1_,Item2-Item33/0dataTypeObjectPositionInfoG+sideWestflagsAttributes+idtypeB_Soldier_TL_F_,position BFKO<@Fanglesn@@+skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "A3", "ColorRed"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 3 Fireteam Leader@Alpha 3isPlayable_,dataTypeObjectPositionInfo,sideWestflagsAttributes-idtypeB_soldier_AR_F-positionBF9@(Fanglesչg<n@@-skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 3 Automatic Rifleman@Alpha 3isPlayable-dataTypeObjectPositionInfo<.sideWestflagsAttributest.idtypeB_Soldier_A_F3/positionBFW%:@Fanglesn@@t.skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 3 Assistant Automatic Rifleman@Alpha 3isPlayable3/dataTypeObjectPositionInfo/sideWestflagsAttributes/idtypeB_soldier_LAT_F0positionӮBF7@Fanglesn@@/skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Alpha 3 Rifleman (AT)@Alpha 3isPlayable0formationDIAMOND0dataTypeGroupsideWestEntities0Attributes!4id;4itemsItem01Item12!4dataTypeObjectPositionInfo1sideWestflagsAttributes1idtypeB_Soldier_SL_F2positionadBF7@Fangles?1skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "BSL", "ColorBlue"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo Squad Leader @Bravo SLisPlayable2dataTypeObjectPositionInfo 3sideWestflagsAttributesC3idtypeB_medic_F!4positionqZBF7@Fangles?C3skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "Medic"], ["marker", "BM", "ColorBlue"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo Squad Medic@Bravo SLisPlayable!4formationDIAMOND;4dataTypeGroupsideWestEntities4Attributesz:id:itemsItem04Item1M6Item27Item3!9z:dataTypeObjectPositionInfo45sideWestflagsAttributesl5idtypeB_Soldier_TL_FM6position^BF7@Fangles?l5skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "B1", "ColorBlue"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 1 Fireteam Leader@Bravo 1isPlayableM6dataTypeObjectPositionInfo6sideWestflagsAttributes6idtypeB_soldier_AR_F7positionTBF7@Fangles?6skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 1 Automatic Rifleman@Bravo 1isPlayable7dataTypeObjectPositionInfo*8sideWestflagsAttributesb8idtypeB_Soldier_A_F!9position3UBF7@)Fangles?b8skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 1 Assistant Automatic Rifleman@Bravo 1isPlayable!9dataTypeObjectPositionInfo9sideWestflagsAttributes9idtypeB_soldier_LAT_Fz:positionKBF7@ Fangles?9skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 1 Rifleman (AT)@Bravo 1isPlayablez:formationDIAMOND:dataTypeGroupsideWestEntities:Attributes9Bid$SBitemsItem0;Item1<Item2>Item3z?9BdataTypeObjectPositionInfo;sideWestflagsAttributes;id typeB_Soldier_TL_F<positionYBF7@Fangles?;skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "B2", "ColorBlue"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 2 Fireteam Leader@Bravo 2isPlayable<dataTypeObjectPositionInfo=sideWestflagsAttributesO=id!typeB_soldier_AR_F>position-OBF7@Fangles?O=skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 2 Automatic Rifleman@Bravo 2isPlayable>dataTypeObjectPositionInfo>sideWestflagsAttributes>id"typeB_Soldier_A_Fz?positionwOBF7@)Fangles?>skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 2 Assistant Automatic Rifleman@Bravo 2isPlayablez?dataTypeObjectPositionInfo@sideWestflagsAttributes:@idtypeB_soldier_LAT_FCustomAttributes@9BpositionREBF7@ Fangles?:@skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 2 Rifleman (AT)@Bravo 2isPlayable@Attribute0!AAttribute1AnAttributes9Bpropertyspeakerexpression_this setspeaker _value;ValuekAAdata{AAtypeAvalueMale06ENGAtypeSTRINGApropertypitchexpression_this setpitch _value;ValueA9BdataB9Btype$BvalueQx?9BtypeSCALAR9BformationDIAMONDSBdataTypeGroupsideWestEntitiesBAttributesHid)HitemsItem0BItem1eDItem2EItem39GHdataTypeObjectPositionInfoLCsideWestflagsAttributesCid%typeB_Soldier_TL_FeDpositionSBF7@Fangles?Cskill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "B3", "ColorBlue"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 3 Fireteam Leader@Bravo 3isPlayableeDdataTypeObjectPositionInfoDsideWestflagsAttributesEid&typeB_soldier_AR_FEpositionIBF7@Fangles?Eskill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 3 Automatic Rifleman@Bravo 3isPlayableEdataTypeObjectPositionInfoBFsideWestflagsAttributeszFid'typeB_Soldier_A_F9GpositionJBF7@*Fangles?zFskill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 3 Assistant Automatic Rifleman@Bravo 3isPlayable9GdataTypeObjectPositionInfoGsideWestflagsAttributesGid(typeB_soldier_LAT_FHposition?BF7@+ Fangles?Gskill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Bravo 3 Rifleman (AT)@Bravo 3isPlayableHformationDIAMONDHdataTypeGroupsideWestEntitiesHAttributes0Lid,JLitemsItem0IItem1J0LdataTypeObjectPositionInfoIsideWestflagsAttributesIid*typeB_Soldier_SL_FJpositionvBF<@0Fangles-H@չgFanglesչg<-H@Sskill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "FTL"], ["marker", "C2", "ColorGreen"]] call hull3_unit_fnc_init;descriptionCzech Army - Charlie 2 Fireteam Leader@Charlie 2isPlayableTdataTypeObjectPositionInfo8@2MFanglesչg<-H@[skill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "AR"]] call hull3_unit_fnc_init;descriptionCzech Army - Charlie 3 Automatic Rifleman@Charlie 3isPlayable\dataTypeObjectPositionInfo]sideWestflagsAttributesM]id9typeB_Soldier_A_F^positionBF.8@yMFanglesչg<-H@M]skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "AAR"]] call hull3_unit_fnc_init;descriptionCzech Army - Charlie 3 Assistant Automatic Rifleman@Charlie 3isPlayable^dataTypeObjectPositionInfo^sideWestflagsAttributes^id:typeB_soldier_LAT_Fl_positionvBF7@UWFangles-H@^skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "RAT"]] call hull3_unit_fnc_init;descriptionCzech Army - Charlie 3 Rifleman (AT)@Charlie 3isPlayablel_formationDIAMOND_dataTypeGroupsideWestEntities_Attributesbid>bitemsItem0_Item1cabdataTypeObjectPositionInfoi`sideWestflagsAttributes`id<typeB_Soldier_TL_Fcaposition3vBF7@ F`skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "MMGAG"], ["marker", "MMG1", "ColorOrange"]] call hull3_unit_fnc_init;descriptionCzech Army - MMG 1 Leader@MMG 1isPlayablecadataTypeObjectPositionInfoasideWestflagsAttributesaid=typeB_soldier_AR_Fbposition3BF7@Faskill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "MMGG"]] call hull3_unit_fnc_init;descriptionCzech Army - MMG 1 Gunner@MMG 1isPlayablebformationDIAMONDbdataTypeGroupsideWestEntitiesbAttributeshidBhitemsItem01cItem1dItem2ehdataTypeObjectPositionInfocsideWestflagsAttributescid?typeB_Soldier_TL_FdpositionouBF7@Fcskill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "HATAG"], ["marker", "HAT1", "ColorOrange"]] call hull3_unit_fnc_init;descriptionCzech Army - HAT 1 Leader@HAT 1isPlayableddataTypeObjectPositionInfo esideWestflagsAttributes-eid@typeB_soldier_AT_FepositionoBF7@+~F-eskill?rankCORPORALinit [this, ["faction", "CUP_CZ_DE"], ["gear", "HATG"]] call hull3_unit_fnc_init;descriptionCzech Army - HAT 1 Gunner@HAT 1isPlayableedataTypeObjectPositionInfoifsideWestflagsAttributesfidAtypeB_Soldier_A_FCustomAttributestdataTypeLogicPositionInfozqareaSize@@flagsidtypeModuleHideTerrainObjects_FCustomAttributesq spositionRCF!?EFanglesq>qAttribute0qAttribute1rnAttributes sproperty#filterexpression_this setVariable ["#filter",_value]Value@rrdataPrrtypelrvaluepArtypeSCALARrproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Valuer sdatar stype svalue stypeBOOL sdataTypeLogicPositionInfosareaSize@ @flagsidtypeModuleHideTerrainObjects_FatlOffsetTnCustomAttributessfupositionOBFw+?[Fanglesk@r@sAttribute00tAttribute1tnAttributesfuproperty#filterexpression_this setVariable ["#filter",_value]ValuettdatatttypetvaluepAttypeSCALARtproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value'ufudata7ufutypeSuvaluefutypeBOOLfudataTypeLogicPositionInfouareaSizeB8BflagsidtypeModuleHideTerrainObjects_FCustomAttributes.vwposition XE55@ًFanglesf=%@.vAttribute0fvAttribute1vnAttributeswproperty#filterexpression_this setVariable ["#filter",_value]ValuevvdatavvtypevvaluepAvtypeSCALARvproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value]wwdatamwwtypewvaluewtypeBOOLwdataTypeLogicPositionInfo,xareaSizeNA4$BflagsidtypeModuleHideTerrainObjects_FCustomAttributesdxyposition^E55@Fangles&T=dxAttribute0xAttribute13ynAttributesyproperty#filterexpression_this setVariable ["#filter",_value]Valuex3ydatay3ytypeyvaluepA3ytypeSCALAR3yproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueyydatayytypeyvalueytypeBOOLydataTypeLogicPositionInforzareaSize"@#@flagsid=typeModuleHideTerrainObjects_FatlOffsetpc@CustomAttributesz|positionTjCF;@z}~Fangles }@bf;zAttribute0zAttribute1y{nAttributes|property#filterexpression_this setVariable ["#filter",_value]Value8{y{dataH{y{typed{valuepAy{typeSCALARy{property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value{|data{|type|value|typeBOOL|dataTypeLogicPositionInfo|areaSize@@flagsidstypeModuleHideTerrainObjects_FCustomAttributes|N~positionEF4#@uLFanglesq>|Attribute0}Attribute1}nAttributesN~property#filterexpression_this setVariable ["#filter",_value]Valuen}}data~}}type}valuepA}typeSCALAR}property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value~N~data~N~type;~valueN~typeBOOLN~dataTypeLogicPositionInfo~areaSize@@flagsidttypeModuleHideTerrainObjects_FCustomAttributesposition"EF@'Fanglesg=-<=Attribute0NAttribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValuedatatypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueEdataUtypeqvaluetypeBOOLdataTypeLogicPositionInfoareaSize@@flagsidutypeModuleHideTerrainObjects_FCustomAttributesLpositionVDFQ9@Fangles b@h=LAttribute0Attribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValueځdatatypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value{datatypevaluetypeBOOLdataTypeLogicPositionInfoJareaSize@@flagsidvtypeModuleHideTerrainObjects_FCustomAttributespositionDF$H@GFanglesT=g=Attribute0Attribute1QnAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValueQdata Qtype<valuepAQtypeSCALARQproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Valuedatatype݄valuetypeBOOLdataTypeLogicPositionInfoareaSize !@%@flagsidxtypeModuleHideTerrainObjects_FCustomAttributespositionBFІ@@b+FAttribute0؅Attribute1onAttributesproperty#filterexpression_this setVariable ["#filter",_value]Value.odata>otypeZvaluepAotypeSCALARoproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Valueφdata߆typevaluetypeBOOLdataTypeLogicPositionInfoareaSize !@%@flagsidytypeModuleHideTerrainObjects_FCustomAttributes,positionvCFІ@@FAttribute0Attribute1nAttributes,property#filterexpression_this setVariable ["#filter",_value]ValueLdata\typexvaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value,data,typevalue,typeBOOL,dataTypeLogicPositionInfoareaSize !@%@flagsidztypeModuleHideTerrainObjects_FCustomAttributes܉JpositionBFІ@@}F܉Attribute0Attribute1nAttributesJproperty#filterexpression_this setVariable ["#filter",_value]ValuejdataztypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value JdataJtype7valueJtypeBOOLJdataTypeLogicPositionInfoڋareaSize !@%@flagsid{typeModuleHideTerrainObjects_FCustomAttributesposition3BF9@"Fangles@Attribute0JAttribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValuedatatypěvaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueAdataQtypemvaluetypeBOOLdataTypeLogicPositionInfoareaSize !@%@flagsid|typeModuleHideTerrainObjects_FCustomAttributes0position̛AF(y7@F0Attribute0hAttribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValuedataΎtypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value_dataotypevaluetypeBOOLdataTypeLogicPositionInfo.areaSize !@%@flagsidtypeModuleHideTerrainObjects_FCustomAttributesfԑpositionBF<7@ݠFangles@fAttribute0Attribute15nAttributesԑproperty#filterexpression_this setVariable ["#filter",_value]Value5data5type valuepA5typeSCALAR5property#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueԑdataԑtypevalueԑtypeBOOLԑdataTypeLogicPositionInfodareaSize !@%@flagsidtypeModuleHideTerrainObjects_FCustomAttributespositionxCFІ@@$FAttribute0Attribute1SnAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValueSdata"Stype>valuepAStypeSCALARSproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValuedataÓtypeߓvaluetypeBOOLdataTypeLogicPositionInfoareaSize !@%@flagsidtypeModuleHideTerrainObjects_FCustomAttributespositionnAF(y7@{}FAttribute0ڔAttribute1qnAttributesproperty#filterexpression_this setVariable ["#filter",_value]Value0qdata@qtype\valuepAqtypeSCALARqproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueѕdatatypevaluetypeBOOLdataTypeLogicPositionInfoareaSize !@%@flagsidtypeModuleHideTerrainObjects_FCustomAttributes.position@F(y7@tyFAttribute0Attribute1nAttributes.property#filterexpression_this setVariable ["#filter",_value]ValueNdata^typezvaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value.data.typevalue.typeBOOL.dataTypeLogicPositionInfoareaSize !@%@flagsidtypeModuleHideTerrainObjects_FCustomAttributesޘLpositionjW@F(y7@YFޘAttribute0Attribute1nAttributesLproperty#filterexpression_this setVariable ["#filter",_value]Valueldata|typevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value LdataLtype9valueLtypeBOOLLdataTypeLogicPositionInfoܚareaSize?p?flagsidtypeModuleHideTerrainObjects_FCustomAttributesjpositionDFІ@@J|FAttribute04Attribute1˛nAttributesjproperty#filterexpression_this setVariable ["#filter",_value]Value˛data˛typevaluepA˛typeSCALAR˛property#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value+jdata;jtypeWvaluejtypeBOOLjdataTypeLogicPositionInfoareaSize?p?flagsidtypeModuleHideTerrainObjects_FCustomAttributesposition8EFІ@@<FAttribute0RAttribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValuedatatypeԝvaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueIdataYtypeuvaluetypeBOOLdataTypeLogicPositionInfoareaSize?p?flagsidtypeModuleHideTerrainObjects_FCustomAttributes8positionEF(y7@F8Attribute0pAttribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]ValueƟdata֟typevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValuegdatawtypevaluetypeBOOLdataTypeLogicPositionInfo6areaSize8@(5@flagsidtypeModuleHideTerrainObjects_FCustomAttributesVĢpositioncAAF(y7@FVAttribute0Attribute1%nAttributesĢproperty#filterexpression_this setVariable ["#filter",_value]Value%data%typevaluepA%typeSCALAR%property#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueĢdataĢtypevalueĢtypeBOOLĢdataTypeLogicPositionInfoTareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributespositionCFІ@@&,~Fangles@Attribute0ģAttribute1[nAttributesproperty#filterexpression_this setVariable ["#filter",_value]Value[data*[typeFvaluepA[typeSCALAR[property#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValuedataˤtypevaluetypeBOOLdataTypeLogicPositionInfoareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributes¥0position/DFІ@@H~Fangles@¥Attribute0Attribute1nAttributes0property#filterexpression_this setVariable ["#filter",_value]ValuePdata`type|valuepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value0data0typevalue0typeBOOL0dataTypeLogicPositionInfoareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributesfpositionlAFІ@@*}Fangles@Attribute00Attribute1ǨnAttributesfproperty#filterexpression_this setVariable ["#filter",_value]ValueǨdataǨtypevaluepAǨtypeSCALARǨproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value'fdata7ftypeSvalueftypeBOOLfdataTypeLogicPositionInfoareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributes.positionAFІ@@vi}Fangles@.Attribute0fAttribute1nAttributesproperty#filterexpression_this setVariable ["#filter",_value]Valuedata̪typevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value]datamtypevaluetypeBOOLdataTypeLogicPositionInfo,areaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributesdҭposition BFІ@@|Fangles@dAttribute0Attribute13nAttributesҭproperty#filterexpression_this setVariable ["#filter",_value]Value3data3typevaluepA3typeSCALAR3property#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueҭdataҭtypevalueҭtypeBOOLҭdataTypeLogicPositionInfobareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributesposition/+CFІ@@A~Fangles@Attribute0ҮAttribute1inAttributesproperty#filterexpression_this setVariable ["#filter",_value]Value(idata8itypeTvaluepAitypeSCALARiproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]ValueɯdataٯtypevaluetypeBOOLdataTypeLogicPositionInfoareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributesа>position>AF 9@ЀFanglesչg<@аAttribute0Attribute1nAttributes>property#filterexpression_this setVariable ["#filter",_value]Value^datantypevaluepAtypeSCALARproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value>data>type+value>typeBOOL>dataTypeLogicPositionInfoβareaSizeR@Jv)@flagsidtypeModuleHideTerrainObjects_FCustomAttributestpositionGBFMI@6 Fangles@@Attribute0>Attribute1ճnAttributestproperty#filterexpression_this setVariable ["#filter",_value]ValueճdataճtypevaluepAճtypeSCALARճproperty#hideLocallyexpression_this setVariable ["#hideLocally",_value]Value5tdataEttypeavaluettypeBOOLtdataTypeTriggerposition2GF(y7@FAttributesմidtypeEmptyDetector6namesafety_offconditioncall{hull3_mission_safetyTimerAbort}sizeAsizeB6 dataTypeObjectPositionInfo׵sideEmptyflagsAttributesidtypeCUP_B_T810_Armed_CZ_DESatlOffset%CustomAttributesqvpositionE@2΋FanglesSg?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}qAttribute0nAttributesvpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuevdatavtypeavalue[[[["CUP_arifle_Sa58P","CUP_launch_RPG7V","FirstAidKit","Medikit"],[4,2,20,2]],[["CUP_30Rnd_Sa58_M","CUP_200Rnd_TE4_Red_Tracer_556x45_M249","CUP_1Rnd_HEDP_M203","CUP_PG7V_M","CUP_HandGrenade_M67","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,4,10,2,4,4,4,4]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[8]]],false]vtypeSTRINGvdataTypeGroupsideWestEntitiesAttributesidɾitemsItem0Item1dataTypeObjectPositionInfoisideWestflagsAttributesidtypeB_crew_FCustomAttributespositionEOM5@ՋFanglesp ?skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "TRK1", "ColorRed"]] call hull3_unit_fnc_init;}descriptionCzech Army - Truck 1 Commander@[JIP] Truck 1 [T810 MG]isPlayableAttribute0ʺAttribute1[nAttributespropertyspeakerexpression_this setspeaker _value;Value[data$[typeFvalueMale01ENG[typeSTRING[propertypitchexpression_this setpitch _value;ValuedatatypeͻvalueHz?typeSCALARdataTypeObjectPositionInfocsideWestflagsAttributesidtypeB_crew_FCustomAttributes_positionEOM5@FϋFanglesz?skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;}descriptionCzech Army - Truck 1 Driver@[JIP] Truck 1 [T810 MG]isPlayable_Attribute0Attribute1(nAttributespropertyspeakerexpression_this setspeaker _value;Value(data(typevalueMale11ENG(typeSTRING(propertypitchexpression_this setpitch _value;Valuendata~typevalue ׃?typeSCALARformationDIAMONDɾdataTypeGroupsideWestEntitiesAttributesiditemsItem0;Item16dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributes6position5EOM5@ʋFanglesp ?skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "TRK2", "ColorBlue"]] call hull3_unit_fnc_init;}descriptionCzech Army - Truck 2 Commander@[JIP] Truck 2 [T810 MG]isPlayableAttribute0Attribute1nAttributes6propertyspeakerexpression_this setspeaker _value;ValuehdataxtypevalueMale08ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value6data6type!value ׃?6typeSCALAR6dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributespositionEOM5@KċFanglesp ?skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;}descriptionCzech Army - Truck 2 Driver@[JIP] Truck 2 [T810 MG]isPlayableAttribute0Attribute1|nAttributespropertyspeakerexpression_this setspeaker _value;Value5|dataE|typegvalueMale04ENG|typeSTRING|propertypitchexpression_this setpitch _value;Valuedatatypevalueff?typeSCALARformationDIAMOND dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_B_T810_Armed_CZ_DESatlOffset%CustomAttributesX]positionE@]Fangles?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}XAttribute0nAttributes]propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value]data]typeHvalue[[[["CUP_arifle_Sa58P","CUP_launch_RPG7V","FirstAidKit","Medikit"],[4,2,20,2]],[["CUP_30Rnd_Sa58_M","CUP_200Rnd_TE4_Red_Tracer_556x45_M249","CUP_1Rnd_HEDP_M203","CUP_PG7V_M","CUP_HandGrenade_M67","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,4,10,2,4,4,4,4]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[8]]],false]]typeSTRING]dataTypeGroupsideWestEntitiesAttributesiditemsItem0Item1dataTypeObjectPositionInfoPsideWestflagsAttributesidtypeB_crew_FCustomAttributesypositionE1<@FanglesF>=skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "MRAP1", "ColorRed"]] call hull3_unit_fnc_init;}descriptionCzech Army - MRAP 1 Commander@[JIP] MRAP 1 [Dingo MG]isPlayableyAttribute0Attribute1BnAttributespropertyspeakerexpression_this setspeaker _value;ValueBdata Btype-valueMale01ENGBtypeSTRINGBpropertypitchexpression_this setpitch _value;ValuedatatypevalueHz?typeSCALARdataTypeObjectPositionInfoJsideWestflagsAttributesidtypeB_crew_FCustomAttributesEposition(EJ@궋FanglesF>=skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;}descriptionCzech Army - MRAP 1 Driver@[JIP] MRAP 1 [Dingo MG]isPlayableEAttribute0}Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale11ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueTdatadtypevalue ׃?typeSCALARformationDIAMOND dataTypeObjectPositionInfoKsideEmptyflagsAttributesidtypeCUP_B_Dingo_CZ_DesatlOffsetrCustomAttributespositionFE\@%FanglesS>(F>skill?lockUNLOCKEDinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}Attribute0)nAttributespropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuedatatypevalue[[[["CUP_arifle_Sa58P","CUP_launch_RPG7V","FirstAidKit","Medikit"],[4,2,20,2]],[["CUP_30Rnd_Sa58_M","CUP_200Rnd_TE4_Red_Tracer_556x45_M249","CUP_1Rnd_HEDP_M203","CUP_PG7V_M","CUP_HandGrenade_M67","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,4,10,2,4,4,4,4]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[8]]],false]typeSTRING dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_B_Dingo_GL_CZ_DesatlOffsetCustomAttributes[`position=Eܥ@ʬFangles=F>=skill?lockUNLOCKEDinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}[Attribute0nAttributes`propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value`data`typeKvalue[[[["CUP_arifle_Sa58P","CUP_launch_RPG7V","FirstAidKit","Medikit"],[4,2,20,2]],[["CUP_30Rnd_Sa58_M","CUP_200Rnd_TE4_Red_Tracer_556x45_M249","CUP_1Rnd_HEDP_M203","CUP_PG7V_M","CUP_HandGrenade_M67","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,4,10,2,4,4,4,4]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[8]]],false]`typeSTRING`dataTypeGroupsideWestEntitiesAttributesiditemsItem0Item1dataTypeObjectPositionInfoSsideWestflagsAttributesidtypeB_crew_FCustomAttributes}position)GEoU@wFangles=G=skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "MRAP2", "ColorBlue"]] call hull3_unit_fnc_init;}descriptionCzech Army - MRAP 2 Commander@[JIP] MRAP 2 [Dingo GL]isPlayable}Attribute0Attribute1FnAttributespropertyspeakerexpression_this setspeaker _value;ValueFdataFtype1valueMale08ENGFtypeSTRINGFpropertypitchexpression_this setpitch _value;Valuedatatypevalue ׃?typeSCALARdataTypeObjectPositionInfoNsideWestflagsAttributesidtypeB_crew_FCustomAttributesIpositionWEh@Fangles=F>skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;}descriptionCzech Army - MRAP 2 Driver@[JIP] MRAP 2 [Dingo GL]isPlayableIAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale04ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueXdatahtypevalueff?typeSCALARdataTypeGroupsideWestEntitiesAttributesiditemsItem0Item1 dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributes position yE>o@ Fangles=F>=skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "SL"], ["marker", "MRAP3", "ColorGreen"]] call hull3_unit_fnc_init;}descriptionCzech Army - MRAP 3 Commander@[JIP] MRAP 3 [Dingo MG]isPlayableAttribute0Attribute1nAttributes propertyspeakerexpression_this setspeaker _value;Value?dataOtypeqvalueMale09ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value data typevalueHz? typeSCALAR dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FCustomAttributesposition݈E݇@[Fangles=F>=skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Rifleman"]] call hull3_unit_fnc_init;}descriptionCzech Army - MRAP 3 Driver@[JIP] MRAP 3 [Dingo MG]isPlayableAttribute0Attribute1RnAttributespropertyspeakerexpression_this setspeaker _value;Value RdataRtype=valueMale05ENGRtypeSTRINGRpropertypitchexpression_this setpitch _value;Valuedatatypevalue ׃?typeSCALARformationDIAMOND dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_B_Dingo_CZ_DesatlOffsettvCustomAttributesEJposition#oE3@MFangles=(F>skill?lockUNLOCKEDinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}EAttribute0mnAttributesJpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;ValueJdataJtype5value[[[["CUP_arifle_Sa58P","CUP_launch_RPG7V","FirstAidKit","Medikit"],[4,2,20,2]],[["CUP_30Rnd_Sa58_M","CUP_200Rnd_TE4_Red_Tracer_556x45_M249","CUP_1Rnd_HEDP_M203","CUP_PG7V_M","CUP_HandGrenade_M67","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,4,10,2,4,4,4,4]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[8]]],false]JtypeSTRINGJdataTypeGroupsideWestEntitiesAttributes+idEitemsItem0Item1Item2p+dataTypeObjectPositionInfoHsideWestflagsAttributesidtypeB_crew_FCustomAttributeseposition] EOM5@Fangles@skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "VC"], ["marker", "APC1", "ColorRed"]] call hull3_unit_fnc_init;descriptionCzech Army - APC 1 Commander@[JIP] APC 1 [BVP-2]isPlayableeAttribute0Attribute1.nAttributespropertyspeakerexpression_this setspeaker _value;Value.data.typevalueMale05ENG.typeSTRING.propertypitchexpression_this setpitch _value;Valuetdatatypevalueff?typeSCALARdataTypeObjectPositionInfo6sideWestflagsAttributesnidtypeB_crew_FCustomAttributes ppositionEOM5@Fangles@nskill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionCzech Army - APC 1 Driver@[JIP] APC 1 [BVP-2]isPlayable Attribute0XAttribute1nAttributesppropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale04ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value/pdata?ptype[value?ptypeSCALARpdataTypeObjectPositionInfosideWestflagsAttributes)idtypeB_crew_FCustomAttributes+positiongEOM5@Fangles@)skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "VG"]] call hull3_unit_fnc_init;descriptionCzech Army - APC 1 Gunner@[JIP] APC 1 [BVP-2]isPlayableAttribute0Attribute1nAttributes+propertyspeakerexpression_this setspeaker _value;Value]datamtypevalueMale10ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value+data+typevalueff?+typeSCALAR+formationDIAMONDEdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_B_BMP2_CZ_Des\positionEV%@Fangles@skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "Armored"]] call hull3_unit_fnc_init;\dataTypeGroupsideWestEntitiesAttributes>idXitemsItem0Item1Item2>dataTypeObjectPositionInfoZsideWestflagsAttributesidtypeB_crew_FCustomAttributesxpositionEOM5@ދFangles@skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "VC"], ["marker", "APC2", "ColorBlue"]] call hull3_unit_fnc_init;descriptionCzech Army - APC 2 Commander@[JIP] APC 2 [BVP-2]isPlayablexAttribute0Attribute1AnAttributespropertyspeakerexpression_this setspeaker _value;ValueAdata Atype,valueMale05ENGAtypeSTRINGApropertypitchexpression_this setpitch _value;ValuedatatypevalueQx?typeSCALARdataTypeObjectPositionInfoIsideWestflagsAttributesidtypeB_crew_FCustomAttributes3positionoEOM5@܋Fangles@skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionCzech Army - APC 2 Driver@[JIP] APC 2 [BVP-2]isPlayable3Attribute0kAttribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale09ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueBdataRtypenvalue?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributes<idtypeB_crew_FCustomAttributes>position#EOM5@Fangles@<skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "VG"]] call hull3_unit_fnc_init;descriptionCzech Army - APC 2 Gunner@[JIP] APC 2 [BVP-2]isPlayableAttribute0&Attribute1nAttributes>propertyspeakerexpression_this setspeaker _value;ValuepdatatypevalueMale09ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value>data >type)valueG?>typeSCALAR>formationDIAMONDXdataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_B_BMP2_CZ_DesCustomAttributespositionpEV%@6Fangles@skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Armored"]] call hull3_unit_fnc_init;}texturesCZ_DESAttribute0nAttributespropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuedata/typevalue[[[["CUP_arifle_Sa58P","CUP_launch_RPG7V","FirstAidKit","Medikit"],[4,2,20,2]],[["CUP_30Rnd_Sa58_M","CUP_200Rnd_TE4_Red_Tracer_556x45_M249","CUP_1Rnd_HEDP_M203","CUP_PG7V_M","CUP_HandGrenade_M67","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,4,10,2,4,4,4,4]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[8]]],false]typeSTRINGdataTypeGroupsideWestEntitiesAttributesidatlOffset7itemsItem0/Item15Item2 dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FatlOffset7CustomAttributes5position\?EM5@Fangles @skill?rankSERGEANTinitcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "VC"], ["marker", "TNK1", "ColorRed"]] call hull3_unit_fnc_init;}descriptionCzech Army - Tank 1 Commander@[JIP] Tank 1 [T-72M]isPlayableAttribute0Attribute1nAttributes5propertyspeakerexpression_this setspeaker _value;ValuegdatawtypevalueMale10ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value5data5type valueff?5typeSCALAR5 dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FatlOffset8CustomAttributespositiony#EN5@FFangles)@skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "VD"]] call hull3_unit_fnc_init;descriptionCzech Army - Tank 1 Driver@[JIP] Tank 1 [T-72M]isPlayableAttribute0Attribute1{nAttributespropertyspeakerexpression_this setspeaker _value;Value4{dataD{typefvalueMale10ENG{typeSTRING{propertypitchexpression_this setpitch _value;ValuedatatypevalueG?typeSCALAR dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_crew_FatlOffset8CustomAttributespositionHBEN5@Fangles)@skill?init [this, ["faction", "CUP_CZ_DE"], ["gear", "VG"]] call hull3_unit_fnc_init;descriptionCzech Army - Tank 1 Gunner@[JIP] Tank 1 [T-72M]isPlayableAttribute0Attribute1HnAttributespropertyspeakerexpression_this setspeaker _value;ValueHdataHtype3valueMale03ENGHtypeSTRINGHpropertypitchexpression_this setpitch _value;ValuedatatypevalueQx?typeSCALARformationDIAMOND dataTypeObjectPositionInfosideEmptyflagsAttributesidtypeCUP_B_T72_CZatlOffsetNt>CustomAttributes1position'E @Fangles)@skill?lockUNLOCKEDinit [this, ["faction", "CUP_CZ_DE"], ["gear", "Armored"]] call hull3_unit_fnc_init;1Attribute0YnAttributespropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuedatatypevalue[[[["CUP_smg_EVO","CUP_launch_RPG18","FirstAidKit","Medikit"],[2,1,10,1]],[["CUP_30Rnd_9x19_EVO","CUP_RPG18_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[20,2,2,2,2]],[["ToolKit"],[1]],[["CUP_B_ACRScout_m95_Sa58"],[4]]],false]typeSTRINGdataTypeGroupsideWestEntities4AttributesidatlOffset<itemsItem0gItem1h Item26 dataTypeObjectPositionInfosideWestflagsAttributes5 idtypeB_Helipilot_FatlOffset<CustomAttributes h positionEJ6@~Fangles?5 skill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "P"], ["marker", "TH1", "ColorOrange"]] call hull3_unit_fnc_init;descriptionCzech Army - TH 1 Pilot@[JIP] TH 1 [Mi-171Sh]isPlayable Attribute0P Attribute1 nAttributesh propertyspeakerexpression_this setspeaker _value;Value  data  type valueMale07ENG typeSTRING propertypitchexpression_this setpitch _value;Value' h data7 h typeS value ׃?h typeSCALARh  dataTypeObjectPositionInfo sideWestflagsAttributes5 idtypeB_helicrew_FatlOffset<CustomAttributes 6positionEJ6@Fangles?5 skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "PCM"]] call hull3_unit_fnc_init;descriptionCzech Army - TH 1 Crew@[JIP] TH 1 [Mi-171Sh]isPlayable Attribute0 Attribute1 nAttributes6propertyspeakerexpression_this setspeaker _value;Valueh  datax  type valueMale07ENG typeSTRING propertypitchexpression_this setpitch _value;Value 6data6type!value ׃?6typeSCALAR6 dataTypeObjectPositionInfosideWestflagsAttributesidtypeB_helicrew_FatlOffset<CustomAttributespositionoEJ6@Fangles?skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "PCM"]] call hull3_unit_fnc_init;descriptionCzech Army - TH 1 Crew@[JIP] TH 1 [Mi-171Sh]isPlayableAttribute0Attribute1}nAttributespropertyspeakerexpression_this setspeaker _value;Value6}dataF}typehvalueMale08ENG}typeSTRING}propertypitchexpression_this setpitch _value;ValuedatatypevalueG?typeSCALARformationDIAMONDdataTypeGroupsideWestEntitieshAttributesid"itemsItem0Item1Item2JdataTypeObjectPositionInfo!sideWestflagsAttributesYidtypeB_Helipilot_FCustomAttributes<positionUEOM5@ϋFanglesH?Yskill?rankSERGEANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "P"], ["marker", "TH2", "ColorOrange"]] call hull3_unit_fnc_init;descriptionCzech Army - TH 2 Pilot@[JIP] TH 2 [Mi-171Sh]isPlayable<Attribute0tAttribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale12ENGtypeSTRINGpropertypitchexpression_this setpitch _value;ValueKdata[typewvalue33s?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributesIidtypeB_helicrew_FCustomAttributesJposition 9EOM5@ϋFanglesH?Iskill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "PCM"]] call hull3_unit_fnc_init;descriptionCzech Army - TH 2 Crew@[JIP] TH 2 [Mi-171Sh]isPlayableAttribute02Attribute1nAttributesJpropertyspeakerexpression_this setspeaker _value;Value|datatypevalueMale10ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value JdataJtype5valueHz?JtypeSCALARJdataTypeObjectPositionInfosideWestflagsAttributesidtypeB_helicrew_FCustomAttributespositionUUEOM5@{ȋFanglesH?skill?init[this, ["faction", "CUP_CZ_DE"], ["gear", "PCM"]] call hull3_unit_fnc_init;descriptionCzech Army - TH 2 Crew@[JIP] TH 2 [Mi-171Sh]isPlayableAttribute0Attribute1nAttributespropertyspeakerexpression_this setspeaker _value;Value:dataJtypelvalueMale05ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Valuedatatypevalueu?typeSCALARformationDIAMOND"dataTypeGroupsideWestEntitieslAttributesK ide itemsItem0Item1K dataTypeObjectPositionInfosideWestflagsAttributesNidtypeB_Pilot_FCustomAttributes0position6EOM5@ËFangles=Nskill?rankLIEUTENANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "P"], ["marker", "AH1", "ColorOrange"]] call hull3_unit_fnc_init;descriptionCzech Army - AH 1 Pilot@[JIP] AH 1 [Mi-35]isPlayable0Attribute0hAttribute1nAttributespropertyspeakerexpression_this setspeaker _value;ValuedatatypevalueMale09ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value?dataOtypekvalue ׃?typeSCALARdataTypeObjectPositionInfosideWestflagsAttributes:idtypeB_Pilot_FCustomAttributesK position%EOM5@Fangles=:skill?rankLIEUTENANTinit [this, ["faction", "CUP_CZ_DE"], ["gear", "P"]] call hull3_unit_fnc_init;descriptionCzech Army - AH 1 Gunner@[JIP] AH 1 [Mi-35]isPlayableAttribute03Attribute1nAttributesK propertyspeakerexpression_this setspeaker _value;Value}datatypevalueMale10ENGtypeSTRINGpropertypitchexpression_this setpitch _value;Value K data K type6 value33s?K typeSCALARK formationDIAMONDe dataTypeObjectPositionInfo sideEmptyflagsAttributes0!idtypeCUP_B_Mi35_Dynamic_CZ_DesCustomAttributesX"#positionEB@ͧFangles~=0!skill?initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Car"]] call hull3_unit_fnc_init;}pylonsCUP_PylonPod_2Rnd_Ataka_M[0];CUP_PylonPod_20Rnd_S8N_CCIP_M;CUP_PylonPod_20Rnd_S8N_CCIP_M;CUP_PylonPod_20Rnd_S8N_CCIP_M;CUP_PylonPod_20Rnd_S8N_CCIP_M;CUP_PylonPod_2Rnd_Ataka_M[0];X"Attribute0"nAttributes#propertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value"#data"#type#value[[[["CUP_smg_EVO","FirstAidKit"],[1,4]],[["30Rnd_9x21_Mag","SmokeShell","SmokeShellOrange","Chemlight_red"],[10,2,2,2]],[[],[]],[[],[]]],false]#typeSTRING#dataTypeLayernamePlacedstateEntities#idatlOffsetz ?9itemsItem0'%Item1%Item2&Item3'Item4(Item5)Item6b*Item7+Item8;,Item9a-Item10w.Item11C/Item120Item130Item141Item152Item16O3Item174Item184Item195Item206Item21K7Item228Item2389dataTypeObjectPositionInfo%sideEmptyflagsAttributes%idGtypeCUP_t_FicusB2s_EP1%positionb(FF@m>%disableSimulation%dataTypeObjectPositionInfoi&sideEmptyflagsAttributes&idHtypeCUP_t_FicusB2s_EP1&positionFF6 JA`|Fangles|>V!r@su>&disableSimulation&dataTypeObjectPositionInfo5'sideEmptyflagsAttributesm'idItypeCUP_t_FicusB2s_EP1'position*EFЬ A9|Fangles@/?c>m'disableSimulation'dataTypeObjectPositionInfo(sideEmptyflagsAttributesO(id1typeCUP_USSpecialWeapons_EP1atlOffset5(positionBFB@7~Fangles_@,+:O(initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}(dataTypeObjectPositionInfo-)sideEmptyflagsAttributesM)id*typeCUP_USSpecialWeapons_EP1)position:AFD@R|FM)initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;})dataTypeObjectPositionInfo$*sideEmptyflagsAttributes\*id0typeLand_Ind_Garage01b*position?BFE@~Fangles?\*b*dataTypeObjectPositionInfo*sideEmptyflagsAttributes+id<typeLand_Ind_Garage01+positionjCFE@|~Fangles)?++dataTypeObjectPositionInfo+sideEmptyflagsAttributes+id>typeCUP_USSpecialWeapons_EP1atlOffset@`=;,positionqCFa@z~Fangles@M;+initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;};,dataTypeObjectPositionInfo,sideEmptyflagsAttributes,idFtypeCUP_USSpecialWeapons_EP1atlOffset4a-positionzhCF|1@r~Fangles_@h=,+:,initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}a-dataTypeObjectPositionInfo-sideEmptyflagsAttributes.idGtypeCUP_USSpecialWeapons_EP1w.positionAFD@FanglesO@.initcall{ [this, ["faction", "CUP_CZ_DE"], ["gear", "Truck"]] call hull3_unit_fnc_init;}w.dataTypeObjectPositionInfo.sideEmptyflagsAttributes%/idetypeCUP_t_FicusB2s_EP1C/positionBF|/A`Fangles]@S?Ǔ@%/disableSimulationC/dataTypeObjectPositionInfo/sideEmptyflagsAttributes/idftypeCUP_t_FicusB2s_EP10position]BFX@Fangles@׶@@/disableSimulation0dataTypeObjectPositionInfo0sideEmptyflagsAttributes0idgtypeCUP_t_FicusB2s_EP10position,BF@-؁Fangles@/?@0disableSimulation0dataTypeObjectPositionInfoQ1sideEmptyflagsAttributes1idhtypeCUP_t_FicusB2s_EP11position]HFMAgFangles)(@/?v@1disableSimulation1dataTypeObjectPositionInfo-2sideEmptyflagsAttributese2iditypeCUP_t_FicusB2s_EP1atlOffset2positionUHFAnFanglesJ@N=P@e2disableSimulation2dataTypeObjectPositionInfo2sideEmptyflagsAttributes13idjtypeCUP_t_FicusB2s_EP1O3positionsFr@ш{Fangles e@4disableSimulation4dataTypeObjectPositionInfo]5sideEmptyflagsAttributes5idmtypeCUP_t_FicusB2s_EP15position,>Fr@;{Fangles@5disableSimulation5dataTypeObjectPositionInfo)6sideEmptyflagsAttributesa6idntypeCUP_t_FicusB2s_EP16position=Fr@#{Fanglesu@a6disableSimulation6dataTypeObjectPositionInfo6sideEmptyflagsAttributes-7idotypeCUP_t_FicusB2s_EP1K7positionI>Fr@{Fangles/?-7disableSimulationK7dataTypeObjectPositionInfo7sideEmptyflagsAttributes7idptypeCUP_t_FicusB2s_EP18positionڇEFB@vbFangles?@6>7disableSimulation8dataTypeObjectPositionInfo8sideEmptyflagsAttributes8idqtypeCUP_t_FicusB2s_EP18position]EF@kFanglesokd@8disableSimulation8dataTypeObjectPositionInfoY9sideEmptyflagsAttributes9idrtypeCUP_t_FicusB2s_EP19position_EF A`RFanglesX,>/?,K=9disableSimulation9dataTypeLayernamePhase 1 - Safety OffstateEntities:id atlOffsetaoĭitemsItem0m;Item16<Item2HItem3JItem4LItem5NItem6PItem7SItem8SItem9`Item10-bItem11GdItem12afItem13{hItem14jItem15^kItem16xItem17yItem18{Item19}Item20Item21)Item22Item23Item24EItem25_Item26yItem27dataTypeTriggerpositionU0<Attribute0=Attribute1>Attribute2a?Attribute3#@Attribute4@Attribute5AAttribute6oBAttribute7ICAttribute8DAttribute9DAttribute10EAttribute11FAttribute12TGAttribute13(HnAttributesHpropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Valuea>>dataq>>type>value>typeSTRING>propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Value ?a?data0?a?typeL?valuea?typeSCALARa?propertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value?#@data?#@type@valueB#@typeSCALAR#@propertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value@@data@@type@valueB@typeSCALAR@propertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];ValuenAAdata~AAtypeAvalue AAtypeSCALARApropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value0BoBdata@BoBtype\BvalueoBtypeBOOLoBpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValueCICdataCICtype4CvalueICtypeSCALARICpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueCDdataCDtypeCvalueDtypeSTRINGDpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValueDDdataDDtypeDvalueDtypeSCALARDpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValuewEEdataEEtypeEvalueEtypeSCALAREpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValueGFFdataWFFtypesFvalueAFtypeSCALARFpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValueGTGdata#GTGtype?GvalueTGtypeSCALARTGpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueG(HdataG(HtypeHvalue(HtypeSCALAR(HpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueHHdataHHtypeHvalueHtypeSTRINGHdataTypeGroupsideCivilianEntitiesSIAttributesJidatlOffsetJNęJitemsItem0{IItem1(JJdataTypeObjectPositionInfoIsideCivilianflagsAttributes"JidtypeC_Bob_VR(Jpositiono@dataTypeWaypointposition@FA@FEffectsFshowWPNEVERid=typeMoveLLdataTypeWaypointpositionqBFІ@@WFEffectsshowWPNEVERid>typeMovedataTypeGroupsideCivilianEntitiesAttributesid;atlOffsetJNitemsItem0NItem1Item2fdataTypeObjectPositionInfosideCivilianflagsAttributesid<typeC_Bob_VRposition$6F!cF@9Fangles(L?dataTypeWaypointpositionAFІ@@pX|FEffects`showWPNEVERid?typeMoveffdataTypeWaypointpositionsBFІ@@ ~FEffectsshowWPNEVERid@typeMovedataTypeGroupsideCivilianEntities5AttributesidCatlOffsetJNitemsItem0hItem1Item2dataTypeObjectPositionInfosideCivilianflagsAttributesidDtypeC_Bob_VRpositionkVFK@FanglesD@dataTypeWaypointpositionBFІ@@{FEffectszshowWPNEVERidItypeMovedataTypeWaypointpositionSvBF(y7@~FEffectsshowWPNEVERidJtypeMovedataTypeGroupsideCivilianEntitiesOAttributesidEatlOffsetJN itemsItem0Item1/Item2dataTypeObjectPositionInfosideCivilianflagsAttributes)idFtypeC_Bob_VR/positionKRVFp@MFanglesD@)/dataTypeWaypointpositionʷDFІ@@t)FEffectsshowWPNEVERidGtypeMovedataTypeWaypointposition^qBF(y7@bFEffectsshowWPNEVERidHtypeMove dataTypeTriggerposition 6FC@mFangleT?Attributesid7typeEmptyDetectoratlOffset5conditioncall{triggeractivated safety_off}sizeA @sizeB@timeoutDDDdataTypeTriggerpositioniVFw@FangleB@AttributesZidAtypeEmptyDetectorconditioncall{triggeractivated safety_off}sizeA @sizeB@timeoutDDDdataTypeLogicPositionInfo'id8typeAdmiral_OndemandCampZoneCustomAttributes_~positionΡ6F(y7@Fangles-;_Attribute0[Attribute1(Attribute2Attribute3Attribute4nAttribute58Attribute6Attribute7Attribute8Attribute9oAttribute10AAttribute11Attribute12Attribute13nAttributes~propertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value(data(typevalue(typeSTRING(propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Valuekdata{typevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value-ndata=ntypeYvalueBntypeSCALARnpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value8data8type#value A8typeSCALAR8propertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuedatatypevaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueYdataitypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value.odata>otypeZvalueotypeSCALARopropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValueAdataAtype,valueAtypeSCALARApropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Valuedatatypevalue?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValuepdatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value@~dataP~typeivalue~typeSTRING~dataTypeLogicPositionInfoidBtypeAdmiral_OndemandCampZoneCustomAttributes=positionюVF9@ÂFanglesl@{M3@<Attribute0Attribute1Attribute2Attribute3kAttribute4-Attribute5Attribute6Attribute7Attribute8VAttribute9.Attribute10Attribute11Attribute12Attribute13pnAttributes=propertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuehdataxtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value*kdata:ktypeVvalueBktypeSCALARkpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value-data-typevalueB-typeSCALAR-propertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Valuedatatypevalue AtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuexdatatypevaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValuePdata`type|valuetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueVdata(VtypeAvalueVtypeSTRINGVpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value.data.typevalue.typeSCALAR.propertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Value[dataktypevalue?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];Value/pdata?ptype[valueptypeSCALARppropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value=data=type(value=typeSTRING=dataTypeLayernamePhase 4 - 0015 - Doodly DudesstateEntitiesidwatlOffset'itemsItem0]Item1Item2+Item3EItem4oItem5Item6=Item7wItem8Item9Item10Item11Item12Item13h'dataTypeGroupsideCivilianEntitiesAttributesidMatlOffsetJNitemsItem0Item1dataTypeObjectPositionInfoRsideCivilianflagsAttributesidNtypeC_Bob_VRposition)=F7@{FanglesU?dataTypeWaypointpositionrBF9@ FEffectsshowWPNEVERidWtypeMovedataTypeGroupsideCivilianEntities_Attributes%idOatlOffsetJN+itemsItem0Item1?Item2%dataTypeObjectPositionInfosideCivilianflagsAttributes9idPtypeC_Bob_VR?positionH=F7@{FanglesU?9?dataTypeWaypointpositionoAFІ@@J}FEffectsshowWPNEVERidZtypeMovedataTypeWaypointpositionvBF̟9@FEffectsshowWPNEVERid[typeMoveatlOffsetL%%+dataTypeGroupsideCivilianEntitiesAttributes?idQatlOffsetJNEitemsItem0Item1iItem2?dataTypeObjectPositionInfo+sideCivilianflagsAttributescidRtypeC_Bob_VRiposition=F7@{FanglesU?cidataTypeWaypointposition@F$@d~FEffectsshowWPNEVERid^typeMovedataTypeWaypointposition:BFi>@A)FEffects9showWPNEVERid_typeMove??EdataTypeGroupsideCivilianEntitiesAttributesiidSatlOffsetJNoitemsItem0Item1Item2idataTypeObjectPositionInfoEsideCivilianflagsAttributes}idTtypeC_Bob_VRposition=F7@{FanglesU?}dataTypeWaypointposition@FH9@~FEffectsshowWPNEVERid\typeMoveatlOffset@7dataTypeWaypointpositionBF9@FEffectscshowWPNEVERid]typeMoveiiodataTypeGroupsideCivilianEntitiesAttributesidUatlOffsetJNęitemsItem0Item1Item2dataTypeObjectPositionInfoosideCivilianflagsAttributesidVtypeC_Bob_VRposition=F7@{FanglesU?dataTypeWaypointposition@FІ@@$}FEffectsshowWPNEVERidXtypeMovedataTypeWaypointpositionuBF:@FEffectsshowWPNEVERidYtypeMoveatlOffset6dataTypeGroupsideCivilianEntitiesAttributes7idcatlOffsetJN=itemsItem0Item17dataTypeObjectPositionInfosideCivilianflagsAttributesiddtypeC_Bob_VRposition~EFc@@csFanglesx@dataTypeWaypointposition~BF<@ FEffects1showWPNEVERidmtypeMove77=dataTypeGroupsideCivilianEntitiesAttributesqideatlOffsetJNwitemsItem0Item1Item2qdataTypeObjectPositionInfoMsideCivilianflagsAttributesidftypeC_Bob_VRatlOffset4positionRzEFd@@{Fanglesx@dataTypeWaypointpositionYBFІ@@խFEffectsshowWPNEVERidstypeMovedataTypeWaypointpositionrBF:@$FEffectskshowWPNEVERidttypeMoveatlOffsetqqwdataTypeGroupsideCivilianEntitiesAttributesidgatlOffsetJNđitemsItem0Item1Item2 dataTypeObjectPositionInfowsideCivilianflagsAttributesidhtypeC_Bob_VRpositionߎEFM@qFanglesx@dataTypeWaypointposition EF+L@FEffectsshowWPNEVERidutypeMove  dataTypeWaypointpositionBF;@FEffectsshowWPNEVERidvtypeMovedataTypeGroupsideCivilianEntitiesAttributesidiatlOffsetJNĻitemsItem0"Item1Item2:dataTypeObjectPositionInfosideCivilianflagsAttributesidjtypeC_Bob_VRpositionÆEFQ@@qFanglesx@dataTypeWaypointpositionDF(y7@oFEffects4showWPNEVERidntypeMove::dataTypeWaypointpositionJBFW?@+FEffectsshowWPNEVERidotypeMoveatlOffset@6dataTypeGroupsideCivilianEntitiesAttributesidkatlOffsetJNitemsItem0LItem1 Item2dataTypeObjectPositionInfosideCivilianflagsAttributesidltypeC_Bob_VRatlOffset4 positionzEFd@@vFanglesx@ dataTypeWaypointposition%DF@!FEffects~showWPNEVERidptypeMoveatlOffsetdataTypeWaypointpositionZ|BF=@,FEffectsshowWPNEVERidrtypeMoveatlOffsetdataTypeTriggerpositionJ=F(y7@{FanglekaP?AttributesridKtypeEmptyDetectorconditioncall{triggeractivated safety_off}sizeA@sizeB@timeoutaDaDaDdataTypeTriggerpositionЉEFІ@@WyFangle\dw@AttributesDidatypeEmptyDetectorconditioncall{triggeractivated safety_off}sizeA@sizeB@timeoutaDaDaDdataTypeLogicPositionInfoidLtypeAdmiral_OndemandCampZoneCustomAttributesIhposition"=F(y7@p{Fangles)@IAttribute0EAttribute1Attribute2Attribute3Attribute4XAttribute5"Attribute6Attribute7Attribute8Attribute9YAttribute10+Attribute11Attribute12Attribute13nAttributeshpropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValueUdataetypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValueXdata'XtypeCvalueBXtypeSCALARXpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value"data"type value A"typeSCALAR"propertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuedatatypevaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];Value{datatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueCdataStypelvaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValueYdata(YtypeDvalueYtypeSCALARYpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value+data+typevalue+typeSCALAR+propertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValuedatatypevalueAtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueZdatajtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value*hdata:htypeSvaluehtypeSTRINGhdataTypeLogicPositionInfoidbtypeAdmiral_OndemandCampZoneCustomAttributes'position^EFІ@@悁Fangles@Attribute0 Attribute1 Attribute2 Attribute3U Attribute4 Attribute5 Attribute6 Attribute7{Attribute8@Attribute9Attribute10Attribute11Attribute12Attribute13ZnAttributes'propertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value  data  type value typeSTRING propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValueR  datab  type~ value typeSCALAR propertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value U data$ U type@ valueBU typeSCALARU propertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value  data  type valueB typeSCALAR propertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value  data  type value A typeSCALAR propertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Valueb  datar  type value typeBOOL propertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];Value:{dataJ{typefvalue{typeSCALAR{propertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value@data@type+value@typeSTRING@propertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValueydatatypevalueAtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValueEdataUtypeqvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueZdata)ZtypeEvalueZtypeSCALARZpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value'data'typevalue'typeSTRING'dataTypeLayernamePhase 5 - 0020 - Tumultuous TechiesstateEntitiesidxatlOffsetkhá= items Item04Item1^Item2xItem3JItem4 'Item5#)Item6)Item76Item8D9Item9A;Item10 <Item11m<=dataTypeGroupsideCivilianEntitiesAttributesXid|atlOffsetJN^itemsItem0Item1rItem2XdataTypeObjectPositionInfo4sideCivilianflagsAttributeslid}typeC_Bob_VRrposition%_:Fb@6Fanglesb{L@lrdataTypeWaypointposition yBF[J@0FEffectsshowWPNEVERidtypeMovedataTypeWaypointpositionvBFD<@*FEffectsRshowWPNEVERidtypeMoveatlOffsetXX^dataTypeGroupsideCivilianEntitiesAttributesrid~atlOffsetJNxitemsItem0Item1Item2rdataTypeObjectPositionInfo^sideCivilianflagsAttributesidtypeC_Bob_VRpositionR:Fmb@6Fanglesb{L@dataTypeWaypointposition=@F_@@FEffectsshowWPNEVERidtypeMovedataTypeWaypointpositionnBF(y7@yFEffectslshowWPNEVERidtypeMoverrxdataTypeTriggerposition>W:FN@9idatlOffsetJND9itemsItem0P7Item17Item2h8Item38>9dataTypeObjectPositionInfo7sideCivilianflagsAttributes7idtypeC_Bob_VR7position>MF&d@]}Fangles@77dataTypeWaypointpositionRDFІ@@}FEffectsb8showWPNEVERidtypeMoveh8h8dataTypeWaypointpositionBFІ@@}FEffects8showWPNEVERidtypeMove88dataTypeWaypointposition{BFv&<@!FEffects89showWPNEVERidtypeMove>9>9D9dataTypeGroupsideEastEntities9Attributes:CrewLinks:idatlOffsetJNA;itemsItem09:dataTypeObjectPositionInfo=:sideEastflagsAttributesu:idtypeCUP_O_RU_Soldier:position{ZFz@ Fangles@щ@@u:nameartyG::LinkIDProvider:Links:A;nextID:itemsItem0:A;linkIDitem0item1CustomData;A;roleturretPathA;dataTypeObjectPositionInfo;sideEastflagsAttributes;idtypeCUP_O_D30_RUatlOffset <position{ZFlc AFangles@щ@@;namearty <dataTypeMarkerposition dBFNb8@b1FnametgttypeEmptyidatlOffsetm<dataTypeTriggerpositionhHF(y7@FAttributes<idtypeEmptyDetector=namearty_trgconditioncall{triggeractivated safety_off}onActivationcall{if (isServer) then { [arty,"tgt"] call ark_script_fnc_fireArty; };}sizeAsizeBtimeoutDDD=dataTypeLayernamePhase 6 - 0025-0040 - Ho'shit Helicopters!stateEntities>idatlOffsetl8(itemsItem0E?Item1`AItem2&BItem3FItem4IItem53KItem6NMItem7yOItem8?PItem9QItem10QItem11RItem12WItem13e\Item146aItem15 fItem16OlItem17qrItem18uItem19wItem20WzItem21Item22ɁItem23dataTypeGroupsideCivilianEntities?AttributesZAidatlOffsetJN`AitemsItem0?Item1@Item2@ZAdataTypeObjectPositionInfoF@sideCivilianflagsAttributes~@idtypeC_Jeff_VR@positiongKF@G݊Fangles+@~@@dataTypeWaypointposition@F(y7@?FEffects@showWPNEVERidtypeMove@@dataTypeWaypointpositionEDmFEffectsTAshowWPNEVERidtypeMoveZAZA`AdataTypeTriggerpositionrF;zt@'FAttributesAidtypeEmptyDetector&Bconditioncall{triggeractivated safety_off}sizeAXAsizeBAtimeoutDDD&BdataTypeLogicPositionInfoBidtypeARK_Rotor_ParadropCustomAttributesBFpositionӋFl@8Fanglesf=E@1h;BAttribute0(CAttribute1CAttribute2DAttribute3EAttribute4FFnAttributesFpropertyARK_Rotor_Paradrop_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];ValueCCdataCCtypeCvalueCUP_O_Ka60_Grey_RUCtypeSTRINGCpropertyARK_Rotor_Paradrop_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Value|DDdataDDtypeDvalueark_rotor_fnc_paradropDtypeSTRINGDpropertyARK_Rotor_Paradrop_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];ValueEEEdataUEEtypeqEvalue CEtypeSCALAREpropertyARK_Rotor_Paradrop_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];ValueFFFdataFFFtype1FvalueBFFtypeSCALARFFpropertyARK_Rotor_Paradrop_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];ValueFFdataFFtypeFvalueNORMALFtypeSTRINGFdataTypeGroupsideCivilianEntities[GAttributesIidatlOffsetJNIitemsItem0GItem1SϋFanglesX@lLrLdataTypeWaypointposition|DFІ@@!FEffectsLshowWPNEVERidtypeMoveLLdataTypeWaypointposition2)EB4BFEffectsBMshowWPNEVERidtypeMoveHMHMNMdataTypeGroupsideCivilianEntitiesMAttributessOidatlOffsetJNyOitemsItem0MItem1NItem2OsOdataTypeObjectPositionInfo_NsideCivilianflagsAttributesNidtypeC_Jeff_VRatlOffset9NpositionfF@3Fanglesh؏@NNdataTypeWaypointpositioniCFІ@@Ul{FEffectsOshowWPNEVERidtypeMoveOOdataTypeWaypointposition9EïBJFEffectsmOshowWPNEVERidtypeMovesOsOyOdataTypeTriggerpositionY~Fzu@B_FAttributesOidtypeEmptyDetector?Pconditioncall{triggeractivated safety_off}sizeAXAsizeBAtimeoutDDD?PdataTypeTriggerposition4F[ @FAttributesPidtypeEmptyDetectorQconditioncall{triggeractivated safety_off}sizeAXAsizeBAtimeoutDDDQdataTypeTriggerposition'FyFAttributesvQidtypeEmptyDetectoratlOffsetnQconditioncall{triggeractivated safety_off}sizeAXAsizeBAtimeoutEEEQdataTypeTriggerpositionJF1@=Fangle9o>AttributesHRidtypeEmptyDetectorRconditioncall{triggeractivated safety_off}sizeAXAsizeBAtimeoutDDDRdataTypeLogicPositionInfoSidtypeARK_Rotor_ParadropCustomAttributesGSWpositionLF@}PFangles R=``dataN``typej`valueHB`typeSCALAR`propertyARK_Rotor_Paradrop_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];Value`6adataa6atype!avalueNORMAL6atypeSTRING6adataTypeLogicPositionInfoaidtypeARK_Rotor_ParadropCustomAttributesa fposition~Fz@@Z}FanglesE@=aAttribute08bAttribute1 cAttribute2cAttribute3dAttribute4VenAttributes fpropertyARK_Rotor_Paradrop_Vehicle_ClassNameexpression_this setVariable ['Vehicle_ClassName',_value,true];Valueb cdatab ctypebvalueCUP_O_Ka60_Grey_RU ctypeSTRING cpropertyARK_Rotor_Paradrop_Routine_Functionexpression_this setVariable ['Routine_Function',_value,true];Valueccdatacctypecvalueark_rotor_fnc_paradropctypeSTRINGcpropertyARK_Rotor_Paradrop_Fly_Heightexpression_this setVariable ['Fly_Height',_value,true];ValueUdddataeddtypedvalueBdtypeSCALARdpropertyARK_Rotor_Paradrop_Crew_Percentageexpression_this setVariable ['Crew_Percentage',_value,true];ValueeVedata%eVetypeAevalueBVetypeSCALARVepropertyARK_Rotor_Paradrop_Fly_Speedexpression_this setVariable ['Fly_Speed',_value,true];Valuee fdatae ftypeevalueNORMAL ftypeSTRING fdataTypeGroupsideEastEntitiesvfAttributes?kCrewLinksEkid atlOffsetJNOlitemsItem0fItem1gItem2ohItem3iItem4iItem5?jItem6j?kdataTypeObjectPositionInfoVgsideEastflagsAttributesgid typeCUP_O_RU_PilotatlOffsetgposition[FV@@Fangles$@D>@ @gnameheli3DgdataTypeObjectPositionInfo#hsideEastflagsAttributes[hidtypeCUP_O_RU_PilotatlOffsetohposition[FV@@Fangles$@D>@ @[hnameheli3GohdataTypeWaypointpositionIF(y7@FplacementzCcompletitionRadiusAEffectshshowWPNEVERidtypeMoveiidataTypeWaypointpositionMCFI@ՑFplacementzCcompletitionRadiusAtypeSeekAndDestroyEffectsishowWPNEVERidiidataTypeWaypointposition6J@F(y7@Lo}FplacementzCcompletitionRadiusAtypeSeekAndDestroyEffects9jshowWPNEVERid?j?jdataTypeWaypointpositionjb:F(y7@F{FplacementzCcompletitionRadiusAEffectsjshowWPNEVERidtypeMovejjdataTypeWaypointpositionJF(y7@gFtypeCycleEffects9kshowWPNEVERid?k?kEkLinkIDProviderjkLinks}kOlnextID}kitemsItem0kItem1kOllinkIDitem0 item1 CustomDatakkroleklinkIDitem0item1 CustomData,lOlroleturretPathOldataTypeGroupsideEastEntitieslAttributesaqCrewLinksgqidatlOffsetJNqritemsItem0mItem1mItem2nItem3%oItem4oItem5apItem6paqdataTypeObjectPositionInfomsideEastflagsAttributesmidtypeCUP_O_RU_PilotmpositionWFm@݉Fangles1h;"N@;mnameheli2DmdataTypeObjectPositionInfoEnsideEastflagsAttributes}nidtypeCUP_O_RU_PilotnpositionWFm@݉Fangles1h;"N@;}nnameheli2GndataTypeWaypointpositionJNFB@&*FplacementzCcompletitionRadiusAEffectsoshowWPNEVERidtypeMove%o%odataTypeWaypointposition0GFІ@@FplacementzCcompletitionRadiusAtypeSeekAndDestroyEffectsoshowWPNEVERidoodataTypeWaypointposition@Ffc@FplacementzCcompletitionRadiusAtypeSeekAndDestroyEffects[pshowWPNEVERidapapdataTypeWaypointpositionS3:F(y7@݀FplacementzCcompletitionRadiusAEffectspshowWPNEVERidtypeMoveppdataTypeWaypointposition̅NF(y7@!tFtypeCycleEffects[qshowWPNEVERid aqaqgqLinkIDProviderqLinksqqrnextIDqitemsItem0qItem1rqrlinkIDitem0item1CustomDatarrrolerlinkIDitem0item1CustomDataNrqrroleturretPathqr dataTypeObjectPositionInfossideEastflagsAttributesIsidtypeCUP_O_Mi24_V_Dynamic_RUatlOffsetĻCustomAttributessuposition/F&?AeFanglesH-<"N@(@Isinitcall{this removeWeaponTurret ["CMFlareLauncher",[-1]];}nameheli1texturesRussiaLightGreensAttribute0snAttributesupropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value9tudataItutypetvalue[[[["CUP_arifle_AKS74U","FirstAidKit"],[1,4]],[["CUP_30Rnd_545x39_AK_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[10,2,2,2]],[[],[]],[[],[]]],false]utypeSTRINGu dataTypeObjectPositionInfousideEastflagsAttributesuid typeCUP_O_Mi24_V_Dynamic_RUatlOffsetCustomAttributesYvwpositionoFcAr@Fangles$@D>@ @uinitcall{this removeWeaponTurret ["CMFlareLauncher",[-1]];}nameheli3texturesRussiaLightGreenYvAttribute0vnAttributeswpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Valuevwdatavwtypewvalue[[[["CUP_arifle_AKS74U","FirstAidKit"],[1,4]],[["CUP_30Rnd_545x39_AK_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[10,2,2,2]],[[],[]],[[],[]]],false]wtypeSTRINGw dataTypeObjectPositionInfoUxsideEastflagsAttributesxidtypeCUP_O_Mi24_V_Dynamic_RUatlOffsetCustomAttributesxWzpositionMF A܉Fangles1h;"N@;xinitcall{this removeWeaponTurret ["CMFlareLauncher",[-1]];}nameheli2texturesRussiaLightGreenxAttribute0#ynAttributesWzpropertyammoBoxexpression[_this,_value] call bis_fnc_initAmmoBox;Value}yWzdatayWztypeBzvalue[[[["CUP_arifle_AKS74U","FirstAidKit"],[1,4]],[["CUP_30Rnd_545x39_AK_M","SmokeShell","SmokeShellOrange","Chemlight_red"],[10,2,2,2]],[[],[]],[[],[]]],false]WztypeSTRINGWzdataTypeGroupsideEastEntitieszAttributesCrewLinksidatlOffsetJNęitemsItem0{Item1{Item2|Item3M}Item4}Item5~Item6dataTypeObjectPositionInfo{sideEastflagsAttributes{id typeCUP_O_RU_PilotatlOffsetĻ{position.F@eFanglesH-<"N@(@{nameheli1D{dataTypeObjectPositionInfom|sideEastflagsAttributes|id typeCUP_O_RU_PilotatlOffsetĻ|position.F@eFanglesH-<"N@(@|nameheli1G|dataTypeWaypointposition?WGF(y7@5FplacementzCcompletitionRadiusAEffectsG}showWPNEVERid!typeMoveM}M}dataTypeWaypointpositionCF(y7@݂FplacementzCcompletitionRadiusAtypeSeekAndDestroyEffects}showWPNEVERid"}}dataTypeWaypointposition?F@FplacementzCcompletitionRadiusAtypeSeekAndDestroyEffects~showWPNEVERid#~~dataTypeWaypointposition=FІ@@3xFplacementzCcompletitionRadiusAEffectsshowWPNEVERid$typeMovedataTypeWaypointpositionKF@!FtypeCycleEffectsshowWPNEVERid&LinkIDProviderLinksnextIDitemsItem0Item1;linkIDitem0 item1CustomData*;role;linkIDitem0 item1CustomDatavroleturretPathdataTypeTriggerpositionF@SFangleZe@AttributesidtypeEmptyDetectorɁnameh1_actconditioncall{triggeractivated safety_off}onActivationcall{if (isServer) then {[heli1,true] call ark_fnc_enableSim}; }sizeAsizeBtimeoutDDDɁdataTypeTriggerpositionF@@ωFAttributes*idtypeEmptyDetectornameh2_actconditioncall{triggeractivated safety_off}onActivationcall{if (isServer) then {[heli2,true] call ark_fnc_enableSim}; }sizeAsizeBtimeout@E@E@EdataTypeTriggerpositionF9@3FAttributesNidtypeEmptyDetectornameh3_actconditioncall{triggeractivated safety_off}onActivationcall{if (isServer) then {[heli3,true] call ark_fnc_enableSim}; }sizeAsizeBtimeout(E(E(EdataTypeLayernamePhase 7 - 0030 - Again With The Armour?stateEntitiesidatlOffset::Ğ itemsItem0Item1Item2͓Item3Item4Item5xItem6Item7̧dataTypeLogicPositionInfo\idtypeAdmiral_OndemandCampZoneCustomAttributespositionSFS@bFanglesMU@Attribute0Attribute1]Attribute2Attribute3Attribute4Attribute5mAttribute6-Attribute7Attribute8̌Attribute9Attribute10vAttribute11FAttribute12Attribute13nAttributespropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value]data/]typeHvalue]typeSTRING]propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];Valueއdatatype valuetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValuedatatypëvalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValuebdatartypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value,mdata<mtypeXvalue AmtypeSCALARmpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value-data-typevalue-typeBOOL-propertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValueƋdata֋typevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuědatǎtypevaluětypeSTRINǦpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValuecdatastypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value5vdataEvtypeavaluevtypeSCALARvpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValueFdataFtype1valueFtypeSCALARFpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Valueяdatatypevalue?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValuedatatypeѐvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueudatatypevaluetypeSTRINGdataTypeGroupsideCivilianEntitiesAttributesǓidatlOffsetJN͓itemsItem0DItem1Item2\ǓdataTypeObjectPositionInfosideCivilianflagsAttributesidtypeC_Bob_VRpositionGRFS@LFanglesf@dataTypeWaypointpositionоDFІ@@FEffectsVshowWPNEVERid typeMove\\dataTypeWaypointpositionDwBFH9@>FEffectsshowWPNEVERidtypeMoveǓǓ͓dataTypeGroupsideCivilianEntities+AttributesidatlOffsetJNitemsItem0^Item1 Item2vdataTypeObjectPositionInfo͔sideCivilianflagsAttributesidtypeC_Bob_VR position5RFS@YFanglesD@ dataTypeWaypointpositionДBFІ@@X4FEffectspshowWPNEVERid typeMovevvdataTypeWaypointpositionqBF(y7@EnFEffectsەshowWPNEVERid typeMovedataTypeTriggerpositionjRFS@'VFangleW@AttributesTidtypeEmptyDetectorconditioncall{triggeractivated safety_off}sizeA @sizeB@timeoutDDDdataTypeLogicPositionInfo!idtypeAdmiral_OndemandCampZoneCustomAttributesYxpositionB7F(9@oӁFangles3u<JQ?YAttribute0UAttribute1"Attribute2Attribute3Attribute4hAttribute52Attribute6Attribute7̝Attribute8Attribute9iAttribute10;Attribute11 Attribute12סAttribute13nAttributesxpropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];Value"data"type value"typeSTRING"propertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuedatatypeϙvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValueedatautypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value'hdata7htypeSvalueBhtypeSCALARhpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Value2data2typevalue A2typeSCALAR2propertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuedataÜtypeߜvaluetypeBOOLpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];Value̝data̝typevalue̝typeSCALAR̝propertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValueSdatactype|valuetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];Value(idata8itypeTvalueitypeSCALARipropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value;data ;type&value;typeSCALAR;propertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];Valueʠ dataڠ typevalue typeSCALAR propertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Valueסdataסtype¡value?סtypeSCALARסpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValuejdataztypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value:xdataJxtypecvaluextypeSTRINGxdataTypeGroupsideCivilianEntities֣AttributesidatlOffsetJNĢitemsItem0 Item1ƤItem21dataTypeObjectPositionInfosideCivilianflagsAttributesidtypeC_Bob_VRatlOffset#<Ƥposition]7F^_H@FanglesG?ƤdataTypeWaypointposition[nBF[J@=)FEffects+showWPNEVERidtypeMove11dataTypeWaypointposition~}BF%>@-FEffectsshowWPNEVERidtypeMovedataTypeGroupsideCivilianEntitiesAttributesƧidatlOffsetJŅitemsItem03Item1Item2[ƧdataTypeObjectPositionInfosideCivilianflagsAttributesid typeC_Bob_VRatlOffset#<position7FG@FanglesF@dataTypeWaypointpositioniMBFІ@@&}FEffectsUshowWPNEVERidtypeMove[[dataTypeWaypointpositionBF:@FEffectsshowWPNEVERidtypeMoveƧƧ̧dataTypeTriggerposition7F¼B@āFangle׍E@Attributes9id typeEmptyDetectorconditioncall{triggeractivated safety_off}sizeA @sizeB@timeoutDDDdataTypeLayernamePhase 9 - 0035 - Techs 'n' Tanx DeluxestateEntitiesid{atlOffset,Ĩ items Item0Item1eItem2Item3Item4{Item5Item6Item7Item82Item9dataTypeLogicPositionInfoid}typeAdmiral_OndemandCampZoneatlOffset?CustomAttributesFeposition7Fv@?ӀFanglesL:=FAttribute0BAttribute1Attribute2ѬAttribute3Attribute4UAttribute5Attribute6߯Attribute7Attribute8~Attribute9VAttribute10(Attribute11Attribute12ĴAttribute13nAttributesepropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValueѫdatatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValueѬdataѬtypevalueѬtypeSCALARѬpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValueRdatabtype~valueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValueUdata$Utype@valueBUtypeSCALARUpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Valueޮdatatype value AtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value߯data߯type̯value߯typeBOOL߯propertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValuexdatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];Value@~dataP~typeivalue~typeSTRING~propertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValueVdata%VtypeAvalueVtypeSCALARVpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Value(data(typevalue(typeSCALAR(propertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];ValuedatadztypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];ValueĴdataĴtypevalue?ĴtypeSCALARĴpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];ValueWdatagtypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value'edata7etypePvalueetypeSTRINGedataTypeGroupsideCivilianEntitiesöAttributesyid~atlOffsetJNitemsItem0Item1Item2ydataTypeObjectPositionInfoesideCivilianflagsAttributesidtypeC_Bob_VRposition';7FY@Q؀FanglesJ?dataTypeWaypointposition!AFІ@@4xFEffectsshowWPNEVERidtypeMovedataTypeWaypointpositionÂBF>W?@(FEffectssshowWPNEVERidtypeMoveyydataTypeGroupsideCivilianEntitiesݸAttributesidatlOffsetJNęitemsItem0Item1Item2(dataTypeObjectPositionInfosideCivilianflagsAttributesidtypeC_Bob_VRposition97FT@+̀FanglesJ?dataTypeWaypointposition|AFІ@@C}FEffects"showWPNEVERidtypeMove((dataTypeWaypointpositionIqBF(y7@~FEffectsshowWPNEVERidtypeMovedataTypeTriggerposition})7FuW@ӀFangleJ?Attributesid|typeEmptyDetectoratlOffset;{conditioncall{triggeractivated safety_off}sizeAshAsizeB+@timeout@E@E@E{dataTypeGroupsideCivilianEntitiesٻAttributesidatlOffsetJNitemsItem0Item1dataTypeObjectPositionInfopsideCivilianflagsAttributesidtypeC_Bob_VRposition>7F"X@=ҀFanglesJ?dataTypeWaypointposition{BFq;@?FEffectsshowWPNEVERidtypeMovedataTypeLogicPositionInfoidtypeAdmiral_OndemandCampZoneatlOffset?CustomAttributesϽposition2bSFQ@6ǁFangles\%@ϽAttribute0˾Attribute1Attribute2ZAttribute3Attribute4Attribute5Attribute6hAttribute7BAttribute8Attribute9Attribute10Attribute11Attribute12MAttribute13!nAttributespropertyAdmiral_OndemandCampZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValueZdatajtypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValueZdata)ZtypeEvalueZtypeSCALARZpropertyAdmiral_OndemandCampZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValuedatatypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];ValuedatatypevalueBtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_CampDelayexpression_this setVariable ['Admiral_CampDelay',_value,true];Valuegdatawtypevalue AtypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];Value)hdata9htypeUvaluehtypeBOOLhpropertyAdmiral_OndemandCampZone_Admiral_CampTechnicalPoolexpression_this setVariable ['Admiral_CampTechnicalPool',_value,true];ValueBdataBtype-valueBtypeSCALARBpropertyAdmiral_OndemandCampZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_OndemandCampZone_Admiral_CampInfantryPoolexpression_this setVariable ['Admiral_CampInfantryPool',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_TechnicalWaveexpression_this setVariable ['Admiral_TechnicalWave',_value,true];Valuepdatatypevalue?typeSCALARpropertyAdmiral_OndemandCampZone_Admiral_InfantryWaveexpression_this setVariable ['Admiral_InfantryWave',_value,true];Value@dataPtypelvaluetypeSCALARpropertyAdmiral_OndemandCampZone_Admiral_ArmourWaveexpression_this setVariable ['Admiral_ArmourWave',_value,true];Value MdataMtype8valueMtypeSCALARMpropertyAdmiral_OndemandCampZone_Admiral_CampArmourPoolexpression_this setVariable ['Admiral_CampArmourPool',_value,true];Value!data!type value!typeSCALAR!propertyAdmiral_OndemandCampZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValuedatatypevaluetypeSTRINGdataTypeGroupsideCivilianEntitiesLAttributesidatlOffsetJNitemsItem0Item1,Item2dataTypeObjectPositionInfosideCivilianflagsAttributes&idtypeC_Bob_VR,position4:SF:@Fanglesh@&,dataTypeWaypointposition|CFІ@@gD}FEffectsshowWPNEVERidtypeMovedataTypeWaypointpositionrwBF7@FEffectsshowWPNEVERidtypeMovedataTypeGroupsideCivilianEntitiesfAttributes,idatlOffsetJN2itemsItem0Item1VItem2,dataTypeObjectPositionInfosideCivilianflagsAttributesPidtypeC_Bob_VRatlOffsetVpositionI/SF|@tFanglesh@PVdataTypeWaypointpositionCFІ@@G/FEffectsshowWPNEVERidtypeMovedataTypeWaypointpositionpBF9@ FEffects&showWPNEVERidtypeMove,,2dataTypeTriggerpositionCSF@DFanglez@AttributesidtypeEmptyDetectorconditioncall{triggeractivated safety_off}sizeA}?@sizeB@timeout@E@E@EdataTypeGroupsideCivilianEntitiesbAttributesidatlOffsetJNĨitemsItem0Item17dataTypeObjectPositionInfosideCivilianflagsAttributes1idtypeC_Bob_VR7position50SF@Fanglesh@17dataTypeWaypointposition|rBFv8@FEffectsshowWPNEVERidtypeMovedataTypeLayernameRescue SpawnsstateEntitiesidatlOffset@itemsItem0fItem1FItem2Item3Item4Item5Item6dataTypeTriggerpositionFK>@OFangleR?AttributesidtypeEmptyDetectoratlOffset5@Fnameresc_1conditioncall{this}sizeA@sizeBJDsizeCAactivationByWESTFdataTypeTriggerpositionF@ĤFangleѾk@AttributesidtypeEmptyDetectoratlOffset/conditioncall{triggeractivated resc_1;}sizeAʣCsizeBCisRectangledataTypeLogicPositionInfoidtypeAdmiral_PatrolZoneCustomAttributespositionF.?F Attribute0XAttribute1Attribute2Attribute3Attribute4KAttribute5Attribute6Attribute7Attribute8Attribute9LnAttributes propertyAdmiral_PatrolZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_PatrolZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_PatrolZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];ValueNdata^typezvalueBtypeSCALARpropertyAdmiral_PatrolZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value KdataKtype6valueBKtypeSCALARKpropertyAdmiral_PatrolZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuedatatypevaluetypeBOOLpropertyAdmiral_PatrolZone_Admiral_PatrolArmourPoolexpression_this setVariable ['Admiral_PatrolArmourPool',_value,true];ValuedatatypevaluetypeSCALARpropertyAdmiral_PatrolZone_Admiral_PatrolTechnicalPoolexpression_this setVariable ['Admiral_PatrolTechnicalPool',_value,true];Valuendata~typevalue?typeSCALARpropertyAdmiral_PatrolZone_Admiral_PatrolInfantryPoolexpression_this setVariable ['Admiral_PatrolInfantryPool',_value,true];ValueDdataTtypepvalue@typeSCALARpropertyAdmiral_PatrolZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];ValueLdataLtype7valueLtypeSTRINGLpropertyAdmiral_PatrolZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValuedatatypevaluetypeSTRINGdataTypeTriggerposition$F0@R(~FangleB@AttributesidtypeEmptyDetectoratlOffset"@conditioncall{triggeractivated resc_1;}sizeA͈0CsizeB)}BisRectangledataTypeLogicPositionInfo]idtypeAdmiral_PatrolZoneatlOffset,6=@CustomAttributes}position(FH@^~F} Attribute05Attribute1Attribute2Attribute3lAttribute4(Attribute5Attribute6Attribute7Attribute8bAttribute9)nAttributes propertyAdmiral_PatrolZone_Admiral_ZoneNameexpression_this setVariable ['Admiral_ZoneName',_value,true];ValuedatatypevaluetypeSTRINGpropertyAdmiral_PatrolZone_Admiral_Angleexpression_this setVariable ['Admiral_Angle',_value,true];ValueodatatypevaluetypeSCALARpropertyAdmiral_PatrolZone_Admiral_AxisAexpression_this setVariable ['Admiral_AxisA',_value,true];Value+ldata;ltypeWvalueBltypeSCALARlpropertyAdmiral_PatrolZone_Admiral_AxisBexpression_this setVariable ['Admiral_AxisB',_value,true];Value(data(typevalueB(typeSCALAR(propertyAdmiral_PatrolZone_Admiral_Shapeexpression_this setVariable ['Admiral_Shape',_value,true];ValuedatatypevaluetypeBOOLpropertyAdmiral_PatrolZone_Admiral_PatrolArmourPoolexpression_this setVariable ['Admiral_PatrolArmourPool',_value,true];ValuesdatatypevaluetypeSCALARpropertyAdmiral_PatrolZone_Admiral_PatrolTechnicalPoolexpression_this setVariable ['Admiral_PatrolTechnicalPool',_value,true];ValueKdata[typewvaluetypeSCALARpropertyAdmiral_PatrolZone_Admiral_PatrolInfantryPoolexpression_this setVariable ['Admiral_PatrolInfantryPool',_value,true];Value!bdata1btypeMvalue?btypeSCALARbpropertyAdmiral_PatrolZone_Admiral_ZoneTemplateexpression_this setVariable ['Admiral_ZoneTemplate',_value,true];Value)data)typevalue)typeSTRING)propertyAdmiral_PatrolZone_Admiral_UnitTemplateexpression_this setVariable ['Admiral_UnitTemplate',_value,true];ValuedatatypevaluetypeSTRINGdataTypeTriggerpositionQ$F@qyFangleB@AttributesmidtypeEmptyDetectoratlOffsetVconditioncall{triggeractivated resc_1;}sizeA News of a major Russian offensive into the Clafghan valley reached us late last night. The enemy are expected to hit early this morning, just before dawn. Our main forces, located further into the mountains, are scrambling to entrench and harden their defensive positions as we lack the offensive capabilities to meet them in force and head-on. As the outermost platoon, our job is to delay the enemy for as long as possible and allow our allies the time they need to shore up, then rescue us. The town of Ovallestan is a key position to controlling the routes in and out of this harsh terrain, which means Ivan needs this town. We intend to make him pay dearly for the pleasure.

ENEMY FORCES
We are facing the brunt of a major Russian assault. Expect them to spare no expense, up to and including heavy armour and attack helicopters.

FRIENDLY FORCES
We are all for now. A detachment up the valley are mobilising to reinforce and rescue us but will take some time to reach us. "]]; // Mission player createDiaryRecord ["Diary", ["Mission","
Delay the Russian assault for as long as possible. In order to progress further into the valley they need to control our town.

Extra ammunition has been placed in sheds and garages here, here and here. "]]; // Execution player createDiaryRecord ["Diary", ["Execution","
COMMANDER'S INTENT
Ovallestan offers good, elevated defensive positions. Make the town work for you, dig in keep the enemy occupied for as long as possible.

The Russians are going to try to apply as much pressure as possible, expect the assault to come from all directions.

Do not extend your defences beyond the marked circle, this crossroads is to be our last stand. "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by Dextrus "]]; // CIVFOR Notes // Situation player createDiaryRecord ["Diary", ["Situation","
*** Insert general information about the situation here.***

ENEMY FORCES
*** Insert information about enemy forces here.***

FRIENDLY FORCES
*** Insert information about friendly forces here.*** "]]; // Mission player createDiaryRecord ["Diary", ["Mission","
*** Insert the mission here. *** "]]; // Execution player createDiaryRecord ["Diary", ["Execution","
COMMANDER'S INTENT
*** Insert very short summary of plan here. ***

MOVEMENT PLAN
*** Insert movement instructions here. ***

FIRE SUPPORT PLAN
*** Insert fire support instructions here. ***

SPECIAL TASKS
*** Insert instructions for specific units here. *** "]]; // Administration player createDiaryRecord ["Diary", ["Administration","
*** Insert information on administration and logistics here. *** "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by "]]; // INDFOR Notes // Situation player createDiaryRecord ["Diary", ["Situation","
*** Insert general information about the situation here.***

ENEMY FORCES
*** Insert information about enemy forces here.***

FRIENDLY FORCES
*** Insert information about friendly forces here.*** "]]; // Mission player createDiaryRecord ["Diary", ["Mission","
*** Insert the mission here. *** "]]; // Execution player createDiaryRecord ["Diary", ["Execution","
COMMANDER'S INTENT
*** Insert very short summary of plan here. ***

MOVEMENT PLAN
*** Insert movement instructions here. ***

FIRE SUPPORT PLAN
*** Insert fire support instructions here. ***

SPECIAL TASKS
*** Insert instructions for specific units here. *** "]]; // Administration player createDiaryRecord ["Diary", ["Administration","
*** Insert information on administration and logistics here. *** "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by "]]; // OPFOR Notes // Situation player createDiaryRecord ["Diary", ["Situation","
*** Insert general information about the situation here.***

ENEMY FORCES
*** Insert information about enemy forces here.***

FRIENDLY FORCES
*** Insert information about friendly forces here.*** "]]; // Mission player createDiaryRecord ["Diary", ["Mission","
*** Insert the mission here. *** "]]; // Execution player createDiaryRecord ["Diary", ["Execution","
COMMANDER'S INTENT
*** Insert very short summary of plan here. ***

MOVEMENT PLAN
*** Insert movement instructions here. ***

FIRE SUPPORT PLAN
*** Insert fire support instructions here. ***

SPECIAL TASKS
*** Insert instructions for specific units here. *** "]]; // Administration player createDiaryRecord ["Diary", ["Administration","
*** Insert information on administration and logistics here. *** "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by "]]; ?@/a d5