From 9b1eb3cb070bd24791eed0b26afda69c96369a00 Mon Sep 17 00:00:00 2001 From: Zarenx <111392464+Zarenx@users.noreply.github.com> Date: Sun, 11 Feb 2024 20:24:09 +0100 Subject: [PATCH 01/14] Disabled Artillery Computer - SOP for Charlie is to not have artillery computer on the 60mm Mortar to force the team do to the calculations via rangetable and map tools. --- cba_settings.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cba_settings.sqf b/cba_settings.sqf index fab95e6a1..ef9b08f85 100644 --- a/cba_settings.sqf +++ b/cba_settings.sqf @@ -60,7 +60,7 @@ force force ace_arsenal_enableIdentityTabs = true; // ACE Artillery force force ace_artillerytables_advancedCorrections = false; -force force ace_artillerytables_disableArtilleryComputer = false; +force force ace_artillerytables_disableArtilleryComputer = true; force force ace_mk6mortar_airResistanceEnabled = false; force force ace_mk6mortar_allowCompass = true; force force ace_mk6mortar_allowComputerRangefinder = true; From ec26b6956c076b4cc17aeefa5d7f285e27bcac14 Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Sun, 11 Feb 2024 16:17:17 -0500 Subject: [PATCH 02/14] Nonsense --- cba_settings.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cba_settings.sqf b/cba_settings.sqf index ef9b08f85..fbf1a920e 100644 --- a/cba_settings.sqf +++ b/cba_settings.sqf @@ -44,7 +44,7 @@ force force ace_vehicle_damage_removeAmmoDuringCookoff = true; // ACE AI force force ace_ai_assignNVG = false; -// ACE Arsenal +// ACE Arsenals force force ace_arsenal_allowDefaultLoadouts = true; force force ace_arsenal_allowSharedLoadouts = true; //ace_arsenal_camInverted = false; From a0b48211a4583c719162ec7b8c2330ccd7bcc064 Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Sun, 11 Feb 2024 16:17:34 -0500 Subject: [PATCH 03/14] Undo Nonsense --- cba_settings.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cba_settings.sqf b/cba_settings.sqf index fbf1a920e..ef9b08f85 100644 --- a/cba_settings.sqf +++ b/cba_settings.sqf @@ -44,7 +44,7 @@ force force ace_vehicle_damage_removeAmmoDuringCookoff = true; // ACE AI force force ace_ai_assignNVG = false; -// ACE Arsenals +// ACE Arsenal force force ace_arsenal_allowDefaultLoadouts = true; force force ace_arsenal_allowSharedLoadouts = true; //ace_arsenal_camInverted = false; From 37f482c4c8051d9fdf1c7add5e002fbd0107d0f6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brostr=C3=B6m=2EA=20=7C=20Evul?= Date: Mon, 12 Feb 2024 07:44:45 +0100 Subject: [PATCH 04/14] Added disable and enabled to allowed pr title (#1139) --- tools/checkPullRequestTitle.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/checkPullRequestTitle.sh b/tools/checkPullRequestTitle.sh index aab099aaa..79a7ded8a 100755 --- a/tools/checkPullRequestTitle.sh +++ b/tools/checkPullRequestTitle.sh @@ -19,7 +19,7 @@ if [[ $string == "remove"*".sqf" ]]; then _throw "Bad name"; fi # Descriptor -valid_list=(Added Fixed Adjusted Changed Updated Improved Cleaned Replaced Removed Reverted Revert) +valid_list=(Added Fixed Adjusted Changed Updated Improved Cleaned Replaced Removed Reverted Revert Enabled Disabled) missing_descriptor_error="Missing descriptor [${valid_list[@]}]" _valid=false for contain in ${valid_list[@]}; do From 82668a182a6aef4a261450df9d0ae88e041b9d6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brostr=C3=B6m=2EA=20=7C=20Evul?= Date: Mon, 12 Feb 2024 07:46:27 +0100 Subject: [PATCH 05/14] Changed player arsenal whitelist to be created on loadout application instead of each time arsenal is opened (#1137) --- cScripts/functions/gear/fn_gear_applyLoadout.sqf | 3 +++ cScripts/functions/init/fn_init_aceArsenal.sqf | 7 +++++++ cScripts/functions/systems/fn_addArsenal.sqf | 2 +- 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/cScripts/functions/gear/fn_gear_applyLoadout.sqf b/cScripts/functions/gear/fn_gear_applyLoadout.sqf index 8211ddc1d..4888406a5 100644 --- a/cScripts/functions/gear/fn_gear_applyLoadout.sqf +++ b/cScripts/functions/gear/fn_gear_applyLoadout.sqf @@ -89,6 +89,9 @@ _unit selectWeapon (primaryWeapon _unit); // Lower the weapon if !(weaponLowered _unit) then {_unit action ["WeaponOnBack", _unit]}; +if (GVAR(isPlayer)) then { + [QEGVAR(StagingArsenal,SaveWhitelist)] call CBA_fnc_localEvent; +}; if (_loadConfig) then { INFO_2("Gear", "Applying postLoadout code for %1 [%2]", _unit, typeOf _unit); diff --git a/cScripts/functions/init/fn_init_aceArsenal.sqf b/cScripts/functions/init/fn_init_aceArsenal.sqf index 83d0d2440..4a9972761 100644 --- a/cScripts/functions/init/fn_init_aceArsenal.sqf +++ b/cScripts/functions/init/fn_init_aceArsenal.sqf @@ -37,3 +37,10 @@ GVAR(StagingArsenalOpen) = false; [QEGVAR(StagingArsenal,displayOpen), { GVAR(StagingArsenalOpen) = true; }] call CBA_fnc_addEventHandler; + +[QEGVAR(StagingArsenal,SaveWhitelist), { + private _items = call FUNC(getArsenalWhitelist); + SETVAR(player,EGVAR(Player,ArsenalWhitelist), _items); +}] call CBA_fnc_addEventHandler; + + diff --git a/cScripts/functions/systems/fn_addArsenal.sqf b/cScripts/functions/systems/fn_addArsenal.sqf index c8085b97d..5a1105855 100644 --- a/cScripts/functions/systems/fn_addArsenal.sqf +++ b/cScripts/functions/systems/fn_addArsenal.sqf @@ -24,7 +24,7 @@ private _arsenalStatement = { call FUNC(addDefaultArsenalLoadout); waitUntil { count ace_arsenal_defaultLoadoutsList != 0 }; - private _items = call FUNC(getArsenalWhitelist); + private _items = GETVAR(player,EGVAR(Player,ArsenalWhitelist), []); INFO_3("Staging Arsenal", "Whitleist containing %1 items added to %2 (%3)", count _items, player, typeOf player); if (count _items == 0) exitWith { [ From 215dca89ec1c9b79d2c1b9224794a42fe56537b2 Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Mon, 12 Feb 2024 08:47:53 -0500 Subject: [PATCH 06/14] Added new marksman optics and flashlights (#1134) --- .../Loadouts/CfgLoadouts_Bravo_Viking.hpp | 2 +- .../Loadouts/CfgLoadouts_Charlie_Squad.hpp | 2 +- cScripts/functions/init/fn_init_logistics.sqf | 54 ++++++++++++++----- 3 files changed, 43 insertions(+), 15 deletions(-) diff --git a/cScripts/Loadouts/CfgLoadouts_Bravo_Viking.hpp b/cScripts/Loadouts/CfgLoadouts_Bravo_Viking.hpp index 49eb81267..e8becc6f4 100644 --- a/cScripts/Loadouts/CfgLoadouts_Bravo_Viking.hpp +++ b/cScripts/Loadouts/CfgLoadouts_Bravo_Viking.hpp @@ -88,7 +88,7 @@ class Cav_B_B_Scout_DMR_F_Local: Cav_B_B_Scout_Base_F { displayName = "Designated Marksman"; scope = 2; category[] += {"cScripts_Loadout_Cat_Bravo_Viking_Squad"}; - loadout = [["rhs_weap_sr25_ec","","rhsusf_acc_anpeq15side_bk","rhsusf_acc_M8541_mrds",["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",20],[],"rhsusf_acc_harris_bipod"],[],[],["USP_G3C_RS_KP_OR_MC",[["ACE_packingBandage",10],["ACE_quikclot",10],["ACE_tourniquet",4],["kat_chestSeal",2],["kat_guedel",1],["ACE_microDAGR",1],["ACE_MapTools",1],["ACE_Chemlight_Shield",1],["ACE_Chemlight_White",1,1]]],["rhsusf_spcs_ocp_sniper",[["ACE_IR_Strobe_Item",1],["HandGrenade",2,1],["SmokeShell",4,1],["ACE_IR_Strobe_Item",1],["ACE_Chemlight_IR",2,1],["rhs_mag_mk3a2",1,1],["SmokeShellPurple",1,1],["kat_Painkiller",2,10],["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",6,20]]],["USP_TACTICAL_PACK",[["ACE_wirecutter",1],["ACE_EntrenchingTool",1]]],"USP_OPS_FASTXP_TAN_MC_03","USP_MFRAME_SMC1_TAN2",["ACE_Vector","","","",[],[],""],["ItemMap","ItemAndroid","","ItemCompass","ItemWatch","USP_PVS31"]]; + loadout = [["rhs_weap_sr25_ec","","rhsusf_acc_anpeq15side_bk","optic_AMS",["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",20],[],"rhsusf_acc_harris_bipod"],[],[],["USP_G3C_RS_KP_OR_MC",[["ACE_packingBandage",10],["ACE_quikclot",10],["ACE_tourniquet",4],["kat_chestSeal",2],["kat_guedel",1],["ACE_microDAGR",1],["ACE_MapTools",1],["ACE_Chemlight_Shield",1],["ACE_Chemlight_White",1,1]]],["rhsusf_spcs_ocp_sniper",[["ACE_IR_Strobe_Item",1],["HandGrenade",2,1],["SmokeShell",4,1],["ACE_IR_Strobe_Item",1],["ACE_Chemlight_IR",2,1],["rhs_mag_mk3a2",1,1],["SmokeShellPurple",1,1],["kat_Painkiller",2,10],["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",6,20]]],["USP_TACTICAL_PACK",[["ACE_wirecutter",1],["ACE_EntrenchingTool",1]]],"USP_OPS_FASTXP_TAN_MC_03","USP_MFRAME_SMC1_TAN2",["ACE_Vector","","","",[],[],""],["ItemMap","ItemAndroid","","ItemCompass","ItemWatch","USP_PVS31"]]; }; class Cav_B_B_Scout_Rifleman_F: Cav_B_B_Scout_Base_F { displayName = "Rifleman"; diff --git a/cScripts/Loadouts/CfgLoadouts_Charlie_Squad.hpp b/cScripts/Loadouts/CfgLoadouts_Charlie_Squad.hpp index 128ce0dc8..6c2acc94a 100644 --- a/cScripts/Loadouts/CfgLoadouts_Charlie_Squad.hpp +++ b/cScripts/Loadouts/CfgLoadouts_Charlie_Squad.hpp @@ -83,7 +83,7 @@ class Cav_B_C_Marksman_F_Local: Cav_B_Charlie_base_F { displayName = "Designated Marksman"; scope = 2; category[] += {"cScripts_Loadout_Cat_Charlie_Squad"}; - loadout = [["rhs_weap_sr25_ec","","rhsusf_acc_anpeq15side_bk","rhsusf_acc_M8541_mrds",["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",20],[],"rhsusf_acc_harris_bipod"],[],[],["USP_G3C_RS_KP_OR_MC",[["ACE_packingBandage",10],["ACE_quikclot",10],["kat_chestSeal",2],["kat_guedel",1],["ACE_tourniquet",4],["ACE_microDAGR",1],["ACE_MapTools",1],["ACE_Chemlight_Shield",1],["ACE_Chemlight_White",1,1]]],["USP_CRYE_JPC_DMB",[["HandGrenade",2,1],["SmokeShell",4,1],["SmokeShellPurple",1,1],["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",6,20]]],["USP_ZIPON_PACK_CPC_MC",[["ACE_wirecutter",1],["ACE_EntrenchingTool",1]]],"USP_OPSCORE_FASTMTC_GSW","",["ACE_Vector","","","",[],[],""],["ItemMap","ItemAndroid","","ItemCompass","ItemWatch","USP_PVS15"]]; + loadout = [["rhs_weap_sr25_ec","","rhsusf_acc_anpeq15side_bk","optic_AMS",["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",20],[],"rhsusf_acc_harris_bipod"],[],[],["USP_G3C_RS_KP_OR_MC",[["ACE_packingBandage",10],["ACE_quikclot",10],["kat_chestSeal",2],["kat_guedel",1],["ACE_tourniquet",4],["ACE_microDAGR",1],["ACE_MapTools",1],["ACE_Chemlight_Shield",1],["ACE_Chemlight_White",1,1],["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",1,20]]],["USP_CRYE_JPC_DMB",[["HandGrenade",2,1],["SmokeShell",4,1],["SmokeShellPurple",1,1],["rhsusf_20Rnd_762x51_SR25_m118_special_Mag",5,20]]],["USP_ZIPON_PACK_CPC_MC",[["ACE_wirecutter",1],["ACE_EntrenchingTool",1],["ACE_splint",4],["kat_Painkiller",2,10]]],"USP_OPSCORE_FASTMTC_GSW","",["ACE_Vector","","","",[],[],""],["ItemMap","ItemAndroid","","ItemCompass","ItemWatch","USP_PVS15"]]; insignia = "cav_insignia_specialized_cls"; abilityMedic = 0; icon = "iconManMedic"; diff --git a/cScripts/functions/init/fn_init_logistics.sqf b/cScripts/functions/init/fn_init_logistics.sqf index 970e34b14..3e6247c0c 100644 --- a/cScripts/functions/init/fn_init_logistics.sqf +++ b/cScripts/functions/init/fn_init_logistics.sqf @@ -1672,6 +1672,13 @@ private _dataArray = [ ["rhs_weap_mk18_KAC_wd", 0], //Attachments + ["rhsusf_acc_anpeq15side", 0], + ["rhsusf_acc_anpeq15side_bk", 0], + ["rhsusf_acc_anpeq15A", 0], + ["rhsusf_acc_anpeq16A", 0], + ["rhsusf_acc_wmx", 0], + ["rhsusf_acc_wmx_bk", 0], + ["acc_flashlight", 0], ["rhsusf_acc_sf3p556", 0], ["rhsusf_acc_eotech", 0], ["rhsusf_acc_g33_t1", 0], @@ -1767,7 +1774,14 @@ private _dataArray = [ ["rhsusf_acc_tdstubby_tan", 0], ["rhsusf_acc_grip3", 0], ["rhsusf_acc_grip3_tan", 0], - ["rhsusf_acc_eotech_xps3", 0] + ["rhsusf_acc_eotech_xps3", 0], + ["rhsusf_acc_anpeq15side", 0], + ["rhsusf_acc_anpeq15side_bk", 0], + ["rhsusf_acc_anpeq15A", 0], + ["rhsusf_acc_anpeq16A", 0], + ["rhsusf_acc_wmx", 0], + ["rhsusf_acc_wmx_bk", 0], + ["acc_flashlight", 0] ]], ["arsenal_weap_sr25", [ ["rhs_weap_sr25_ec", 0], @@ -1779,15 +1793,16 @@ private _dataArray = [ //Attachments ["rhsusf_acc_harris_bipod", 0], - ["rhsusf_acc_m8541_d", 0], - ["rhsusf_acc_m8541_mrds", 0], - ["rhsusf_acc_elcan_ard", 0], - ["rhsusf_acc_su230a", 0], - ["rhsusf_acc_su230a_c", 0], - ["rhsusf_acc_su230a_mrds", 0], - ["rhsusf_acc_su230a_mrds_c", 0], - ["rhsusf_acc_m8541_wd", 0], - ["rhsusf_acc_acog_mdo", 0] + ["rhsusf_acc_anpeq15side", 0], + ["rhsusf_acc_anpeq15side_bk", 0], + ["rhsusf_acc_anpeq15A", 0], + ["rhsusf_acc_anpeq16A", 0], + ["rhsusf_acc_wmx", 0], + ["rhsusf_acc_wmx_bk", 0], + ["acc_flashlight", 0], + ["optic_AMS", 0], + ["optic_AMS_khk", 0], + ["optic_AMS_snd", 0] ]], ["arsenal_weap_m240", [ ["rhs_weap_m240B", 0], @@ -1804,12 +1819,18 @@ private _dataArray = [ ["rhsusf_acc_compm4", 0], ["rhsusf_acc_t1_high", 0], ["rhsusf_acc_elcan_ard", 0], - ["rhsusf_acc_anpeq16a", 0], ["rhsusf_acc_su230a", 0], ["rhsusf_acc_su230a_c", 0], ["rhsusf_acc_su230a_mrds", 0], ["rhsusf_acc_su230a_mrds_c", 0], - ["rhsusf_acc_acog_mdo", 0] + ["rhsusf_acc_acog_mdo", 0], + ["rhsusf_acc_anpeq15side", 0], + ["rhsusf_acc_anpeq15side_bk", 0], + ["rhsusf_acc_anpeq15A", 0], + ["rhsusf_acc_anpeq16A", 0], + ["rhsusf_acc_wmx", 0], + ["rhsusf_acc_wmx_bk", 0], + ["acc_flashlight", 0] ]], ["arsenal_weap_m249", [ ["rhs_weap_m249_pip", 0], @@ -1845,7 +1866,14 @@ private _dataArray = [ ["rhsusf_acc_kac_grip_saw_bipod", 0], ["rhsusf_acc_grip4", 0], ["rhsusf_acc_grip4_bipod", 0], - ["rhsusf_acc_saw_lw_bipod", 0] + ["rhsusf_acc_saw_lw_bipod", 0], + ["rhsusf_acc_anpeq15side", 0], + ["rhsusf_acc_anpeq15side_bk", 0], + ["rhsusf_acc_anpeq15A", 0], + ["rhsusf_acc_anpeq16A", 0], + ["rhsusf_acc_wmx", 0], + ["rhsusf_acc_wmx_bk", 0], + ["acc_flashlight", 0] ]] ]; From bd0f9c451f7719face51dc6e4b86e7ab542c799d Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Sat, 2 Mar 2024 17:55:51 -0500 Subject: [PATCH 07/14] Added MH-47G to vehicles module (#1144) --- cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf | 6 ++++++ cScripts/functions/vehicle/fn_vehicle_addInventory.sqf | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf b/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf index 21c18bc0d..ea949362b 100644 --- a/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf +++ b/cScripts/functions/vehicle/fn_vehicle_addFunctions.sqf @@ -94,6 +94,12 @@ if (_vehicle iskindOf "vtx_MH60M") then { [_vehicle] call FUNC(addEscapeWreck); }; +if (_vehicle iskindOf "TF373_SOAR_MH47G_Base") then { + [_vehicle] call FUNC(addLineJump); + [_vehicle] call FUNC(addEscapeWreck); +}; + + // Below functions only gets applied to approved factions diff --git a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf index ac56eb0f3..0b4fa37c7 100644 --- a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf +++ b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf @@ -327,6 +327,12 @@ if (_vehicle iskindOf "Heli_Transport_02_base_F") then { ] call FUNC(addCargo); }; +if (_vehicle iskindOf "TF373_SOAR_MH47G_Base") then { + [_vehicle, + GET_CONTAINER("vehicle_heliTransport") + ] call FUNC(addCargo); +}; + if (_vehicle iskindOf "vtx_MH60M") then { [_vehicle, GET_CONTAINER(vehicle_heliTransport) From fd8d1722aa26ced08ffb95019879be9d2e2ce524 Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Sat, 2 Mar 2024 17:56:36 -0500 Subject: [PATCH 08/14] Added a unified resupply module (#1143) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Broström.A | Evul --- cScripts/CfgFunctions.hpp | 4 +- .../functions/init/fn_init_zenModuels.sqf | 7 - .../logistics/fn_doStarterCrateSupplies.sqf | 10 +- .../functions/logistics/fn_doSupplyCrate.sqf | 55 +++++--- .../functions/mission/fn_doSupplyCrate.sqf | 128 ------------------ .../fn_zenModule_createSupplyCrate.sqf | 44 +++--- .../vehicle/fn_vehicle_addInventory.sqf | 58 ++++---- cScripts/script_macros.hpp | 4 +- 8 files changed, 101 insertions(+), 209 deletions(-) delete mode 100644 cScripts/functions/mission/fn_doSupplyCrate.sqf diff --git a/cScripts/CfgFunctions.hpp b/cScripts/CfgFunctions.hpp index c55fd33e6..75b0e02aa 100644 --- a/cScripts/CfgFunctions.hpp +++ b/cScripts/CfgFunctions.hpp @@ -45,6 +45,7 @@ class cScripts { class doStarterCrateSupplies {}; class doFieldHospital {}; + class doSupplyCrate {}; class doEmptyCrate {}; @@ -102,7 +103,6 @@ class cScripts { class addStagingZone {}; class doStarterCrate {}; - class doSupplyCrate {}; class makeAgent {}; }; @@ -202,8 +202,6 @@ class cScripts { file = "cScripts\functions\modules"; class zenModule_EnableUnitSimulation {}; - class zenModule_CreateFieldHospital {}; - class zenModule_CreateMedicalCrate {}; class zenModule_CreateStarterCrate {}; class zenModule_CreateSupplyCrate {}; diff --git a/cScripts/functions/init/fn_init_zenModuels.sqf b/cScripts/functions/init/fn_init_zenModuels.sqf index c9c27e2f4..2a8e61ade 100644 --- a/cScripts/functions/init/fn_init_zenModuels.sqf +++ b/cScripts/functions/init/fn_init_zenModuels.sqf @@ -64,13 +64,6 @@ INFO("init", "Initializing custom Zen Modules."); "\A3\ui_f\data\map\vehicleicons\iconCrate_ca.paa" ] call zen_custom_modules_fnc_register; -["7Cav Logistics", "Spawn Medical Crate", - { - params ["_modulePos", "_objectPos"]; - [_modulePos, _objectPos] call EFUNC(zenModule,CreateMedicalCrate); - }, - "\z\ACE\addons\medical_gui\ui\cross.paa" -] call zen_custom_modules_fnc_register; ["7Cav Utilities", "Apply Loadout", { diff --git a/cScripts/functions/logistics/fn_doStarterCrateSupplies.sqf b/cScripts/functions/logistics/fn_doStarterCrateSupplies.sqf index f454aa882..f4d82f2ad 100644 --- a/cScripts/functions/logistics/fn_doStarterCrateSupplies.sqf +++ b/cScripts/functions/logistics/fn_doStarterCrateSupplies.sqf @@ -43,22 +43,22 @@ private _container = switch (_companySelector) do { case "TITAN"; case "RAIDER"; case "SPARROW"; - case "ALPHA": {GET_CONTAINER(alpha_company);}; + case "ALPHA": {GET_CONTAINER("alpha_company");}; - case "ATLAS": {GET_CONTAINER(bravo_company_atlas);}; + case "ATLAS": {GET_CONTAINER("bravo_company_atlas");}; case "SABER"; case "VIKING"; - case "BRAVO": {GET_CONTAINER(bravo_company_viking);}; + case "BRAVO": {GET_CONTAINER("bravo_company_viking");}; case "BANDIT"; case "MISFIT"; - case "CHARLIE": {GET_CONTAINER(charlie_company);}; + case "CHARLIE": {GET_CONTAINER("charlie_company");}; case "FULL"; case "ALL": { private _fullContainer = []; { - private _items = _x call EFUNC(logistics,getContainer); + private _items = GET_CONTAINER(_x); _fullContainer append _items; } forEach ["alpha_company", "bravo_company_atlas", "bravo_company_viking", "charlie_company"]; }; diff --git a/cScripts/functions/logistics/fn_doSupplyCrate.sqf b/cScripts/functions/logistics/fn_doSupplyCrate.sqf index 16f8ccbae..04ae8aee1 100644 --- a/cScripts/functions/logistics/fn_doSupplyCrate.sqf +++ b/cScripts/functions/logistics/fn_doSupplyCrate.sqf @@ -1,40 +1,58 @@ #include "..\script_component.hpp"; /* - * Author: CPL.Brostrom.A + * Author: CPL.Brostrom.A, J.Turn * This populats a given object with items. * Use for mission resupplies. * * Arguments: - * 0: Crate - * 1: Scale cargo ammount (Default: 1) + * 0: Module Position (Default: [0.0,0.0,0.0]) + * 1: Crate Type (Default: "crate_resupply_general") * * Example: - * [this,0.5] call cScripts_fnc_doSupplyCrate; - * [this,1] call cScripts_fnc_doSupplyCrate; + * [[0.0,0.0,0.0],"crate_resupply_general"] call cScripts_fnc_doSupplyCrate; + * [[0.0,0.0,0.0],"crate_medicalAtlas"] call cScripts_fnc_doSupplyCrate; */ if (!isServer) exitWith {}; -params [["_crate", objNull, [objNull]]]; +params [ + ["_modulePos", [0.0,0.0,0.0], [[0.0,0.0,0.0]]], + ["_crateType","crate_resupply_general",[""]] +]; + +// Crate model changes based on container of the crate +private _crateModel = ""; -clearWeaponCargoGlobal _crate; -clearMagazineCargoGlobal _crate; -clearItemCargoGlobal _crate; -clearBackpackCargoGlobal _crate; +switch (_crateType) do { + case "crate_medicalAtlas"; + case "crate_medicalInfantry": { + _crateModel = "ace_medicalSupplyCrate"; + }; + case "crate_stinger": { + _crateModel = "Box_NATO_WpsLaunch_F"; + }; + default { + _crateModel = "Box_NATO_Equip_F"; + }; +}; + +// Create crate at module position +INFO_2("Logistics", "Spawning %1 on %2", _crateType, _modulePos); +private _crate = _crateModel createVehicle _modulePos; // Add items from logistics database entry if (isServer) then { [{!isNil{EGVAR(DATABASE,DONE)} && EGVAR(DATABASE,DONE);}, { - _this params ["_crate"]; - private _container = GET_CONTAINER(crate_resupply_general); + _this params ["_crate","_crateType"]; + private _container = GET_CONTAINER(_crateType); [_crate, _container] call FUNC(addCargo); -}, [_crate, _quickSelectScale]] call CBA_fnc_waitUntilAndExecute; +}, [_crate, _crateType]] call CBA_fnc_waitUntilAndExecute; }; -// Change ace logistics size of crate -[_crate, 1] remoteExec ["ace_cargo_fnc_setSize",0,true]; -[_crate, true] remoteExec ["ace_dragging_fnc_setDraggable",0,true]; -[_crate, true] remoteExec ["ace_dragging_fnc_setCarryable",0,true]; +// Change ace characteristics of crate +[_crate, 1] call ace_cargo_fnc_setSize; +[_crate, true] call ace_dragging_fnc_setDraggable; +[_crate, true] call ace_dragging_fnc_setCarryable; // If a correct classname add texture private _smallBox = [ @@ -70,3 +88,6 @@ if (typeOf _crate in _smallBox) then { if (typeOf _crate in _largeBox) then { _crate setObjectTextureGlobal [1, "\z\cav\addons\supplies\data\Ammobox_7CAV_co.paa"]; }; + +// Add object to the curator for all Zeuses +_crate call ace_zeus_fnc_addObjectToCurator; diff --git a/cScripts/functions/mission/fn_doSupplyCrate.sqf b/cScripts/functions/mission/fn_doSupplyCrate.sqf deleted file mode 100644 index c0ab11889..000000000 --- a/cScripts/functions/mission/fn_doSupplyCrate.sqf +++ /dev/null @@ -1,128 +0,0 @@ -#include "..\script_component.hpp"; -/* - * Author: CPL.Brostrom.A - * This populats a given object with items. - * Use for mission resupplies. - * - * Arguments: - * 0: Crate - * 1: Scale cargo ammount (Default: 1) - * - * Example: - * [this,0.5] call cScripts_fnc_doSupplyCrate; - * [this,1] call cScripts_fnc_doSupplyCrate; - */ - -if (!isServer) exitWith {}; - -params [["_crate", objNull, [objNull]]]; - -private _quaScale = 1; - -clearweaponcargoGlobal _crate; -clearmagazinecargoGlobal _crate; -clearitemcargoGlobal _crate; -clearbackpackcargoGlobal _crate; - -//================== RADIOS ==================\\ - -//================== WEAPONS ==================\\ - -_crate addWeaponCargoGlobal ["rhs_weap_M136_hedp", (_quaScale * 8)]; - -//================== AMMO ==================\\ - -_crate addMagazineCargoGlobal ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tracer_Red", (_quaScale * 50)]; -_crate addMagazineCargoGlobal ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tracer_Red", (_quaScale * 20)]; -_crate addMagazineCargoGlobal ["rhsusf_200rnd_556x45_mixed_soft_pouch", (_quaScale * 15)]; -_crate addMagazineCargoGlobal ["rhsusf_100Rnd_762x51_m62_tracer", (_quaScale * 15)]; -_crate addMagazineCargoGlobal ["MRAWS_HEAT_F",4]; -_crate addMagazineCargoGlobal ["MRAWS_HE_F",4]; -_crate addMagazineCargoGlobal ["NDS_M_6Rnd_60mm_HE_0",5]; -_crate addMagazineCargoGlobal ["NDS_M_6Rnd_60mm_HE",5]; -_crate addMagazineCargoGlobal ["NDS_M_6Rnd_60mm_SMOKE",2]; -_crate addMagazineCargoGlobal ["NDS_M_6Rnd_60mm_ILLUM",2]; -_crate addMagazineCargoGlobal ["rhs_fgm148_magazine_AT", (_quaScale * 3)]; -_crate addMagazineCargoGlobal ["rhs_fim92_mag", (_quaScale * 3)]; - -//================== GRENADES ==================\\ - -_crate addMagazineCargoGlobal ["HandGrenade", (_quaScale * 20)]; -_crate addMagazineCargoGlobal ["SmokeShell", (_quaScale * 30)]; -_crate addMagazineCargoGlobal ["SmokeShellRed", (_quaScale * 10)]; -_crate addMagazineCargoGlobal ["SmokeShellBlue", (_quaScale * 10)]; -_crate addMagazineCargoGlobal ["ACE_M84", (_quaScale * 10)]; -_crate addMagazineCargoGlobal ["rhs_mag_M433_HEDP", (_quaScale * 40)]; -_crate addMagazineCargoGlobal ["rhs_mag_m714_White", (_quaScale * 20)]; -_crate addMagazineCargoGlobal ["ACE_HUNTIR_M203", (_quaScale * 5)]; -_crate addMagazineCargoGlobal ["ACE_40mm_Flare_white", (_quaScale * 10)]; -_crate addMagazineCargoGlobal ["ACE_40mm_Flare_IR", (_quaScale * 10)]; -_crate addMagazineCargoGlobal ["ACE_Chemlight_HiRed", (_quaScale * 15)]; -_crate addMagazineCargoGlobal ["ACE_Chemlight_HiBlue", (_quaScale * 15)]; -_crate addMagazineCargoGlobal ["ACE_Chemlight_IR", (_quaScale * 15)]; - -//================== EXPLOSIVES ==================\\ - -_crate addMagazineCargoGlobal ["SatchelCharge_Remote_Mag", (_quaScale * 2)]; -_crate addMagazineCargoGlobal ["DemoCharge_Remote_Mag", (_quaScale * 4)]; - -//================== ITEMS ==================\\ - -//_crate addItemCargoGlobal ["ACE_WaterBottle", (_quaScale * 50)]; -//_crate addItemCargoGlobal ["ACE_MRE_BeefStew", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_ChickenTikkaMasala", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_ChickenHerbDumplings", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_CreamChickenSoup", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_CreamTomatoSoup", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_LambCurry", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_MeatballsPasta", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_MRE_SteakVegetables", (_quaScale * 10)]; -//_crate addItemCargoGlobal ["ACE_Chemlight_Shield", (_quaScale * 5)]; - -//================== MEDICAL ==================\\ - -_crate addItemCargoGlobal ["ACE_EarPlugs", (_quaScale * 3)]; -_crate addItemCargoGlobal ["ACE_quikclot", (_quaScale * 80)]; -_crate addItemCargoGlobal ["ACE_tourniquet", (_quaScale * 15)]; - -//================== BACKPACKS ==================\\ - -// Change ace logistics size of crate -[_crate, 1] remoteExec ["ace_cargo_fnc_setSize",0,true]; -[_crate, true] remoteExec ["ace_dragging_fnc_setDraggable",0,true]; -[_crate, true] remoteExec ["ace_dragging_fnc_setCarryable",0,true]; - -// If a correct classname add texture -private _smallBox = [ - "Box_T_East_Ammo_F", - "Box_East_Ammo_F", - "Box_NATO_Ammo_F", - - "Box_T_East_WpsSpecial_F", - "Box_East_WpsSpecial_F", - "Box_T_NATO_WpsSpecial_F", - "Box_NATO_WpsSpecial_F", - - "Box_East_AmmoOrd_F", - "Box_NATO_AmmoOrd_F", - - "Box_T_East_Wps_F", - "Box_East_Wps_F", - "Box_T_NATO_Wps_F", - "Box_NATO_Wps_F", - - "Box_East_Grenades_F", - "Box_NATO_Grenades_F", - - "Box_East_WpsLaunch_F", - "Box_NATO_WpsLaunch_F" -]; -private _largeBox = [ - "B_CargoNet_01_ammo_F" -]; -if (typeOf _crate in _smallBox) then { - _crate setObjectTextureGlobal [0, "\z\cav\addons\supplies\data\Ammobox_7CAV_co.paa"]; -}; -if (typeOf _crate in _largeBox) then { - _crate setObjectTextureGlobal [1, "\z\cav\addons\supplies\data\Ammobox_7CAV_co.paa"]; -}; diff --git a/cScripts/functions/modules/fn_zenModule_createSupplyCrate.sqf b/cScripts/functions/modules/fn_zenModule_createSupplyCrate.sqf index 144f00a14..1737f84e7 100644 --- a/cScripts/functions/modules/fn_zenModule_createSupplyCrate.sqf +++ b/cScripts/functions/modules/fn_zenModule_createSupplyCrate.sqf @@ -1,6 +1,6 @@ #include "..\script_component.hpp"; /* - * Author: CPL.Brostrom.A + * Author: CPL.Brostrom.A, J.Turn * This module function spawn a supply crate. * * Arguments: @@ -14,31 +14,39 @@ */ params ["_modulePos", "_objectPos"]; +// The crate type that will be passed to the supply crate spawner. +private _crateTypeList = [ + 'crate_resupply_general', + 'crate_medicalAtlas', + 'crate_medicalInfantry', + 'crate_stinger' +]; +// Display text for the crate list selection. This is what the zeus sees. +private _displayTextList = [ - "7th Cavalry Supply Crate", + ['Infantry Resupply', "Contains weapons, ammo, and supplies for one infantry platoon"], + ['Atlas Team', "Contains enough supplies to sustain two Atlas teams as well supplementing one infantry platoon."], + ['Infantry Medical', "Contains enough medical supplies for one infantry platoon."], + ['Stinger MANPAD', "Contains 1 launcher and 2 missiles."] +]; +[ + "7th Cavalry Supply Crates", [ - ["SLIDER:PERCENT", ["Supply size", "Regulate the total amount of supplies in the crate"], [0, 1, 1], false] + ["LIST", ["Crate Type", "Select the type of unit you are supplying with this crate"], + [ + _crateTypeList, + _displayTextList, + 0, + 4 + ], false] ], { params ["_arg", "_pos"]; - _arg params ["_size"]; + _arg params ["_crateType"]; _pos params ["_modulePos"]; - - private _crate = "Box_NATO_Equip_F" createVehicle _modulePos; - [_crate, _size] remoteExec [QFUNC(doSupplyCrate), 0, true]; - - - // Change ace characteristics of crate - [_crate, 1] call ace_cargo_fnc_setSize; - [_crate, true] call ace_dragging_fnc_setDraggable; - [_crate, true] call ace_dragging_fnc_setCarryable; - - // Add object to Zeus - [{ - _this call ace_zeus_fnc_addObjectToCurator; - }, _crate] call CBA_fnc_execNextFrame; + [_modulePos, _crateType] remoteExec [QFUNC(doSupplyCrate), 2, false]; }, {}, [_modulePos] diff --git a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf index 0b4fa37c7..6b6c67cbc 100644 --- a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf +++ b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf @@ -56,23 +56,23 @@ if (_vehicle iskindOf "I_APC_Wheeled_03_cannon_F") then { case "cav_dragoon_WD_V4": { // Vehicle Inventory [_vehicle, - GET_CONTAINER(vehicle_strykerDragoon_V4) + GET_CONTAINER("vehicle_strykerDragoon_V4") ] call FUNC(addCargo); // Supply Crate ["Box_NATO_Equip_F", - GET_CONTAINER(crate_strykerDragoon_resupply), + GET_CONTAINER("crate_strykerDragoon_resupply"), _vehicle, nil, "Supply Crate" ] call FUNC(createCargoCrate); // 4x 60mm mortars with ammo ["Box_Syndicate_WpsLaunch_F", - GET_CONTAINER(crate_strykerDragoon_60mm), + GET_CONTAINER("crate_strykerDragoon_60mm"), _vehicle, nil, "4x 60mm mortars with ammo" ] call FUNC(createCargoCrate); // Ammo for 2x 82mm mortars - private _mortar_ammo_82mm = GET_CONTAINER(crate_strykerDragoon_82mm); + private _mortar_ammo_82mm = GET_CONTAINER("crate_strykerDragoon_82mm"); ["ACE_Box_82mm_Mo_Combo", _mortar_ammo_82mm, _vehicle, nil, "Ammo for 2x 82mm mortars" @@ -84,7 +84,7 @@ if (_vehicle iskindOf "I_APC_Wheeled_03_cannon_F") then { ] call FUNC(createCargoCrate); ["Box_NATO_WpsLaunch_F", - GET_CONTAINER(crate_stinger), + GET_CONTAINER("crate_stinger"), _vehicle, nil, "MANPAD" ] call FUNC(createCargoCrate); }; @@ -103,17 +103,17 @@ if (_vehicle iskindOf "I_APC_Wheeled_03_cannon_F") then { // Vehicle Inventory [_vehicle, - GET_CONTAINER(vehicle_strykerDragoon) + GET_CONTAINER("vehicle_strykerDragoon") ] call FUNC(addCargo); // Supply Crate ["Box_NATO_Equip_F", - GET_CONTAINER(crate_strykerDragoon_resupply), + GET_CONTAINER("crate_strykerDragoon_resupply"), _vehicle, nil, "Resupply Crate" ] call FUNC(createCargoCrate); ["Box_NATO_WpsLaunch_F", - GET_CONTAINER(crate_stinger), + GET_CONTAINER("crate_stinger"), _vehicle, nil, "MANPAD" ] call FUNC(createCargoCrate); }; @@ -124,11 +124,11 @@ if (_vehicle iskindOf "I_APC_Wheeled_03_cannon_F") then { case "cav_dragoon_Unarmed_D"; case "MED": { [_vehicle, - GET_CONTAINER(vehicle_medicalAtlas) + GET_CONTAINER("vehicle_medicalAtlas") ] call FUNC(addCargo); ["ace_medicalSupplyCrate", - GET_CONTAINER(crate_medicalAtlas), + GET_CONTAINER("crate_medicalAtlas"), _vehicle, nil, "Medical Supply Crate" ] call FUNC(createCargoCrate); }; @@ -137,17 +137,17 @@ if (_vehicle iskindOf "I_APC_Wheeled_03_cannon_F") then { default { // Vehicle Inventory [_vehicle, - GET_CONTAINER(vehicle_strykerDragoon) + GET_CONTAINER("vehicle_strykerDragoon") ] call FUNC(addCargo); // Supply Crate ["Box_NATO_Equip_F", - GET_CONTAINER(crate_strykerDragoon_resupply), + GET_CONTAINER("crate_strykerDragoon_resupply"), _vehicle, nil, "Resupply Crate" ] call FUNC(createCargoCrate); ["Box_NATO_WpsLaunch_F", - GET_CONTAINER(crate_stinger), + GET_CONTAINER("crate_stinger"), _vehicle, nil, "MANPAD" ] call FUNC(createCargoCrate); }; @@ -177,11 +177,11 @@ if (_vehicle iskindOf "MRAP_01_base_F") then { case "rhsusf_m998_w_2dr_fulltop"; case "MED": { [_vehicle, - GET_CONTAINER(vehicle_medicalAtlas) + GET_CONTAINER("vehicle_medicalAtlas") ] call FUNC(addCargo); ["ace_medicalSupplyCrate", - GET_CONTAINER(crate_medicalAtlas), + GET_CONTAINER("crate_medicalAtlas"), _vehicle ] call FUNC(createCargoCrate); }; @@ -190,12 +190,12 @@ if (_vehicle iskindOf "MRAP_01_base_F") then { case "rhsusf_m1165a1_gmv_m2_m240_socom_w"; case "rhsusf_m1165a1_gmv_mk19_m240_socom_w": { [_vehicle, - GET_CONTAINER(vehicle_HMMWV) + GET_CONTAINER("vehicle_HMMWV") ] call FUNC(addCargo); }; default { [_vehicle, - GET_CONTAINER(vehicle_HMMWV) + GET_CONTAINER("vehicle_HMMWV") ] call FUNC(addCargo); }; }; @@ -211,11 +211,11 @@ if (_vehicle iskindOf "Truck_01_base_F") then { case "rhsusf_M1230a1_usarmy_d"; case "MED": { [_vehicle, - GET_CONTAINER(vehicle_medicalAtlas) + GET_CONTAINER("vehicle_medicalAtlas") ] call FUNC(addCargo); ["ace_medicalSupplyCrate", - GET_CONTAINER(crate_medicalAtlas), + GET_CONTAINER("crate_medicalAtlas"), _vehicle ] call FUNC(createCargoCrate); }; @@ -237,17 +237,17 @@ if (_vehicle iskindOf "rhsusf_stryker_base") then { case "rhsusf_stryker_m1126_m2_wd"; case "MED": { [_vehicle, - GET_CONTAINER(vehicle_medicalAtlas) + GET_CONTAINER("vehicle_medicalAtlas") ] call FUNC(addCargo); ["ace_medicalSupplyCrate", - GET_CONTAINER(crate_medicalAtlas), + GET_CONTAINER("crate_medicalAtlas"), _vehicle ] call FUNC(createCargoCrate); }; default { [_vehicle, - GET_CONTAINER(vehicle_strykerDragoon) + GET_CONTAINER("vehicle_strykerDragoon") ] call FUNC(addCargo); }; }; @@ -258,7 +258,7 @@ if (_vehicle iskindOf "RHS_M2A2_Base") then { [_vehicle, 4, -1, false, false] call FUNC(setCargoAttributes); [_vehicle, - GET_CONTAINER(vehicle_bradley) + GET_CONTAINER("vehicle_bradley") ] call FUNC(addCargo); ["ACE_Track", _vehicle, true] call ace_cargo_fnc_loadItem; @@ -269,7 +269,7 @@ if (_vehicle iskindOf "rhsusf_m1a1tank_base") then { ["ACE_Track", _vehicle, true] call ace_cargo_fnc_loadItem; [_vehicle, - GET_CONTAINER(vehicle_bradley) + GET_CONTAINER("vehicle_bradley") ] call FUNC(addCargo); }; @@ -305,17 +305,17 @@ if (_vehicle iskindOf "Heli_Transport_01_base_F") then { case "RHS_UH60M_MEV"; case "MED": { [_vehicle, - GET_CONTAINER(vehicle_medicalAtlas) + GET_CONTAINER("vehicle_medicalAtlas") ] call FUNC(addCargo); ["ace_medicalSupplyCrate", - GET_CONTAINER(crate_medicalAtlas), + GET_CONTAINER("crate_medicalAtlas"), _vehicle ] call FUNC(createCargoCrate); }; default { [_vehicle, - GET_CONTAINER(vehicle_heliTransport) + GET_CONTAINER("vehicle_heliTransport") ] call FUNC(addCargo); }; }; @@ -323,7 +323,7 @@ if (_vehicle iskindOf "Heli_Transport_01_base_F") then { if (_vehicle iskindOf "Heli_Transport_02_base_F") then { [_vehicle, - GET_CONTAINER(vehicle_heliTransport) + GET_CONTAINER("vehicle_heliTransport") ] call FUNC(addCargo); }; @@ -335,7 +335,7 @@ if (_vehicle iskindOf "TF373_SOAR_MH47G_Base") then { if (_vehicle iskindOf "vtx_MH60M") then { [_vehicle, - GET_CONTAINER(vehicle_heliTransport) + GET_CONTAINER("vehicle_heliTransport") ] call FUNC(addCargo); }; diff --git a/cScripts/script_macros.hpp b/cScripts/script_macros.hpp index f3b674733..180011f71 100644 --- a/cScripts/script_macros.hpp +++ b/cScripts/script_macros.hpp @@ -56,8 +56,8 @@ #define FORMAT_8(STR,ARG1,ARG2,ARG3,ARG4,ARG5,ARG6,ARG7,ARG8) format[STR, ARG1, ARG2, ARG3, ARG4, ARG5, ARG6, ARG7, ARG8] /* Logistics macros */ -#define GET_CONTAINER(BOX) [QUOTE(BOX)] call EFUNC(logistics,getContainer) -#define GET_CONTAINER_KEYS(BOX) [QUOTE(BOX),true] call EFUNC(logistics,getContainer) +#define GET_CONTAINER(BOX) [BOX] call EFUNC(logistics,getContainer) +#define GET_CONTAINER_KEYS(BOX) [BOX,true] call EFUNC(logistics,getContainer) /* LOGGING */ From d8a5efc56f88182f44e04b6f5332c37b48154a9c Mon Sep 17 00:00:00 2001 From: Zarenx <111392464+Zarenx@users.noreply.github.com> Date: Sat, 2 Mar 2024 23:57:33 +0100 Subject: [PATCH 09/14] Updated and seperated vehicle inventory for charlie vehicles (#1140) --- cScripts/functions/init/fn_init_logistics.sqf | 60 +++++++++++++------ .../vehicle/fn_vehicle_addInventory.sqf | 8 ++- 2 files changed, 49 insertions(+), 19 deletions(-) diff --git a/cScripts/functions/init/fn_init_logistics.sqf b/cScripts/functions/init/fn_init_logistics.sqf index 3e6247c0c..ba27209f7 100644 --- a/cScripts/functions/init/fn_init_logistics.sqf +++ b/cScripts/functions/init/fn_init_logistics.sqf @@ -1007,20 +1007,18 @@ private _dataArray = [ ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tracer_Red",42], // MG Ammo - ["rhsusf_200Rnd_556x45_mixed_soft_pouch",5], - ["rhsusf_100Rnd_762x51_m62_tracer",5], + ["rhsusf_200Rnd_556x45_mixed_soft_pouch",8], // AT ["rhs_weap_fgm148",1], ["rhs_fgm148_magazine_AT",1], - ["MRAWS_HE_F",2], - ["MRAWS_HEAT_F",2], + ["rhs_weap_M136_hedp",2], // M320 Ammo ["rhsusf_mag_M433_HEDP",20], ["rhs_mag_m714_White",6], + ["rhs_mag_m713_Red",4], ["ACE_HuntIR_M203",1], - ["ACE_40mm_Flare_ir",2], // Offensive/Defensive Hand Grenades ["HandGrenade",8], @@ -1028,15 +1026,12 @@ private _dataArray = [ // Smoke Grenades ["SmokeShell",10], ["SmokeShellBlue",2], - ["SmokeShellGreen",2], + ["SmokeShellRed",2], // Chemlights - ["ACE_Chemlight_HiGreen",2], + ["ACE_Chemlight_HiBlue",2], ["ACE_Chemlight_HiRed",2], ["ACE_Chemlight_IR",4], - - // Misc - ["ACE_SpareBarrel",1], // Medical ["kat_AED",1], @@ -1044,13 +1039,44 @@ private _dataArray = [ ["ACE_splint",4], ["kat_naloxone",2], ["ACE_tourniquet",8], - ["kat_guedel",2], - ["kat_ncdKit",2], - ["kat_pocketBVM",1], - ["kat_accuvac",1], - ["kat_chestSeal",4], - ["ACE_quikclot",20], - ["ACE_packingBandage",20] + ["kat_guedel",4], + ["kat_chestSeal",6], + ["ACE_packingBandage",40] + ]], + + ["vehicle_HMMWV_Weapons", [ + // Rifle Ammo + ["rhs_mag_30Rnd_556x45_M855A1_PMAG_Tracer_Red",25], + + // MG Ammo + ["rhsusf_100Rnd_762x51_m62_tracer",18], + + // AT + ["rhs_weap_fgm148",1], + ["rhs_fgm148_magazine_AT",1], + ["MRAWS_HE_F",2], + ["MRAWS_HEAT_F",6], + + // M320 Ammo + ["rhs_mag_m713_Red",4], + + // Offensive/Defensive Hand Grenades + ["HandGrenade",4], + + // Smoke Grenades + ["SmokeShell",6], + ["SmokeShellBlue",1], + + // Chemlights + ["ACE_Chemlight_HiBlue",2], + ["ACE_Chemlight_IR",2], + + // Medical + ["ACE_splint",4], + ["ACE_tourniquet",8], + ["kat_guedel",4], + ["kat_chestSeal",6], + ["ACE_packingBandage",40] ]], // // // // // // diff --git a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf index 6b6c67cbc..f0ec842be 100644 --- a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf +++ b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf @@ -186,11 +186,15 @@ if (_vehicle iskindOf "MRAP_01_base_F") then { ] call FUNC(createCargoCrate); }; case "rhsusf_m1165a1_gmv_m2_m240_socom_d"; + case "rhsusf_m1165a1_gmv_m2_m240_socom_w": { + [_vehicle, + GET_CONTAINER("vehicle_HMMWV") + ] call FUNC(addCargo); + }; case "rhsusf_m1165a1_gmv_mk19_m240_socom_d"; - case "rhsusf_m1165a1_gmv_m2_m240_socom_w"; case "rhsusf_m1165a1_gmv_mk19_m240_socom_w": { [_vehicle, - GET_CONTAINER("vehicle_HMMWV") + GET_CONTAINER(vehicle_HMMWV_Weapons) ] call FUNC(addCargo); }; default { From 6a76c2458e7a4ccf471423689f13ac41c69fb25a Mon Sep 17 00:00:00 2001 From: Zarenx <111392464+Zarenx@users.noreply.github.com> Date: Sat, 2 Mar 2024 23:58:41 +0100 Subject: [PATCH 10/14] Updated Compositions to remove dependencies of mods (#1141) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Broström.A | Evul --- .../composition.sqe | 251 +- .../Cav_Bandit_Platoon_Deployment/header.sqe | 2 +- .../Cav_Fixed_Wing_Aviation/composition.sqe | 799 +- .../Cav_Fixed_Wing_Aviation/header.sqe | 18 + Compositions/Cav_JTAC_Addon/composition.sqe | 44 +- Compositions/Cav_JTAC_Addon/header.sqe | 4 + .../composition.sqe | 251 +- .../Cav_Misfit_Platoon_Deployment/header.sqe | 2 +- .../Cav_Rotary_Aviation/composition.sqe | 343 +- Compositions/Cav_Rotary_Aviation/header.sqe | 15 + .../Cav_S3_Mission_Controller/composition.sqe | 70 +- .../Cav_S3_Mission_Controller/header.sqe | 4 + .../composition.sqe | 6731 +++++++++-------- .../header.sqe | 26 +- 14 files changed, 4085 insertions(+), 4475 deletions(-) rename Compositions/{Cav_Stryker_Scout_Platoon => Cav_Viking_Platoon_Deployment}/composition.sqe (72%) rename Compositions/{Cav_Stryker_Scout_Platoon => Cav_Viking_Platoon_Deployment}/header.sqe (73%) diff --git a/Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe b/Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe index f24bf1bdc..211790319 100644 --- a/Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe +++ b/Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe @@ -1,5 +1,5 @@ version=54; -center[]={385.34833,5,2435.6558}; +center[]={5674.2729,5,7209.0308}; class items { items=5; @@ -22,12 +22,11 @@ class items dataType="Comment"; class PositionInfo { - position[]={0.146698,0.01953125,8.9794922}; + position[]={0.15429688,0,2.6708984}; }; title="Bandit (Tooltip)"; description="Charlie Company, when motorized, uses either M1151 Humvees (M240s for rifle squads, M2 and Mk19 for WPN Squads) or the M1240/A1 MRAPs. You can use the SOCOM GMVs as well as an up-gun solution depending on the op. For air assault (helicopter) solutions, delete the humvees. Airborne, depending on the mission, may require jumping the humvees with the troops for additional mobility and expansion of the airhead."; - id=799; - atlOffset=0.01953125; + id=287; }; class Item1 { @@ -41,7 +40,7 @@ class items dataType="Object"; class PositionInfo { - position[]={0.14620972,0.0014390945,15.030762}; + position[]={0.14404297,0.0014390945,15.193848}; }; side="West"; flags=7; @@ -52,7 +51,7 @@ class items description="Platoon Leader@BANDIT-6"; isPlayable=1; }; - id=801; + id=289; type="Cav_B_C_PlatoonLeader_Bandit_6_F"; class CustomAttributes { @@ -90,11 +89,10 @@ class items { dynamicSimulation=1; }; - id=800; + id=288; }; }; - id=798; - atlOffset=0.009765625; + id=286; }; class Item1 { @@ -108,7 +106,7 @@ class items dataType="Object"; class PositionInfo { - position[]={0.002166748,0.89242268,16.826172}; + position[]={0,0.89242268,16.989258}; }; side="Empty"; flags=4; @@ -118,7 +116,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=803; + id=291; type="B_supplyCrate_F"; class CustomAttributes { @@ -150,7 +148,7 @@ class items dataType="Object"; class PositionInfo { - position[]={2.1755066,0.0014390945,15.013672}; + position[]={2.1733398,0.0014390945,15.176758}; }; side="West"; flags=7; @@ -161,7 +159,7 @@ class items description="Platoon Sergeant@BANDIT-5"; isPlayable=1; }; - id=805; + id=293; type="Cav_B_C_PlatoonSergeant_Bandit_5_F"; class CustomAttributes { @@ -199,7 +197,7 @@ class items { dynamicSimulation=1; }; - id=804; + id=292; }; class Item2 { @@ -213,7 +211,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-1.8244934,0.0014390945,15.005859}; + position[]={-1.8266602,0.0014390945,15.168945}; }; side="West"; flags=7; @@ -224,7 +222,7 @@ class items description="Platoon Medic@BANDIT-7"; isPlayable=1; }; - id=807; + id=295; type="Cav_B_C_PlatoonMedic_Bandit_7_F"; class CustomAttributes { @@ -275,14 +273,13 @@ class items { dynamicSimulation=1; }; - id=806; + id=294; }; }; - id=802; + id=290; }; }; - id=797; - atlOffset=0.0048828125; + id=285; }; class Item1 { @@ -296,7 +293,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.6477661,0.89242268,5.3427734}; + position[]={-8.6499023,0.89242268,5.5058594}; }; side="Empty"; flags=4; @@ -306,7 +303,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=809; + id=297; type="B_supplyCrate_F"; class CustomAttributes { @@ -338,7 +335,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.6477661,0.0014390945,3.3930664}; + position[]={-8.6499023,0.0014390945,3.5561523}; }; side="West"; flags=7; @@ -349,7 +346,7 @@ class items description="Squad Leader@BANDIT-1"; isPlayable=1; }; - id=811; + id=299; type="Cav_B_C_SquadLeader_Bandit_1_F"; class CustomAttributes { @@ -387,7 +384,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.149231,0.0014390945,2.3930664}; + position[]={-7.1513672,0.0014390945,2.5561523}; }; side="West"; flags=5; @@ -399,7 +396,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=812; + id=300; type="Cav_B_C_Alpha_FireTeamLeader_F"; }; class Item2 @@ -407,7 +404,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.149231,0.0014390945,2.3930664}; + position[]={-8.1513672,0.0014390945,2.5561523}; }; side="West"; flags=5; @@ -418,7 +415,7 @@ class items description="Alpha Automatic Rifleman"; isPlayable=1; }; - id=813; + id=301; type="Cav_B_C_Alpha_AutomaticRifleman_F"; }; class Item3 @@ -426,7 +423,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.149231,0.0014390945,2.3930664}; + position[]={-9.1513672,0.0014390945,2.5561523}; }; side="West"; flags=5; @@ -437,7 +434,7 @@ class items description="Alpha Grenadier"; isPlayable=1; }; - id=814; + id=302; type="Cav_B_C_Alpha_Grenadier_F"; }; class Item4 @@ -445,7 +442,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-10.149231,0.0014390945,2.3930664}; + position[]={-10.151367,0.0014390945,2.5561523}; }; side="West"; flags=5; @@ -456,7 +453,7 @@ class items description="Alpha Rifleman (LAT)"; isPlayable=1; }; - id=815; + id=303; type="Cav_B_C_Alpha_RiflemanLAT_F"; }; class Item5 @@ -464,7 +461,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.149231,0.0014390945,1.3930664}; + position[]={-7.1513672,0.0014390945,1.5561523}; }; side="West"; flags=5; @@ -476,7 +473,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=816; + id=304; type="Cav_B_C_Bravo_FireTeamLeader_F"; }; class Item6 @@ -484,7 +481,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.149231,0.0014390945,1.3930664}; + position[]={-8.1513672,0.0014390945,1.5561523}; }; side="West"; flags=5; @@ -495,7 +492,7 @@ class items description="Bravo Automatic Rifleman"; isPlayable=1; }; - id=817; + id=305; type="Cav_B_C_Bravo_AutomaticRifleman_F"; }; class Item7 @@ -503,7 +500,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.149231,0.0014390945,1.3930664}; + position[]={-9.1513672,0.0014390945,1.5561523}; }; side="West"; flags=5; @@ -514,7 +511,7 @@ class items description="Bravo Grenadier"; isPlayable=1; }; - id=818; + id=306; type="Cav_B_C_Bravo_Grenadier_F"; }; class Item8 @@ -522,7 +519,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-10.157043,0.0014390945,1.3276367}; + position[]={-10.15918,0.0014390945,1.4907227}; }; side="West"; flags=5; @@ -532,7 +529,7 @@ class items description="Bravo CLS"; isPlayable=1; }; - id=819; + id=307; type="Cav_B_C_CombatLifeSaver_F"; class CustomAttributes { @@ -570,10 +567,10 @@ class items { dynamicSimulation=1; }; - id=810; + id=298; }; }; - id=808; + id=296; }; class Item2 { @@ -587,7 +584,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.5094299,0.89242268,4.6364746}; + position[]={8.5073242,0.89242268,4.7993164}; }; side="Empty"; flags=4; @@ -597,7 +594,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=821; + id=309; type="B_supplyCrate_F"; class CustomAttributes { @@ -629,7 +626,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.5094299,0.0014390945,2.6867676}; + position[]={8.5073242,0.0014390945,2.8500977}; }; side="West"; flags=7; @@ -640,7 +637,7 @@ class items description="Squad Leader@BANDIT-2"; isPlayable=1; }; - id=823; + id=311; type="Cav_B_C_SquadLeader_Bandit_2_F"; class CustomAttributes { @@ -678,7 +675,7 @@ class items dataType="Object"; class PositionInfo { - position[]={10.00943,0.0014390945,1.6867676}; + position[]={10.007324,0.0014390945,1.8500977}; }; side="West"; flags=5; @@ -690,7 +687,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=824; + id=312; type="Cav_B_C_Alpha_FireTeamLeader_F"; }; class Item2 @@ -698,7 +695,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.0094299,0.0014390945,1.6867676}; + position[]={9.0073242,0.0014390945,1.8500977}; }; side="West"; flags=5; @@ -709,7 +706,7 @@ class items description="Alpha Automatic Rifleman"; isPlayable=1; }; - id=825; + id=313; type="Cav_B_C_Alpha_AutomaticRifleman_F"; }; class Item3 @@ -717,7 +714,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.0094299,0.0014390945,1.6867676}; + position[]={8.0073242,0.0014390945,1.8500977}; }; side="West"; flags=5; @@ -728,7 +725,7 @@ class items description="Alpha Grenadier"; isPlayable=1; }; - id=826; + id=314; type="Cav_B_C_Alpha_Grenadier_F"; }; class Item4 @@ -736,7 +733,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.0094299,0.0014390945,1.6867676}; + position[]={7.0073242,0.0014390945,1.8500977}; }; side="West"; flags=5; @@ -747,7 +744,7 @@ class items description="Alpha Rifleman (LAT)"; isPlayable=1; }; - id=827; + id=315; type="Cav_B_C_Alpha_RiflemanLAT_F"; }; class Item5 @@ -755,7 +752,7 @@ class items dataType="Object"; class PositionInfo { - position[]={10.00943,0.0014390945,0.68676758}; + position[]={10.007324,0.0014390945,0.85009766}; }; side="West"; flags=5; @@ -767,7 +764,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=828; + id=316; type="Cav_B_C_Bravo_FireTeamLeader_F"; }; class Item6 @@ -775,7 +772,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.0094299,0.0014390945,0.68676758}; + position[]={9.0073242,0.0014390945,0.85009766}; }; side="West"; flags=5; @@ -786,7 +783,7 @@ class items description="Bravo Automatic Rifleman"; isPlayable=1; }; - id=829; + id=317; type="Cav_B_C_Bravo_AutomaticRifleman_F"; }; class Item7 @@ -794,7 +791,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.0094299,0.0014390945,0.68676758}; + position[]={8.0073242,0.0014390945,0.85009766}; }; side="West"; flags=5; @@ -805,7 +802,7 @@ class items description="Bravo Grenadier"; isPlayable=1; }; - id=830; + id=318; type="Cav_B_C_Bravo_Grenadier_F"; }; class Item8 @@ -813,7 +810,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.0113831,0.0014390945,0.69750977}; + position[]={7.0092773,0.0014390945,0.86083984}; }; side="West"; flags=5; @@ -823,7 +820,7 @@ class items description="Bravo CLS"; isPlayable=1; }; - id=831; + id=319; type="Cav_B_C_CombatLifeSaver_F"; class CustomAttributes { @@ -861,10 +858,10 @@ class items { dynamicSimulation=1; }; - id=822; + id=310; }; }; - id=820; + id=308; }; class Item3 { @@ -878,7 +875,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.6477661,0.89242268,-6.1572266}; + position[]={-9.6499023,0.89242268,-5.9941406}; }; side="Empty"; flags=4; @@ -888,7 +885,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=833; + id=321; type="B_supplyCrate_F"; class CustomAttributes { @@ -920,7 +917,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.6477661,0.0014390945,-8.1069336}; + position[]={-9.6499023,0.0014390945,-7.9438477}; }; side="West"; flags=7; @@ -931,7 +928,7 @@ class items description="Squad Leader@BANDIT-3"; isPlayable=1; }; - id=835; + id=323; type="Cav_B_C_SquadLeader_Bandit_3_F"; class CustomAttributes { @@ -969,7 +966,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.1482544,0.0014390945,-9.1069336}; + position[]={-8.1503906,0.0014390945,-8.9438477}; }; side="West"; flags=5; @@ -981,7 +978,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=836; + id=324; type="Cav_B_C_Alpha_FireTeamLeader_F"; }; class Item2 @@ -989,7 +986,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.1482544,0.0014390945,-9.1069336}; + position[]={-9.1503906,0.0014390945,-8.9438477}; }; side="West"; flags=5; @@ -1000,7 +997,7 @@ class items description="Alpha Automatic Rifleman"; isPlayable=1; }; - id=837; + id=325; type="Cav_B_C_Alpha_AutomaticRifleman_F"; }; class Item3 @@ -1008,7 +1005,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-10.148254,0.0014390945,-9.1069336}; + position[]={-10.150391,0.0014390945,-8.9438477}; }; side="West"; flags=5; @@ -1019,7 +1016,7 @@ class items description="Alpha Grenadier"; isPlayable=1; }; - id=838; + id=326; type="Cav_B_C_Alpha_Grenadier_F"; }; class Item4 @@ -1027,7 +1024,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-11.148254,0.0014390945,-9.1069336}; + position[]={-11.150391,0.0014390945,-8.9438477}; }; side="West"; flags=5; @@ -1038,7 +1035,7 @@ class items description="Alpha Rifleman (LAT)"; isPlayable=1; }; - id=839; + id=327; type="Cav_B_C_Alpha_RiflemanLAT_F"; }; class Item5 @@ -1046,7 +1043,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.1482544,0.0014390945,-10.106934}; + position[]={-8.1503906,0.0014390945,-9.9438477}; }; side="West"; flags=5; @@ -1058,7 +1055,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=840; + id=328; type="Cav_B_C_Bravo_FireTeamLeader_F"; }; class Item6 @@ -1066,7 +1063,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.1482544,0.0014390945,-10.106934}; + position[]={-9.1503906,0.0014390945,-9.9438477}; }; side="West"; flags=5; @@ -1077,7 +1074,7 @@ class items description="Bravo Automatic Rifleman"; isPlayable=1; }; - id=841; + id=329; type="Cav_B_C_Bravo_AutomaticRifleman_F"; }; class Item7 @@ -1085,7 +1082,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-10.148254,0.0014390945,-10.106934}; + position[]={-10.150391,0.0014390945,-9.9438477}; }; side="West"; flags=5; @@ -1096,7 +1093,7 @@ class items description="Bravo Grenadier"; isPlayable=1; }; - id=842; + id=330; type="Cav_B_C_Bravo_Grenadier_F"; }; class Item8 @@ -1104,7 +1101,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-10.99884,0.0014390945,-10.148926}; + position[]={-11.000977,0.0014390945,-9.9858398}; }; side="West"; flags=5; @@ -1114,7 +1111,7 @@ class items description="Bravo CLS"; isPlayable=1; }; - id=843; + id=331; type="Cav_B_C_CombatLifeSaver_F"; class CustomAttributes { @@ -1152,7 +1149,7 @@ class items { dynamicSimulation=1; }; - id=834; + id=322; }; class Item2 { @@ -1166,7 +1163,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.6876526,0.89242268,-5.2370605}; + position[]={8.6855469,0.89242268,-5.0737305}; }; side="Empty"; flags=4; @@ -1176,7 +1173,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=845; + id=333; type="B_supplyCrate_F"; class CustomAttributes { @@ -1208,7 +1205,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.5094299,0.0014390945,-7.3132324}; + position[]={8.5073242,0.0014390945,-7.1499023}; }; side="West"; flags=6; @@ -1219,7 +1216,7 @@ class items description="Squad Leader@BANDIT-4"; isPlayable=1; }; - id=847; + id=335; type="Cav_B_C_Weapons_SquadLeader_F"; class CustomAttributes { @@ -1257,7 +1254,7 @@ class items dataType="Object"; class PositionInfo { - position[]={10.00943,0.0014390945,-8.3132324}; + position[]={10.007324,0.0014390945,-8.1499023}; }; side="West"; flags=4; @@ -1269,7 +1266,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=848; + id=336; type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; class CustomAttributes { @@ -1307,7 +1304,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.0094299,0.0014390945,-8.3132324}; + position[]={9.0073242,0.0014390945,-8.1499023}; }; side="West"; flags=4; @@ -1318,7 +1315,7 @@ class items description="Alpha Machine Gunner"; isPlayable=1; }; - id=849; + id=337; type="Cav_B_C_Weapons_M240B_Machinegunner_F"; class CustomAttributes { @@ -1356,7 +1353,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.0094299,0.0014390945,-8.3132324}; + position[]={8.0073242,0.0014390945,-8.1499023}; }; side="West"; flags=4; @@ -1367,7 +1364,7 @@ class items description="Alpha M240 Ammo Bearer"; isPlayable=1; }; - id=850; + id=338; type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; class CustomAttributes { @@ -1405,7 +1402,7 @@ class items dataType="Object"; class PositionInfo { - position[]={10.00943,0.0014390945,-9.3132324}; + position[]={10.007324,0.0014390945,-9.1499023}; }; side="West"; flags=4; @@ -1417,7 +1414,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=851; + id=339; type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; class CustomAttributes { @@ -1455,7 +1452,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.0094299,0.0014390945,-9.3132324}; + position[]={9.0073242,0.0014390945,-9.1499023}; }; side="West"; flags=4; @@ -1466,7 +1463,7 @@ class items description="Bravo Machine Gunner"; isPlayable=1; }; - id=852; + id=340; type="Cav_B_C_Weapons_M240B_Machinegunner_F"; class CustomAttributes { @@ -1504,7 +1501,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.0094299,0.0014390945,-9.3132324}; + position[]={8.0073242,0.0014390945,-9.1499023}; }; side="West"; flags=4; @@ -1515,7 +1512,7 @@ class items description="Bravo M240 Ammo Bearer"; isPlayable=1; }; - id=853; + id=341; type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; class CustomAttributes { @@ -1553,7 +1550,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.8733215,0.0014390945,-8.2224121}; + position[]={6.871582,0.0014390945,-8.059082}; angles[]={0,0.13096951,0}; }; side="West"; @@ -1564,7 +1561,7 @@ class items description="Charlie MAAWS Gunner"; isPlayable=1; }; - id=854; + id=342; type="Cav_B_C_Weapons_MAAWS_MAAWSGunner_F"; class CustomAttributes { @@ -1602,7 +1599,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.8710022,0.0014390945,-9.3376465}; + position[]={6.8691406,0.0014390945,-9.1743164}; angles[]={0,6.1690288,0}; }; side="West"; @@ -1613,7 +1610,7 @@ class items description="Charlie MAAWS Assistant"; isPlayable=1; }; - id=855; + id=343; type="Cav_B_C_Weapons_MAAWS_MAAWSAssistant_F"; class CustomAttributes { @@ -1651,13 +1648,13 @@ class items { dynamicSimulation=1; }; - id=846; + id=334; }; }; - id=844; + id=332; }; }; - id=832; + id=320; }; class Item4 { @@ -1671,7 +1668,7 @@ class items dataType="Object"; class PositionInfo { - position[]={0.146698,1.7828913,10.97998}; + position[]={0.14453125,1.7828913,11.143066}; }; side="Empty"; flags=4; @@ -1682,7 +1679,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=857; + id=345; type="rhsusf_m1152_rsv_usarmy_wd"; class CustomAttributes { @@ -1707,7 +1704,7 @@ class items dataType="Object"; class PositionInfo { - position[]={14.449371,1.7822218,3.4372559}; + position[]={14.447266,1.7822218,3.6000977}; }; side="Empty"; flags=4; @@ -1719,7 +1716,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=858; + id=346; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -2038,7 +2035,7 @@ class items dataType="Object"; class PositionInfo { - position[]={3.8829651,1.7822218,-6.5837402}; + position[]={3.8808594,1.7822218,-6.4204102}; }; side="Empty"; flags=4; @@ -2050,7 +2047,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=859; + id=347; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -2369,7 +2366,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-4.348938,1.7822218,-7.2885742}; + position[]={-4.3510742,1.7822218,-7.1254883}; }; side="Empty"; flags=4; @@ -2381,7 +2378,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=860; + id=348; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -2700,7 +2697,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-14.095032,1.7822218,-7.4995117}; + position[]={-14.097168,1.7822218,-7.3364258}; }; side="Empty"; flags=4; @@ -2712,7 +2709,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=861; + id=349; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -3031,7 +3028,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-4.2996216,1.7822218,3.5234375}; + position[]={-4.3017578,1.7822218,3.6865234}; }; side="Empty"; flags=4; @@ -3043,7 +3040,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=862; + id=350; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -3362,7 +3359,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-14.091125,1.7822218,4.0180664}; + position[]={-14.093262,1.7822218,4.1811523}; }; side="Empty"; flags=4; @@ -3374,7 +3371,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=863; + id=351; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -3693,7 +3690,7 @@ class items dataType="Object"; class PositionInfo { - position[]={3.9845276,1.7822218,2.5979004}; + position[]={3.9824219,1.7822218,2.7612305}; }; side="Empty"; flags=4; @@ -3705,7 +3702,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=864; + id=352; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -4024,7 +4021,7 @@ class items dataType="Object"; class PositionInfo { - position[]={14.068024,1.7822218,-7.3444824}; + position[]={14.065918,1.7822218,-7.1811523}; }; side="Empty"; flags=4; @@ -4036,7 +4033,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=865; + id=353; type="rhsusf_m1165a1_gmv_mk19_m240_socom_d"; class CustomAttributes { @@ -4351,6 +4348,6 @@ class items }; }; }; - id=856; + id=344; }; }; diff --git a/Compositions/Cav_Bandit_Platoon_Deployment/header.sqe b/Compositions/Cav_Bandit_Platoon_Deployment/header.sqe index b59285f18..e80c409ac 100644 --- a/Compositions/Cav_Bandit_Platoon_Deployment/header.sqe +++ b/Compositions/Cav_Bandit_Platoon_Deployment/header.sqe @@ -4,7 +4,7 @@ author="=7Cav=CPL.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= { - "RSPN_Assets", + "Desert", "cav_charlie_characters_units", "A3_Weapons_F_Ammoboxes", "ace_cargo", diff --git a/Compositions/Cav_Fixed_Wing_Aviation/composition.sqe b/Compositions/Cav_Fixed_Wing_Aviation/composition.sqe index 700f1b12a..bbe5ac705 100644 --- a/Compositions/Cav_Fixed_Wing_Aviation/composition.sqe +++ b/Compositions/Cav_Fixed_Wing_Aviation/composition.sqe @@ -1,8 +1,8 @@ version=54; -center[]={4794.0229,5,7516.3813}; +center[]={5664.8892,5,7211.1616}; class items { - items=9; + items=8; class Item0 { dataType="Layer"; @@ -15,7 +15,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-28.291016,0.89242268,36.995605}; + position[]={-28.081055,0.89242268,36.59668}; }; side="Empty"; flags=4; @@ -25,7 +25,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=201; + id=356; type="B_supplyCrate_F"; class CustomAttributes { @@ -50,7 +50,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-38.380859,2.479682,43.438965}; + position[]={-38.170898,2.479682,43.040039}; }; side="Empty"; flags=4; @@ -58,7 +58,7 @@ class items { dynamicSimulation=1; }; - id=202; + id=357; type="USAF_F22_EWP_AG"; class CustomAttributes { @@ -83,7 +83,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-18.380859,2.479682,43.938965}; + position[]={-18.170898,2.479682,43.540039}; }; side="Empty"; flags=4; @@ -91,7 +91,7 @@ class items { dynamicSimulation=1; }; - id=203; + id=358; type="USAF_F22_EWP_AG"; class CustomAttributes { @@ -116,11 +116,11 @@ class items dataType="Comment"; class PositionInfo { - position[]={-28.819336,0.036382675,44.644043}; + position[]={-28.609375,0.036382675,44.245117}; }; title="FW Attack ASF (Tooltip)"; description="The F-22A is primarily an air to air intercept fighter. It excels best when it's slick. There's the stock slick version and three variants: EWP-AG, EWP-AA, Heavy. EWP is Enhanced Weapons Package. AG and AA is Air to Ground and Air to Air. Heavy is just outer hardpoints. All three of these variants technically negate the stealth benefits of the F-22. Pilots will pick what they want. Definitely throw some fast air at these guys, they'll love every minute of it."; - id=204; + id=359; atlOffset=0.036382675; }; class Item4 @@ -135,7 +135,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-30.702637,0.0014390945,34.057129}; + position[]={-30.492676,0.0014390945,33.658203}; angles[]={-0,0.019565141,0}; }; side="West"; @@ -148,7 +148,7 @@ class items description="Pilot@RAPTOR-1"; isPlayable=1; }; - id=206; + id=361; type="Cav_B_A_Plane_Fighter_Pilot_F"; class CustomAttributes { @@ -198,7 +198,7 @@ class items class Attributes { }; - id=205; + id=360; }; class Item5 { @@ -212,7 +212,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-25.914551,0.0014390945,34.254395}; + position[]={-25.70459,0.0014390945,33.855469}; angles[]={-0,0.019565141,0}; }; side="West"; @@ -225,7 +225,7 @@ class items description="Pilot@RAPTOR-2"; isPlayable=1; }; - id=208; + id=363; type="Cav_B_A_Plane_Fighter_Pilot_F"; class CustomAttributes { @@ -275,10 +275,10 @@ class items class Attributes { }; - id=207; + id=362; }; }; - id=200; + id=355; atlOffset=0.0045480728; }; class Item1 @@ -300,7 +300,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-23.024902,0.0014390945,-9.8256836}; + position[]={-22.814941,0.0014390945,-10.224609}; angles[]={0,0.019565141,0}; }; side="West"; @@ -313,7 +313,7 @@ class items description="Pilot@HOG-1"; isPlayable=1; }; - id=211; + id=366; type="Cav_B_A_Plane_Fighter_Pilot_Hog_1_F"; class CustomAttributes { @@ -363,7 +363,7 @@ class items class Attributes { }; - id=210; + id=365; }; class Item1 { @@ -377,7 +377,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-31.102051,0.0014390945,-9.9848633}; + position[]={-30.89209,0.0014390945,-10.383789}; angles[]={0,0.019565141,0}; }; side="West"; @@ -390,7 +390,7 @@ class items description="Pilot@HOG-2"; isPlayable=1; }; - id=213; + id=368; type="Cav_B_A_Plane_Fighter_Pilot_Hog_2_F"; class CustomAttributes { @@ -440,14 +440,14 @@ class items class Attributes { }; - id=212; + id=367; }; class Item2 { dataType="Object"; class PositionInfo { - position[]={-16.762207,2.094676,-2.6362305}; + position[]={-16.552246,2.094676,-3.0351563}; }; side="Empty"; flags=4; @@ -455,7 +455,7 @@ class items { dynamicSimulation=1; }; - id=214; + id=369; type="USAF_A10"; }; class Item3 @@ -463,7 +463,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-36.762207,2.094676,-3.1362305}; + position[]={-36.552246,2.094676,-3.5351563}; }; side="Empty"; flags=4; @@ -471,7 +471,7 @@ class items { dynamicSimulation=1; }; - id=215; + id=370; type="USAF_A10"; }; class Item4 @@ -479,7 +479,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-27.093262,0.89242268,-7.4702148}; + position[]={-26.883301,0.89242268,-7.8691406}; }; side="Empty"; flags=4; @@ -489,7 +489,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=216; + id=371; type="B_supplyCrate_F"; class CustomAttributes { @@ -514,15 +514,15 @@ class items dataType="Comment"; class PositionInfo { - position[]={-27.059082,0.036382675,-6.6660156}; + position[]={-26.849121,0.036382675,-7.0649414}; }; title="FW Ground Attack"; description="The A-10 is venerable as one of the ""best"" A2G platforms on the market. There are only two key things here: if we have an A-10 up, there is no enemy fixed wing. A-10s only operate in air superiority environments where we control the skies. That's not to say you can't threaten them with a good time though."; - id=217; + id=372; atlOffset=0.036382675; }; }; - id=209; + id=364; atlOffset=0.018191338; }; class Item2 @@ -544,7 +544,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-30.269531,0.0014390945,15.261719}; + position[]={-30.05957,0.0014390945,14.862793}; angles[]={-0,0.019565141,0}; }; side="West"; @@ -557,7 +557,7 @@ class items description="Pilot@LIGHTNING-1"; isPlayable=1; }; - id=220; + id=375; type="Cav_B_A_Plane_Fighter_Pilot_F"; class CustomAttributes { @@ -607,7 +607,7 @@ class items class Attributes { }; - id=219; + id=374; }; class Item1 { @@ -621,7 +621,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-25.481445,0.0014390945,15.459961}; + position[]={-25.271484,0.0014390945,15.061035}; angles[]={-0,0.019565141,0}; }; side="West"; @@ -634,7 +634,7 @@ class items description="Pilot@LIGHTNING-2"; isPlayable=1; }; - id=222; + id=377; type="Cav_B_A_Plane_Fighter_Pilot_F"; class CustomAttributes { @@ -684,14 +684,14 @@ class items class Attributes { }; - id=221; + id=376; }; class Item2 { dataType="Object"; class PositionInfo { - position[]={-27.834473,0.89242268,18.077637}; + position[]={-27.624512,0.89242268,17.678711}; }; side="Empty"; flags=4; @@ -701,7 +701,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=223; + id=378; type="B_supplyCrate_F"; class CustomAttributes { @@ -726,7 +726,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-17.880859,2.2409725,23.993652}; + position[]={-17.670898,2.2409725,23.594727}; }; side="Empty"; flags=4; @@ -734,7 +734,7 @@ class items { dynamicSimulation=1; }; - id=224; + id=379; type="USAF_F35A"; class CustomAttributes { @@ -759,7 +759,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-37.880859,2.2409725,23.493652}; + position[]={-37.670898,2.2409725,23.094727}; }; side="Empty"; flags=4; @@ -767,7 +767,7 @@ class items { dynamicSimulation=1; }; - id=225; + id=380; type="USAF_F35A"; class CustomAttributes { @@ -792,15 +792,15 @@ class items dataType="Comment"; class PositionInfo { - position[]={-28.543945,0.036382675,21.939941}; + position[]={-28.333984,0.036382675,21.541016}; }; title="FW Multirole (Tooltip)"; description="The F-35A is a versatile platform capable of carrying air to air and air to ground ordnance - pick the role you want it to do and stick to it. The F-35A also has an on-board satellite view of the battlespace. Stand-off ordnances from multiple kilometers away are the namesake of the F-35A, but it's capable of everything the A-10C is and more. (Sorry not sorry Suto)"; - id=226; + id=381; atlOffset=0.036382675; }; }; - id=218; + id=373; atlOffset=0.018191338; }; class Item3 @@ -815,7 +815,7 @@ class items dataType="Object"; class PositionInfo { - position[]={44.559082,1.7847018,34.537109}; + position[]={44.769043,1.7847018,34.138184}; }; side="Empty"; flags=4; @@ -826,7 +826,7 @@ class items dynamicSimulation=1; pylons="USAF_PylonRack_2Rnd_AGM114R[0];USAF_PylonRack_4Rnd_GBU53[0];USAF_PylonRack_4Rnd_GBU39[0];USAF_PylonRack_2Rnd_AGM114R[0];"; }; - id=228; + id=383; type="USAF_MQ9"; class CustomAttributes { @@ -895,7 +895,7 @@ class items dataType="Object"; class PositionInfo { - position[]={44.492676,0.0014390945,20.841309}; + position[]={44.702637,0.0014390945,20.442383}; }; side="West"; flags=7; @@ -905,7 +905,7 @@ class items description="Drone Pilot@REAPER-1"; isPlayable=1; }; - id=230; + id=385; type="Cav_B_A_AirController_F"; class CustomAttributes { @@ -955,22 +955,22 @@ class items class Attributes { }; - id=229; + id=384; }; class Item2 { dataType="Comment"; class PositionInfo { - position[]={44.580566,0.036382198,41.257813}; + position[]={44.790527,0.036382198,40.858887}; }; title="FW Drone Attack (Tooltip)"; description="The MQ-9 has a light armament available to it that is mostly Laser guided. All ordnance is capable of tracking and launching from the drone's camera, with little regard on the orientation of the drone (given enough altitude). cTAB tablets have the ability to interface with the drone gunner optics which allows ground force elements instant eyes-on to whatever the drone is seeing."; - id=231; + id=386; atlOffset=0.036382198; }; }; - id=227; + id=382; atlOffset=0.018191338; }; class Item4 @@ -985,7 +985,7 @@ class items dataType="Object"; class PositionInfo { - position[]={44.583496,1.8006945,2.7460938}; + position[]={44.793457,1.8006945,2.347168}; }; side="Empty"; flags=4; @@ -994,7 +994,7 @@ class items init="this setGroupid [""DTHSTR""];"; dynamicSimulation=1; }; - id=233; + id=388; type="USAF_RQ4A"; }; class Item1 @@ -1002,557 +1002,18 @@ class items dataType="Comment"; class PositionInfo { - position[]={44.391602,0.036382198,11.520508}; + position[]={44.601563,0.036382198,11.121582}; }; title="FW Drone Recon (Tooltip)"; description="The RQ-4 can be put in the air on a racetrack pattern and has enough fuel to last an entire 3hr op. If your operation is deemed to be in an area that has BLUFOR having air supremacy, it's a good idea to put one of these in the air at a height of 2500m or higher in a loiter pattern over the AO. Units with cTAB can tap into the drone's turret camera and observe the area for a better perspective, allowing freedom of information to the unit without the need of a middle-man calling out what he sees."; - id=234; + id=389; atlOffset=0.036382198; }; }; - id=232; + id=387; atlOffset=0.018191338; }; class Item5 - { - dataType="Layer"; - name="FW Gunship (AC-130)"; - class Entities - { - items=3; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=6; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-1.5400391,0.0014390945,32.219238}; - angles[]={0,0.0061959187,0}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""HAMMER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="Pilot@HAMMER-1"; - isPlayable=1; - }; - id=237; - type="Cav_B_A_Plane_Transport_Pilot_Titan_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.54101563,0.0014390945,32.213379}; - angles[]={0,0.0061959187,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""HAMMER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="Co-Pilot@HAMMER-1"; - isPlayable=1; - }; - id=238; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-1.4750977,0.0014390945,31.152344}; - angles[]={0,0.0061959187,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""HAMMER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="IR Operator@HAMMER-1"; - isPlayable=1; - }; - id=239; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.54492188,0.0014390945,31.05957}; - angles[]={0,0.0061959187,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""HAMMER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="TV Operator@HAMMER-1"; - isPlayable=1; - }; - id=240; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-1.4921875,0.0014390945,30.030273}; - angles[]={0,0.0061959187,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""HAMMER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="Fire Control Officer@HAMMER-1"; - isPlayable=1; - }; - id=241; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.51171875,0.0014390945,29.989258}; - angles[]={0,0.0061959187,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""HAMMER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="Electronic Warfare Officer@HAMMER-1"; - isPlayable=1; - }; - id=242; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=236; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.80029297,0.89242268,34.959473}; - angles[]={-0,3.1290414,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=243; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={11.453125,5.8589764,25.025879}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=244; - type="USAF_AC130U"; - atlOffset=4.7683716e-007; - }; - }; - id=235; - }; - class Item6 { dataType="Layer"; name="FW Transport (C-130J)"; @@ -1578,7 +1039,7 @@ class items dataType="Object"; class PositionInfo { - position[]={3.6005859,0.0014390945,-34.148926}; + position[]={7.4575195,0.0014390945,-29.879883}; }; side="West"; flags=7; @@ -1590,7 +1051,7 @@ class items description="Pilot@TITAN-1"; isPlayable=1; }; - id=248; + id=402; type="Cav_B_A_Plane_Transport_Pilot_Titan_1_F"; class CustomAttributes { @@ -1641,7 +1102,7 @@ class items dataType="Object"; class PositionInfo { - position[]={4.6020508,0.0014390945,-34.148438}; + position[]={8.4589844,0.0014390945,-29.879395}; }; side="West"; flags=5; @@ -1653,7 +1114,7 @@ class items description="Co-Pilot@TITAN-1"; isPlayable=1; }; - id=249; + id=403; type="Cav_B_A_Plane_Transport_coPilot_F"; class CustomAttributes { @@ -1703,14 +1164,14 @@ class items class Attributes { }; - id=247; + id=401; }; class Item1 { dataType="Object"; class PositionInfo { - position[]={4.1005859,0.89242268,-32.199219}; + position[]={7.9575195,0.89242268,-27.930176}; }; side="Empty"; flags=4; @@ -1720,7 +1181,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=250; + id=404; type="B_supplyCrate_F"; class CustomAttributes { @@ -1745,7 +1206,7 @@ class items dataType="Object"; class PositionInfo { - position[]={11.349121,0.014522076,-58.958496}; + position[]={10.490723,0.014522076,-48.806152}; }; side="Empty"; flags=4; @@ -1753,11 +1214,11 @@ class items { dynamicSimulation=1; }; - id=251; + id=405; type="USAF_C130J"; }; }; - id=246; + id=400; }; class Item1 { @@ -1771,7 +1232,7 @@ class items dataType="Object"; class PositionInfo { - position[]={11.358887,0.014522076,-91.411621}; + position[]={10.500488,0.014522076,-81.259277}; }; side="Empty"; flags=4; @@ -1779,7 +1240,7 @@ class items { dynamicSimulation=1; }; - id=253; + id=407; type="USAF_C130J"; }; class Item1 @@ -1794,7 +1255,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.4355469,0.0014390945,-83.589844}; + position[]={6.5771484,0.0014390945,-73.4375}; }; side="West"; flags=7; @@ -1806,7 +1267,7 @@ class items description="Pilot@TITAN-2"; isPlayable=1; }; - id=255; + id=409; type="Cav_B_A_Plane_Transport_Pilot_Titan_2_F"; class CustomAttributes { @@ -1857,7 +1318,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.4370117,0.0014390945,-83.589355}; + position[]={7.5786133,0.0014390945,-73.437012}; }; side="West"; flags=5; @@ -1869,7 +1330,7 @@ class items description="Co-Pilot@TITAN-2"; isPlayable=1; }; - id=256; + id=410; type="Cav_B_A_Plane_Transport_coPilot_F"; class CustomAttributes { @@ -1919,14 +1380,14 @@ class items class Attributes { }; - id=254; + id=408; }; class Item2 { dataType="Object"; class PositionInfo { - position[]={7.8588867,0.89242268,-80.816895}; + position[]={7.0004883,0.89242268,-70.664551}; }; side="Empty"; flags=4; @@ -1936,7 +1397,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=257; + id=411; type="B_supplyCrate_F"; class CustomAttributes { @@ -1957,18 +1418,18 @@ class items }; }; }; - id=252; + id=406; }; class Item2 { dataType="Comment"; class PositionInfo { - position[]={10.211914,0.036382198,-76.390625}; + position[]={9.3535156,0.036382198,-66.238281}; }; title="FW Transport (Tooltip)"; description="The C-130J's from USAF can fit *almost* the entire Bandit Platoon in one C-130J, however, keep in mind that the more bodies in one bird, the longer your DZ or the need to have multiple sticks in one bird and have go-arounds, which means longer time before all troops are in the AO. You won't be able to jump the entirety of the PLT's 11 vehicles with only 2 cargo variants (3 vehicles fit in one C-130J Cargo) so it's recommended to either forego the vehicles or zeus-assist them if you only plan on using the C-130s."; - id=258; + id=412; atlOffset=0.036382198; }; class Item3 @@ -1990,7 +1451,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-17.266113,0.0014390945,-34.101074}; + position[]={-18.124512,0.0014390945,-23.94873}; }; side="West"; flags=7; @@ -2002,7 +1463,7 @@ class items description="Pilot@TITAN-3"; isPlayable=1; }; - id=261; + id=415; type="Cav_B_A_Plane_Transport_Pilot_Titan_3_F"; class CustomAttributes { @@ -2053,7 +1514,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-16.265137,0.0014390945,-34.101563}; + position[]={-17.123535,0.0014390945,-23.949219}; }; side="West"; flags=5; @@ -2065,7 +1526,7 @@ class items description="Co-Pilot@TITAN-3"; isPlayable=1; }; - id=262; + id=416; type="Cav_B_A_Plane_Transport_coPilot_F"; class CustomAttributes { @@ -2115,14 +1576,14 @@ class items class Attributes { }; - id=260; + id=414; }; class Item1 { dataType="Object"; class PositionInfo { - position[]={-20.704102,0.014522076,-42.865723}; + position[]={-21.5625,0.014522076,-32.713379}; }; side="Empty"; flags=4; @@ -2130,7 +1591,7 @@ class items { dynamicSimulation=1; }; - id=263; + id=417; type="USAF_C130J_Cargo"; class CustomAttributes { @@ -2155,7 +1616,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-16.641113,0.89242268,-31.816895}; + position[]={-17.499512,0.89242268,-21.664551}; }; side="Empty"; flags=4; @@ -2165,7 +1626,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=264; + id=418; type="B_supplyCrate_F"; class CustomAttributes { @@ -2186,7 +1647,7 @@ class items }; }; }; - id=259; + id=413; }; class Item4 { @@ -2200,7 +1661,7 @@ class items dataType="Object"; class PositionInfo { - position[]={45.383789,0.014522076,-42.947266}; + position[]={44.525391,0.014522076,-32.794922}; }; side="Empty"; flags=4; @@ -2208,7 +1669,7 @@ class items { dynamicSimulation=1; }; - id=266; + id=420; type="USAF_C130J_Cargo"; class CustomAttributes { @@ -2240,7 +1701,7 @@ class items dataType="Object"; class PositionInfo { - position[]={41.506348,0.0014390945,-33.953125}; + position[]={40.647949,0.0014390945,-23.800781}; }; side="West"; flags=7; @@ -2252,7 +1713,7 @@ class items description="Pilot@TITAN-4"; isPlayable=1; }; - id=268; + id=422; type="Cav_B_A_Plane_Transport_Pilot_Titan_4_F"; class CustomAttributes { @@ -2303,7 +1764,7 @@ class items dataType="Object"; class PositionInfo { - position[]={42.506836,0.0014390945,-33.953613}; + position[]={41.648438,0.0014390945,-23.80127}; }; side="West"; flags=5; @@ -2315,7 +1776,7 @@ class items description="Co-Pilot@TITAN-4"; isPlayable=1; }; - id=269; + id=423; type="Cav_B_A_Plane_Transport_coPilot_F"; class CustomAttributes { @@ -2365,14 +1826,14 @@ class items class Attributes { }; - id=267; + id=421; }; class Item2 { dataType="Object"; class PositionInfo { - position[]={41.858887,0.89242268,-31.316895}; + position[]={41.000488,0.89242268,-21.164551}; }; side="Empty"; flags=4; @@ -2382,7 +1843,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=270; + id=424; type="B_supplyCrate_F"; class CustomAttributes { @@ -2403,13 +1864,13 @@ class items }; }; }; - id=265; + id=419; }; }; - id=245; + id=399; atlOffset=0.0045480728; }; - class Item7 + class Item6 { dataType="Layer"; name="FW Transport Heavy (C-17)"; @@ -2421,11 +1882,11 @@ class items dataType="Comment"; class PositionInfo { - position[]={9.9726563,0,7.6303711}; + position[]={10.182617,0,7.2314453}; }; title="FW Heavy Transport (Tooltip)"; description="While one C-17 can carry an entire platoon in one transport, keep in mind that the more bodies in one bird, the longer your DZ or the need to have multiple sticks in one bird and have go-arounds, which means longer time before all troops are in the AO. For motorized jumps, the platoon has 11 vehicles. 10 if you forego the Platoon HQ vehicle and have them ride along with the infantry. Each C-17 fits 5 Vehicles. Math."; - id=272; + id=426; }; class Item1 { @@ -2439,7 +1900,7 @@ class items dataType="Object"; class PositionInfo { - position[]={11.10498,3.3578539,-14.803711}; + position[]={11.08252,3.3578539,20.386719}; }; side="Empty"; flags=4; @@ -2447,7 +1908,7 @@ class items { dynamicSimulation=1; }; - id=274; + id=428; type="USAF_C17"; class CustomAttributes { @@ -2468,12 +1929,12 @@ class items }; }; }; - id=273; + id=427; }; }; - id=271; + id=425; }; - class Item8 + class Item7 { dataType="Layer"; name="USAF Service Menu"; @@ -2485,7 +1946,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.0727539,1.9255862,52.067871}; + position[]={6.2827148,1.9255862,51.668945}; }; side="Empty"; flags=4; @@ -2493,7 +1954,7 @@ class items { dynamicSimulation=1; }; - id=276; + id=430; type="B_Truck_01_ammo_F"; class CustomAttributes { @@ -2531,7 +1992,7 @@ class items dataType="Object"; class PositionInfo { - position[]={11.072754,1.9160042,52.067871}; + position[]={11.282715,1.9160042,51.668945}; }; side="Empty"; flags=4; @@ -2539,7 +2000,7 @@ class items { dynamicSimulation=1; }; - id=277; + id=431; type="B_Truck_01_fuel_F"; class CustomAttributes { @@ -2577,7 +2038,7 @@ class items dataType="Object"; class PositionInfo { - position[]={16.072754,2.3134775,52.067871}; + position[]={16.282715,2.3134775,51.668945}; }; side="Empty"; flags=4; @@ -2585,7 +2046,7 @@ class items { dynamicSimulation=1; }; - id=278; + id=432; type="B_Truck_01_Repair_F"; class CustomAttributes { @@ -2623,9 +2084,9 @@ class items dataType="Logic"; class PositionInfo { - position[]={6.0727539,0,62.067871}; + position[]={6.2827148,0,61.668945}; }; - id=279; + id=433; type="USAF_ServiceMenu_moduleAddRearmService"; class CustomAttributes { @@ -2663,9 +2124,9 @@ class items dataType="Logic"; class PositionInfo { - position[]={11.072754,0,62.067871}; + position[]={11.282715,0,61.668945}; }; - id=280; + id=434; type="USAF_ServiceMenu_moduleAddRefuelService"; class CustomAttributes { @@ -2690,9 +2151,9 @@ class items dataType="Logic"; class PositionInfo { - position[]={16.072754,0,62.067871}; + position[]={16.282715,0,61.668945}; }; - id=281; + id=435; type="USAF_ServiceMenu_moduleAddRepairService"; class CustomAttributes { @@ -2713,7 +2174,7 @@ class items }; }; }; - id=275; + id=429; }; }; class connections @@ -2728,8 +2189,8 @@ class connections class Item0 { linkID=0; - item0=279; - item1=276; + item0=433; + item1=430; class CustomData { type="Sync"; @@ -2738,8 +2199,8 @@ class connections class Item1 { linkID=1; - item0=280; - item1=277; + item0=434; + item1=431; class CustomData { type="Sync"; @@ -2748,8 +2209,8 @@ class connections class Item2 { linkID=2; - item0=281; - item1=278; + item0=435; + item1=432; class CustomData { type="Sync"; diff --git a/Compositions/Cav_Fixed_Wing_Aviation/header.sqe b/Compositions/Cav_Fixed_Wing_Aviation/header.sqe index e07fc478f..13cbd95ee 100644 --- a/Compositions/Cav_Fixed_Wing_Aviation/header.sqe +++ b/Compositions/Cav_Fixed_Wing_Aviation/header.sqe @@ -4,4 +4,22 @@ author="=7Cav=cpl.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= { + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "USAF_F22_C", + "Desert", + "cav_alpha_characters", + "cav_alpha_characters_units", + "USAF_A10_C", + "USAF_F35A_C", + "USAF_MQ9", + "USAF_RQ4A", + "USAF_C130J_C", + "USAF_C17_C", + "A3_Soft_F_Gamma_Truck_01", + "A3_Soft_F_Exp_Truck_01", + "USAF_ServiceMenu", + "ace_realisticnames", + "ace_rearm", + "ace_refuel" }; diff --git a/Compositions/Cav_JTAC_Addon/composition.sqe b/Compositions/Cav_JTAC_Addon/composition.sqe index 2ecbfe4a1..c8aad2bd4 100644 --- a/Compositions/Cav_JTAC_Addon/composition.sqe +++ b/Compositions/Cav_JTAC_Addon/composition.sqe @@ -1,5 +1,5 @@ version=54; -center[]={4790.3262,5,7504.4702}; +center[]={5673.6069,5,7232.1265}; class items { items=2; @@ -15,12 +15,11 @@ class items dataType="Comment"; class PositionInfo { - position[]={0.08984375,0.68976974,-0.14892578}; + position[]={0.088867188,0,-0.1484375}; }; title="JTAC vs TACP (Tooltip)"; description="A single JTAC is best used when less than 2 air assets are on the field. A TACP Team almost becomes a necessity when there are more than 2 air assets in play for attack aviation. A TACP team handles BOTH CAS Fires and PZ Pickup Requests. (2x JTAC, 1x CCT, 1x Security)"; - id=371; - atlOffset=0.68976974; + id=438; }; class Item1 { @@ -41,7 +40,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-0.61230469,0.0014390945,0.53076172}; + position[]={-0.61328125,0.0014390945,0.53125}; }; side="West"; flags=7; @@ -52,7 +51,7 @@ class items description="JTAC@CHAOS-1"; isPlayable=1; }; - id=368; + id=441; type="Cav_B_A_JFO_Infidel_1_F"; class CustomAttributes { @@ -89,10 +88,10 @@ class items class Attributes { }; - id=367; + id=440; }; }; - id=378; + id=439; }; class Item2 { @@ -113,7 +112,7 @@ class items dataType="Object"; class PositionInfo { - position[]={0.60058594,0.0014390945,1.4936523}; + position[]={0.59960938,0.0014390945,1.4941406}; }; side="West"; flags=7; @@ -124,7 +123,7 @@ class items description="JTAC@CHAOS-2"; isPlayable=1; }; - id=381; + id=444; type="Cav_B_A_JFO_Infidel_1_F"; class CustomAttributes { @@ -161,14 +160,13 @@ class items class Attributes { }; - id=380; + id=443; }; }; - id=379; + id=442; }; }; - id=366; - atlOffset=0.17244244; + id=437; }; class Item1 { @@ -196,7 +194,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-0.68164063,0.0014390945,-1.2719727}; + position[]={-0.68261719,0.0014390945,-1.2714844}; angles[]={-0,6.2674112,0}; }; side="West"; @@ -209,7 +207,7 @@ class items description="TACP Combat Controller@VANQUISH-1"; isPlayable=1; }; - id=376; + id=448; type="Cav_B_A_JFO_F"; class CustomAttributes { @@ -246,10 +244,10 @@ class items class Attributes { }; - id=375; + id=447; }; }; - id=382; + id=446; }; class Item1 { @@ -270,7 +268,7 @@ class items dataType="Object"; class PositionInfo { - position[]={0.6171875,0.0014390945,-0.46875}; + position[]={0.61621094,0.0014390945,-0.46826172}; angles[]={-0,6.2425685,0}; }; side="West"; @@ -283,7 +281,7 @@ class items description="TACP Combat Controller@VANQUISH-2"; isPlayable=1; }; - id=374; + id=451; type="Cav_B_B_Scout_PlatoonLead_F"; class CustomAttributes { @@ -320,12 +318,12 @@ class items class Attributes { }; - id=373; + id=450; }; }; - id=384; + id=449; }; }; - id=372; + id=445; }; }; diff --git a/Compositions/Cav_JTAC_Addon/header.sqe b/Compositions/Cav_JTAC_Addon/header.sqe index 07c01cb3f..d64aaf72a 100644 --- a/Compositions/Cav_JTAC_Addon/header.sqe +++ b/Compositions/Cav_JTAC_Addon/header.sqe @@ -4,4 +4,8 @@ author="=7Cav=2LT.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= { + "Desert", + "cav_alpha_characters_units", + "cav_alpha_characters", + "cav_troops_bravo_viking" }; diff --git a/Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe b/Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe index ae366ba7d..41942fd7e 100644 --- a/Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe +++ b/Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe @@ -1,5 +1,5 @@ version=54; -center[]={379.94824,5,2442.3936}; +center[]={5671.4814,5,7227.3887}; class items { items=6; @@ -29,7 +29,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-0.32034302,0.0014390945,15.8396}; + position[]={-0.32763672,0.0014390945,15.970703}; }; side="West"; flags=6; @@ -40,7 +40,7 @@ class items description="Platoon Leader@MISFIT-6"; isPlayable=1; }; - id=940; + id=456; type="Cav_B_C_PlatoonLeader_F"; class CustomAttributes { @@ -78,10 +78,10 @@ class items { dynamicSimulation=1; }; - id=939; + id=455; }; }; - id=938; + id=454; }; class Item1 { @@ -95,7 +95,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-0.46487427,0.89242268,17.634521}; + position[]={-0.47216797,0.89242268,17.765625}; }; side="Empty"; flags=4; @@ -105,7 +105,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=942; + id=458; type="B_supplyCrate_F"; class CustomAttributes { @@ -137,7 +137,7 @@ class items dataType="Object"; class PositionInfo { - position[]={1.707489,0.0014390945,15.821533}; + position[]={1.7001953,0.0014390945,15.953125}; }; side="West"; flags=6; @@ -148,7 +148,7 @@ class items description="Platoon Sergeant@MISFIT-5"; isPlayable=1; }; - id=944; + id=460; type="Cav_B_C_PlatoonSergeant_F"; class CustomAttributes { @@ -186,7 +186,7 @@ class items { dynamicSimulation=1; }; - id=943; + id=459; }; class Item2 { @@ -200,7 +200,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-2.292511,0.0014390945,15.814697}; + position[]={-2.2998047,0.0014390945,15.946289}; }; side="West"; flags=6; @@ -211,7 +211,7 @@ class items description="Platoon Medic@MISFIT-7"; isPlayable=1; }; - id=946; + id=462; type="Cav_B_C_PlatoonMedic_F"; class CustomAttributes { @@ -262,27 +262,24 @@ class items { dynamicSimulation=1; }; - id=945; + id=461; }; class Item3 { dataType="Comment"; class PositionInfo { - position[]={-0.32034302,0.01953125,9.7888184}; + position[]={-0.021484375,0,4.7529297}; }; title="Misfit (Tooltip)"; description="Charlie Company, when motorized, uses either M1151 Humvees (M240s for rifle squads, M2 and Mk19 for WPN Squads) or the M1240/A1 MRAPs. You can use the SOCOM GMVs as well as an up-gun solution depending on the op. For air assault (helicopter) solutions, delete the humvees. Airborne, depending on the mission, may require jumping the humvees with the troops for additional mobility and expansion of the airhead."; - id=947; - atlOffset=0.01953125; + id=463; }; }; - id=941; - atlOffset=0.009765625; + id=457; }; }; - id=937; - atlOffset=0.0048828125; + id=453; }; class Item1 { @@ -296,7 +293,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.196228,0.89242268,5.263916}; + position[]={-7.2036133,0.89242268,5.3955078}; }; side="Empty"; flags=4; @@ -306,7 +303,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=949; + id=465; type="B_supplyCrate_F"; class CustomAttributes { @@ -338,7 +335,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.196228,0.0014390945,3.314209}; + position[]={-7.2036133,0.0014390945,3.4453125}; }; side="West"; flags=6; @@ -349,7 +346,7 @@ class items description="Squad Leader@MISFIT-1"; isPlayable=1; }; - id=951; + id=467; type="Cav_B_C_SquadLeader_F"; class CustomAttributes { @@ -387,7 +384,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-5.6981812,0.0014390945,2.3137207}; + position[]={-5.7055664,0.0014390945,2.4453125}; }; side="West"; flags=5; @@ -399,7 +396,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=952; + id=468; type="Cav_B_C_Alpha_FireTeamLeader_F"; }; class Item2 @@ -407,7 +404,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-6.6981812,0.0014390945,2.3137207}; + position[]={-6.7055664,0.0014390945,2.4453125}; }; side="West"; flags=5; @@ -418,7 +415,7 @@ class items description="Alpha Automatic Rifleman"; isPlayable=1; }; - id=953; + id=469; type="Cav_B_C_Alpha_AutomaticRifleman_F"; }; class Item3 @@ -426,7 +423,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.6981812,0.0014390945,2.3137207}; + position[]={-7.7055664,0.0014390945,2.4453125}; }; side="West"; flags=5; @@ -437,7 +434,7 @@ class items description="Alpha Grenadier"; isPlayable=1; }; - id=954; + id=470; type="Cav_B_C_Alpha_Grenadier_F"; }; class Item4 @@ -445,7 +442,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.6981812,0.0014390945,2.3137207}; + position[]={-8.7055664,0.0014390945,2.4453125}; }; side="West"; flags=5; @@ -456,7 +453,7 @@ class items description="Alpha Rifleman (LAT)"; isPlayable=1; }; - id=955; + id=471; type="Cav_B_C_Alpha_RiflemanLAT_F"; }; class Item5 @@ -464,7 +461,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-5.6981812,0.0014390945,1.3137207}; + position[]={-5.7055664,0.0014390945,1.4453125}; }; side="West"; flags=5; @@ -476,7 +473,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=956; + id=472; type="Cav_B_C_Bravo_FireTeamLeader_F"; }; class Item6 @@ -484,7 +481,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-6.6981812,0.0014390945,1.3137207}; + position[]={-6.7055664,0.0014390945,1.4453125}; }; side="West"; flags=5; @@ -495,7 +492,7 @@ class items description="Bravo Automatic Rifleman"; isPlayable=1; }; - id=957; + id=473; type="Cav_B_C_Bravo_AutomaticRifleman_F"; }; class Item7 @@ -503,7 +500,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.6981812,0.0014390945,1.3137207}; + position[]={-7.7055664,0.0014390945,1.4453125}; }; side="West"; flags=5; @@ -514,7 +511,7 @@ class items description="Bravo Grenadier"; isPlayable=1; }; - id=958; + id=474; type="Cav_B_C_Bravo_Grenadier_F"; }; class Item8 @@ -522,7 +519,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.7059937,0.0014390945,1.248291}; + position[]={-8.7133789,0.0014390945,1.3798828}; }; side="West"; flags=5; @@ -532,7 +529,7 @@ class items description="Bravo CLS"; isPlayable=1; }; - id=959; + id=475; type="Cav_B_C_CombatLifeSaver_F"; class CustomAttributes { @@ -570,10 +567,10 @@ class items { dynamicSimulation=1; }; - id=950; + id=466; }; }; - id=948; + id=464; }; class Item2 { @@ -587,7 +584,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.662384,0.89242268,4.6655273}; + position[]={7.6552734,0.89242268,4.796875}; }; side="Empty"; flags=4; @@ -597,7 +594,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=961; + id=477; type="B_supplyCrate_F"; class CustomAttributes { @@ -629,7 +626,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.662384,0.0014390945,2.7158203}; + position[]={7.6552734,0.0014390945,2.847168}; }; side="West"; flags=6; @@ -640,7 +637,7 @@ class items description="Squad Leader@MISFIT-2"; isPlayable=1; }; - id=963; + id=479; type="Cav_B_C_SquadLeader_F"; class CustomAttributes { @@ -678,7 +675,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.162384,0.0014390945,1.715332}; + position[]={9.1552734,0.0014390945,1.8466797}; }; side="West"; flags=5; @@ -690,7 +687,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=964; + id=480; type="Cav_B_C_Alpha_FireTeamLeader_F"; }; class Item2 @@ -698,7 +695,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.162384,0.0014390945,1.715332}; + position[]={8.1552734,0.0014390945,1.8466797}; }; side="West"; flags=5; @@ -709,7 +706,7 @@ class items description="Alpha Automatic Rifleman"; isPlayable=1; }; - id=965; + id=481; type="Cav_B_C_Alpha_AutomaticRifleman_F"; }; class Item3 @@ -717,7 +714,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.162384,0.0014390945,1.715332}; + position[]={7.1552734,0.0014390945,1.8466797}; }; side="West"; flags=5; @@ -728,7 +725,7 @@ class items description="Alpha Grenadier"; isPlayable=1; }; - id=966; + id=482; type="Cav_B_C_Alpha_Grenadier_F"; }; class Item4 @@ -736,7 +733,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.162384,0.0014390945,1.715332}; + position[]={6.1552734,0.0014390945,1.8466797}; }; side="West"; flags=5; @@ -747,7 +744,7 @@ class items description="Alpha Rifleman (LAT)"; isPlayable=1; }; - id=967; + id=483; type="Cav_B_C_Alpha_RiflemanLAT_F"; }; class Item5 @@ -755,7 +752,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.162384,0.0014390945,0.71533203}; + position[]={9.1552734,0.0014390945,0.84667969}; }; side="West"; flags=5; @@ -767,7 +764,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=968; + id=484; type="Cav_B_C_Bravo_FireTeamLeader_F"; }; class Item6 @@ -775,7 +772,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.162384,0.0014390945,0.71533203}; + position[]={8.1552734,0.0014390945,0.84667969}; }; side="West"; flags=5; @@ -786,7 +783,7 @@ class items description="Bravo Automatic Rifleman"; isPlayable=1; }; - id=969; + id=485; type="Cav_B_C_Bravo_AutomaticRifleman_F"; }; class Item7 @@ -794,7 +791,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.162384,0.0014390945,0.71533203}; + position[]={7.1552734,0.0014390945,0.84667969}; }; side="West"; flags=5; @@ -805,7 +802,7 @@ class items description="Bravo Grenadier"; isPlayable=1; }; - id=970; + id=486; type="Cav_B_C_Bravo_Grenadier_F"; }; class Item8 @@ -813,7 +810,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.1643372,0.0014390945,0.72705078}; + position[]={6.1572266,0.0014390945,0.85839844}; }; side="West"; flags=5; @@ -823,7 +820,7 @@ class items description="Bravo CLS"; isPlayable=1; }; - id=971; + id=487; type="Cav_B_C_CombatLifeSaver_F"; class CustomAttributes { @@ -861,10 +858,10 @@ class items { dynamicSimulation=1; }; - id=962; + id=478; }; }; - id=960; + id=476; }; class Item3 { @@ -878,7 +875,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.196228,0.89242268,-6.236084}; + position[]={-8.2036133,0.89242268,-6.1044922}; }; side="Empty"; flags=4; @@ -888,7 +885,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=973; + id=489; type="B_supplyCrate_F"; class CustomAttributes { @@ -920,7 +917,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.196228,0.0014390945,-8.185791}; + position[]={-8.2036133,0.0014390945,-8.0546875}; }; side="West"; flags=6; @@ -931,7 +928,7 @@ class items description="Squad Leader@MISFIT-3"; isPlayable=1; }; - id=975; + id=491; type="Cav_B_C_SquadLeader_F"; class CustomAttributes { @@ -969,7 +966,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-6.6972046,0.0014390945,-9.1862793}; + position[]={-6.7045898,0.0014390945,-9.0546875}; }; side="West"; flags=5; @@ -981,7 +978,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=976; + id=492; type="Cav_B_C_Alpha_FireTeamLeader_F"; }; class Item2 @@ -989,7 +986,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.6972046,0.0014390945,-9.1862793}; + position[]={-7.7045898,0.0014390945,-9.0546875}; }; side="West"; flags=5; @@ -1000,7 +997,7 @@ class items description="Alpha Automatic Rifleman"; isPlayable=1; }; - id=977; + id=493; type="Cav_B_C_Alpha_AutomaticRifleman_F"; }; class Item3 @@ -1008,7 +1005,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.6972046,0.0014390945,-9.1862793}; + position[]={-8.7045898,0.0014390945,-9.0546875}; }; side="West"; flags=5; @@ -1019,7 +1016,7 @@ class items description="Alpha Grenadier"; isPlayable=1; }; - id=978; + id=494; type="Cav_B_C_Alpha_Grenadier_F"; }; class Item4 @@ -1027,7 +1024,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.6972046,0.0014390945,-9.1862793}; + position[]={-9.7045898,0.0014390945,-9.0546875}; }; side="West"; flags=5; @@ -1038,7 +1035,7 @@ class items description="Alpha Rifleman (LAT)"; isPlayable=1; }; - id=979; + id=495; type="Cav_B_C_Alpha_RiflemanLAT_F"; }; class Item5 @@ -1046,7 +1043,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-6.6972046,0.0014390945,-10.186279}; + position[]={-6.7045898,0.0014390945,-10.054688}; }; side="West"; flags=5; @@ -1058,7 +1055,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=980; + id=496; type="Cav_B_C_Bravo_FireTeamLeader_F"; }; class Item6 @@ -1066,7 +1063,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-7.6972046,0.0014390945,-10.186279}; + position[]={-7.7045898,0.0014390945,-10.054688}; }; side="West"; flags=5; @@ -1077,7 +1074,7 @@ class items description="Bravo Automatic Rifleman"; isPlayable=1; }; - id=981; + id=497; type="Cav_B_C_Bravo_AutomaticRifleman_F"; }; class Item7 @@ -1085,7 +1082,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-8.6972046,0.0014390945,-10.186279}; + position[]={-8.7045898,0.0014390945,-10.054688}; }; side="West"; flags=5; @@ -1096,7 +1093,7 @@ class items description="Bravo Grenadier"; isPlayable=1; }; - id=982; + id=498; type="Cav_B_C_Bravo_Grenadier_F"; }; class Item8 @@ -1104,7 +1101,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-9.5477905,0.0014390945,-10.228271}; + position[]={-9.5551758,0.0014390945,-10.09668}; }; side="West"; flags=5; @@ -1114,7 +1111,7 @@ class items description="Bravo CLS"; isPlayable=1; }; - id=983; + id=499; type="Cav_B_C_CombatLifeSaver_F"; class CustomAttributes { @@ -1152,10 +1149,10 @@ class items { dynamicSimulation=1; }; - id=974; + id=490; }; }; - id=972; + id=488; }; class Item4 { @@ -1169,7 +1166,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.8401184,0.89242268,-5.2084961}; + position[]={7.8330078,0.89242268,-5.0771484}; }; side="Empty"; flags=4; @@ -1179,7 +1176,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=985; + id=501; type="B_supplyCrate_F"; class CustomAttributes { @@ -1211,7 +1208,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.662384,0.0014390945,-7.2841797}; + position[]={7.6552734,0.0014390945,-7.152832}; }; side="West"; flags=6; @@ -1222,7 +1219,7 @@ class items description="Squad Leader@MISFIT-4"; isPlayable=1; }; - id=987; + id=503; type="Cav_B_C_Weapons_SquadLeader_F"; class CustomAttributes { @@ -1260,7 +1257,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.162384,0.0014390945,-8.284668}; + position[]={9.1552734,0.0014390945,-8.1533203}; }; side="West"; flags=4; @@ -1272,7 +1269,7 @@ class items description="Alpha Fireteam Leader"; isPlayable=1; }; - id=988; + id=504; type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; class CustomAttributes { @@ -1310,7 +1307,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.162384,0.0014390945,-8.284668}; + position[]={8.1552734,0.0014390945,-8.1533203}; }; side="West"; flags=4; @@ -1321,7 +1318,7 @@ class items description="Alpha Machine Gunner"; isPlayable=1; }; - id=989; + id=505; type="Cav_B_C_Weapons_M240B_Machinegunner_F"; class CustomAttributes { @@ -1359,7 +1356,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.162384,0.0014390945,-8.284668}; + position[]={7.1552734,0.0014390945,-8.1533203}; }; side="West"; flags=4; @@ -1370,7 +1367,7 @@ class items description="Alpha M240 Ammo Bearer"; isPlayable=1; }; - id=990; + id=506; type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; class CustomAttributes { @@ -1408,7 +1405,7 @@ class items dataType="Object"; class PositionInfo { - position[]={9.162384,0.0014390945,-9.284668}; + position[]={9.1552734,0.0014390945,-9.1533203}; }; side="West"; flags=4; @@ -1420,7 +1417,7 @@ class items description="Bravo Fireteam Leader"; isPlayable=1; }; - id=991; + id=507; type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; class CustomAttributes { @@ -1458,7 +1455,7 @@ class items dataType="Object"; class PositionInfo { - position[]={8.162384,0.0014390945,-9.284668}; + position[]={8.1552734,0.0014390945,-9.1533203}; }; side="West"; flags=4; @@ -1469,7 +1466,7 @@ class items description="Bravo Machine Gunner"; isPlayable=1; }; - id=992; + id=508; type="Cav_B_C_Weapons_M240B_Machinegunner_F"; class CustomAttributes { @@ -1507,7 +1504,7 @@ class items dataType="Object"; class PositionInfo { - position[]={7.162384,0.0014390945,-9.284668}; + position[]={7.1552734,0.0014390945,-9.1533203}; }; side="West"; flags=4; @@ -1518,7 +1515,7 @@ class items description="Bravo M240 Ammo Bearer"; isPlayable=1; }; - id=993; + id=509; type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; class CustomAttributes { @@ -1556,7 +1553,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.162384,0.0014390945,-8.284668}; + position[]={6.1552734,0.0014390945,-8.1533203}; }; side="West"; flags=4; @@ -1567,7 +1564,7 @@ class items description="Charlie MAAWS Gunner"; isPlayable=1; }; - id=994; + id=510; type="Cav_B_C_Weapons_MAAWS_MAAWSGunner_F"; class CustomAttributes { @@ -1605,7 +1602,7 @@ class items dataType="Object"; class PositionInfo { - position[]={6.153595,0.0014390945,-9.3100586}; + position[]={6.1464844,0.0014390945,-9.1787109}; }; side="West"; flags=4; @@ -1615,7 +1612,7 @@ class items description="Charlie MAAWS Assistant"; isPlayable=1; }; - id=995; + id=511; type="Cav_B_C_Weapons_MAAWS_MAAWSAssistant_F"; class CustomAttributes { @@ -1653,10 +1650,10 @@ class items { dynamicSimulation=1; }; - id=986; + id=502; }; }; - id=984; + id=500; }; class Item5 { @@ -1670,7 +1667,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-0.32034302,1.7828913,11.789063}; + position[]={-0.32763672,1.7828913,11.92041}; }; side="Empty"; flags=4; @@ -1681,7 +1678,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1011; + id=513; type="rhsusf_m1152_rsv_usarmy_wd"; class CustomAttributes { @@ -1706,7 +1703,7 @@ class items dataType="Object"; class PositionInfo { - position[]={13.319611,1.7822218,2.6328125}; + position[]={13.3125,1.7822218,2.7641602}; }; side="Empty"; flags=4; @@ -1718,7 +1715,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1012; + id=514; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -2037,7 +2034,7 @@ class items dataType="Object"; class PositionInfo { - position[]={2.7527161,1.7822218,-7.3881836}; + position[]={2.7456055,1.7822218,-7.2568359}; }; side="Empty"; flags=4; @@ -2049,7 +2046,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1013; + id=515; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -2368,7 +2365,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-3.1801147,1.7822218,-8.2009277}; + position[]={-3.1875,1.7822218,-8.0693359}; }; side="Empty"; flags=4; @@ -2380,7 +2377,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1014; + id=516; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -2699,7 +2696,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-12.926697,1.7822218,-8.4118652}; + position[]={-12.934082,1.7822218,-8.2802734}; }; side="Empty"; flags=4; @@ -2711,7 +2708,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1015; + id=517; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -3030,7 +3027,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-3.1312866,1.7822218,2.611084}; + position[]={-3.1386719,1.7822218,2.7421875}; }; side="Empty"; flags=4; @@ -3042,7 +3039,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1016; + id=518; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -3361,7 +3358,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-12.922302,1.7822218,3.1057129}; + position[]={-12.929688,1.7822218,3.2373047}; }; side="Empty"; flags=4; @@ -3373,7 +3370,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1017; + id=519; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -3692,7 +3689,7 @@ class items dataType="Object"; class PositionInfo { - position[]={2.8547668,1.7822218,1.793457}; + position[]={2.8476563,1.7822218,1.9248047}; }; side="Empty"; flags=4; @@ -3704,7 +3701,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1018; + id=520; type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; class CustomAttributes { @@ -4023,7 +4020,7 @@ class items dataType="Object"; class PositionInfo { - position[]={12.937775,1.7822218,-8.1489258}; + position[]={12.930664,1.7822218,-8.0175781}; }; side="Empty"; flags=4; @@ -4035,7 +4032,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=1019; + id=521; type="rhsusf_m1165a1_gmv_mk19_m240_socom_d"; class CustomAttributes { @@ -4350,6 +4347,6 @@ class items }; }; }; - id=1008; + id=512; }; }; diff --git a/Compositions/Cav_Misfit_Platoon_Deployment/header.sqe b/Compositions/Cav_Misfit_Platoon_Deployment/header.sqe index 76ed7b615..8f2df6ac2 100644 --- a/Compositions/Cav_Misfit_Platoon_Deployment/header.sqe +++ b/Compositions/Cav_Misfit_Platoon_Deployment/header.sqe @@ -7,7 +7,7 @@ requiredAddons[]= "cav_charlie_characters", "A3_Weapons_F_Ammoboxes", "ace_cargo", - "RSPN_Assets", + "Desert", "cav_troops_charlie_weapons", "rhsusf_c_m11xx" }; diff --git a/Compositions/Cav_Rotary_Aviation/composition.sqe b/Compositions/Cav_Rotary_Aviation/composition.sqe index b187ed7c2..14d751a93 100644 --- a/Compositions/Cav_Rotary_Aviation/composition.sqe +++ b/Compositions/Cav_Rotary_Aviation/composition.sqe @@ -1,5 +1,5 @@ version=54; -center[]={4854.0132,5,7601.1719}; +center[]={5666.0396,5,7224.4438}; class items { items=6; @@ -22,7 +22,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-20.149902,0.89242268,22.914063}; + position[]={-19.740723,0.89242268,23.291504}; }; side="Empty"; flags=4; @@ -32,7 +32,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=2; + id=525; type="B_supplyCrate_F"; class CustomAttributes { @@ -57,7 +57,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-12.015137,2.3659716,18.836426}; + position[]={-11.605957,2.3659716,19.213867}; }; side="Empty"; flags=4; @@ -68,7 +68,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=3; + id=526; type="RHS_AH64D_wd"; }; class Item2 @@ -83,7 +83,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-17.741699,0.0014390945,20.830078}; + position[]={-17.33252,0.0014390945,21.20752}; }; side="West"; flags=7; @@ -95,7 +95,7 @@ class items description="Pilot@RAIDER-1"; isPlayable=1; }; - id=5; + id=528; type="Cav_B_A_Helicopter_Att_Pilot_Raider_1_F"; class CustomAttributes { @@ -146,7 +146,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-16.742188,0.0014390945,20.830078}; + position[]={-16.333008,0.0014390945,21.20752}; }; side="West"; flags=5; @@ -158,7 +158,7 @@ class items description="Co-Pilot@RAIDER-1"; isPlayable=1; }; - id=6; + id=529; type="Cav_B_A_Helicopter_Att_coPilot_F"; class CustomAttributes { @@ -209,10 +209,10 @@ class items { dynamicSimulation=1; }; - id=4; + id=527; }; }; - id=1; + id=524; }; class Item1 { @@ -226,7 +226,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-26.89209,2.3659716,19.789551}; + position[]={-26.48291,2.3659716,20.166992}; }; side="Empty"; flags=4; @@ -237,7 +237,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=8; + id=531; type="RHS_AH64D_wd"; }; class Item1 @@ -252,7 +252,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-23.095215,0.0014390945,21.298828}; + position[]={-22.686035,0.0014390945,21.67627}; }; side="West"; flags=7; @@ -264,7 +264,7 @@ class items description="Pilot@RAIDER-2"; isPlayable=1; }; - id=10; + id=533; type="Cav_B_A_Helicopter_Att_Pilot_Raider_2_F"; class CustomAttributes { @@ -315,7 +315,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-22.095215,0.0014390945,21.298828}; + position[]={-21.686035,0.0014390945,21.67627}; }; side="West"; flags=5; @@ -327,7 +327,7 @@ class items description="Co-Pilot@RAIDER-2"; isPlayable=1; }; - id=11; + id=534; type="Cav_B_A_Helicopter_Att_coPilot_F"; class CustomAttributes { @@ -378,25 +378,25 @@ class items { dynamicSimulation=1; }; - id=9; + id=532; }; }; - id=7; + id=530; }; class Item2 { dataType="Comment"; class PositionInfo { - position[]={-20.565918,5.777462,22.292969}; + position[]={-20.156738,5.777462,22.67041}; }; title="Rotary Attack (Tooltip)"; description="The Apache functions much differently compared to what you may think attack rotary does. This is a glass cannon. It uses ATGMs and it's cannon from stand-off distances to achieve effects. These can also function largely without a JTAC and are much easier for a PLTHQ to call for fire if needed compared to Fixed Wing Attack. The Apaches can also theoretically be Airborne Forward Air Controllers (FAC-A) but it's usually not recommended depending on scale."; - id=12; + id=535; atlOffset=5.777462; }; }; - id=0; + id=523; atlOffset=2.888731; }; class Item1 @@ -418,8 +418,8 @@ class items dataType="Object"; class PositionInfo { - position[]={28.771973,2.0242615,-22.525391}; - angles[]={0,0.0050614546,0}; + position[]={29.181152,2.0242615,-22.147949}; + angles[]={-0,0.0050614546,0}; }; side="Empty"; flags=4; @@ -430,7 +430,7 @@ class items reportOwnPosition=1; pylons="VTX_4Rnd_ACE_Hellfire_AGM114K;VTX_M230_Chaingun_R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VTX_PylonRack_M261_DAGR;VTX_PylonRack_M261_M229;;"; }; - id=15; + id=538; type="vtx_MH60M_DAP_MLASS"; class CustomAttributes { @@ -795,7 +795,7 @@ class items dataType="Object"; class PositionInfo { - position[]={21.927734,0.0014390945,-20.219238}; + position[]={22.336914,0.0014390945,-19.841797}; }; side="West"; flags=6; @@ -807,7 +807,7 @@ class items description="DAP Pilot@BISON-1"; isPlayable=1; }; - id=17; + id=540; type="Cav_B_A_Helicopter_Tra_Pilot_F"; class CustomAttributes { @@ -858,7 +858,7 @@ class items dataType="Object"; class PositionInfo { - position[]={23.369629,0.0014390945,-20.292969}; + position[]={23.778809,0.0014390945,-19.915527}; }; side="West"; flags=5; @@ -868,7 +868,7 @@ class items description="Co-Pilot@BISON-1"; isPlayable=1; }; - id=18; + id=541; type="Cav_B_A_Helicopter_Tra_Pilot_F"; class CustomAttributes { @@ -906,10 +906,10 @@ class items { dynamicSimulation=1; }; - id=16; + id=539; }; }; - id=14; + id=537; }; class Item1 { @@ -923,7 +923,7 @@ class items dataType="Object"; class PositionInfo { - position[]={20.168457,0.89242458,-17.835938}; + position[]={20.577637,0.89242458,-17.458496}; }; side="Empty"; flags=4; @@ -933,7 +933,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=20; + id=543; type="B_supplyCrate_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -959,8 +959,8 @@ class items dataType="Object"; class PositionInfo { - position[]={11.955566,2.0242615,-22.007813}; - angles[]={0,0.0050614546,0}; + position[]={12.364746,2.0242615,-21.630371}; + angles[]={-0,0.0050614546,0}; }; side="Empty"; flags=4; @@ -971,7 +971,7 @@ class items reportOwnPosition=1; pylons="VTX_4Rnd_ACE_Hellfire_AGM114K;VTX_M230_Chaingun_R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VTX_PylonRack_M261_DAGR;VTX_PylonRack_M261_M229;;"; }; - id=21; + id=544; type="vtx_MH60M_DAP_MLASS"; class CustomAttributes { @@ -1336,7 +1336,7 @@ class items dataType="Object"; class PositionInfo { - position[]={16.158691,0.0014390945,-20.011719}; + position[]={16.567871,0.0014390945,-19.634277}; }; side="West"; flags=6; @@ -1348,7 +1348,7 @@ class items description="DAP Pilot@BISON-2"; isPlayable=1; }; - id=23; + id=546; type="Cav_B_A_Helicopter_Tra_Pilot_F"; class CustomAttributes { @@ -1399,7 +1399,7 @@ class items dataType="Object"; class PositionInfo { - position[]={17.043945,0.0014390945,-20.167969}; + position[]={17.453613,0.0014390945,-19.790039}; }; side="West"; flags=5; @@ -1407,8 +1407,9 @@ class items { init="this setgroupid [""BISON-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];"; description="Co-Pilot@BISON-2"; + isPlayable=1; }; - id=24; + id=547; type="Cav_B_A_Helicopter_Tra_Pilot_F"; class CustomAttributes { @@ -1459,10 +1460,10 @@ class items { dynamicSimulation=1; }; - id=22; + id=545; }; }; - id=19; + id=542; atlOffset=4.7683716e-007; }; class Item2 @@ -1470,15 +1471,15 @@ class items dataType="Comment"; class PositionInfo { - position[]={20.850098,5.777462,-28.102539}; + position[]={21.259277,5.777462,-27.725098}; }; title="Rotary Hybrid (Tooltip)"; description="While the DAPs can transport infantry, it is NOT their primary purpose. The DAPs provide a great option for escort with MH-60s due to being pretty much the same bird, and you can also flex additional personnel on here if needed. Think about using this if the mission calls for closer support and less armor-focused when comparing to the AH-64. This isn't going to replace CAS, it works great for escort of the birds, but that's it. It's going to struggle to deal with large concentrations of OPFOR."; - id=25; + id=548; atlOffset=5.777462; }; }; - id=13; + id=536; atlOffset=2.888731; }; class Item2 @@ -1500,7 +1501,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-13.175293,1.9401751,-1}; + position[]={-12.766113,1.9401751,-0.62255859}; }; side="Empty"; flags=4; @@ -1511,7 +1512,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=28; + id=551; type="RHS_MELB_AH6M"; class CustomAttributes { @@ -1556,7 +1557,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-17.122559,0.0014410019,1.71875}; + position[]={-16.713379,0.0014410019,2.0961914}; angles[]={-0,0.019358397,0}; }; side="West"; @@ -1569,7 +1570,7 @@ class items description="Pilot@SPARROW-1"; isPlayable=1; }; - id=30; + id=553; type="Cav_B_A_Helicopter_Att_Pilot_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -1621,7 +1622,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-15.617188,0.0014390945,1.4121094}; + position[]={-15.208008,0.0014390945,1.7895508}; angles[]={-0,0.019355701,0}; }; side="West"; @@ -1634,7 +1635,7 @@ class items description="Co-Pilot@SPARROW-1"; isPlayable=1; }; - id=31; + id=554; type="Cav_B_A_Helicopter_Att_Pilot_F"; class CustomAttributes { @@ -1685,11 +1686,11 @@ class items { dynamicSimulation=1; }; - id=29; + id=552; atlOffset=1.9073486e-006; }; }; - id=27; + id=550; atlOffset=9.5367432e-007; }; class Item1 @@ -1704,7 +1705,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-18.710449,0.89242458,4.2597656}; + position[]={-18.30127,0.89242458,4.637207}; angles[]={-0,3.1415925,0}; }; side="Empty"; @@ -1715,7 +1716,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=33; + id=556; type="B_supplyCrate_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -1741,7 +1742,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-23.675293,1.9401751,-1}; + position[]={-23.266113,1.9401751,-0.62255859}; }; side="Empty"; flags=4; @@ -1752,7 +1753,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=34; + id=557; type="RHS_MELB_AH6M"; class CustomAttributes { @@ -1797,7 +1798,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-21.040527,0.0014390945,1.8574219}; + position[]={-20.631348,0.0014390945,2.2348633}; angles[]={-0,0.016603449,0}; }; side="West"; @@ -1810,7 +1811,7 @@ class items description="Pilot@SPARROW-2"; isPlayable=1; }; - id=36; + id=559; type="Cav_B_A_Helicopter_Att_Pilot_F"; class CustomAttributes { @@ -1861,7 +1862,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-19.950195,0.0014390945,1.75}; + position[]={-19.541016,0.0014390945,2.1274414}; angles[]={-0,0.019355701,0}; }; side="West"; @@ -1874,7 +1875,7 @@ class items description="Co-Pilot@SPARROW-2"; isPlayable=1; }; - id=37; + id=560; type="Cav_B_A_Helicopter_Att_Pilot_F"; class CustomAttributes { @@ -1925,10 +1926,10 @@ class items { dynamicSimulation=1; }; - id=35; + id=558; }; }; - id=32; + id=555; atlOffset=4.7683716e-007; }; class Item2 @@ -1936,15 +1937,15 @@ class items dataType="Comment"; class PositionInfo { - position[]={-18.565918,5.777462,0.29296875}; + position[]={-18.156738,5.777462,0.67041016}; }; title="Rotary Light Attack (Tooltip)"; description="Not as long distance as the AH-64, the AH-6s function closer in reality to Fixed Wing, they come in low and fast, do a run, and get out. They can conversely be used as observation aircraft due to the FLIR camera as well and can pick off targets, but they will go down quite easily due to being entirely open. It's recommended to avoid using these in operations that have armor heavier than BTRs."; - id=38; + id=561; atlOffset=5.777462; }; }; - id=26; + id=549; atlOffset=2.8887315; }; class Item3 @@ -1966,7 +1967,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-12.565918,1.940177,-18.707031}; + position[]={-12.156738,1.940177,-18.32959}; }; side="Empty"; flags=4; @@ -1977,7 +1978,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=41; + id=564; type="RHS_MELB_MH6M"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2023,7 +2024,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-16.54248,0.0014410019,-15.130859}; + position[]={-16.133301,0.0014410019,-14.753418}; }; side="West"; flags=7; @@ -2035,7 +2036,7 @@ class items description="Pilot@RAVEN-1"; isPlayable=1; }; - id=43; + id=566; type="Cav_B_A_Helicopter_Att_Pilot_Raven_1_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2087,7 +2088,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-15.541992,0.0014390945,-15.130859}; + position[]={-15.132813,0.0014390945,-14.753418}; }; side="West"; flags=5; @@ -2099,7 +2100,7 @@ class items description="Co-Pilot@RAVEN-1"; isPlayable=1; }; - id=44; + id=567; type="Cav_B_A_Helicopter_Att_coPilot_F"; class CustomAttributes { @@ -2150,11 +2151,11 @@ class items { dynamicSimulation=1; }; - id=42; + id=565; atlOffset=1.9073486e-006; }; }; - id=40; + id=563; atlOffset=1.9073486e-006; }; class Item1 @@ -2169,7 +2170,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-18.030762,0.89242458,-12.919922}; + position[]={-17.621582,0.89242458,-12.54248}; }; side="Empty"; flags=4; @@ -2179,7 +2180,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=46; + id=569; type="B_supplyCrate_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2205,7 +2206,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-23.565918,1.9401751,-18.707031}; + position[]={-23.156738,1.9401751,-18.32959}; }; side="Empty"; flags=4; @@ -2216,7 +2217,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=47; + id=570; type="RHS_MELB_MH6M"; class CustomAttributes { @@ -2261,7 +2262,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-20.73584,0.0014390945,-14.578125}; + position[]={-20.32666,0.0014390945,-14.200684}; }; side="West"; flags=7; @@ -2273,7 +2274,7 @@ class items description="Pilot@RAVEN-2"; isPlayable=1; }; - id=49; + id=572; type="Cav_B_A_Helicopter_Att_Pilot_Raven_2_F"; class CustomAttributes { @@ -2324,7 +2325,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-19.736328,0.0014390945,-14.578125}; + position[]={-19.327148,0.0014390945,-14.200684}; }; side="West"; flags=5; @@ -2336,7 +2337,7 @@ class items description="Co-Pilot@RAVEN-2"; isPlayable=1; }; - id=50; + id=573; type="Cav_B_A_Helicopter_Att_coPilot_F"; class CustomAttributes { @@ -2387,10 +2388,10 @@ class items { dynamicSimulation=1; }; - id=48; + id=571; }; }; - id=45; + id=568; atlOffset=4.7683716e-007; }; class Item2 @@ -2405,7 +2406,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-18.558105,0.89242458,-26.695313}; + position[]={-18.148926,0.89242458,-26.317871}; }; side="Empty"; flags=4; @@ -2415,7 +2416,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=52; + id=575; type="B_supplyCrate_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2441,7 +2442,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-24.565918,1.940177,-32.707031}; + position[]={-24.156738,1.940177,-32.32959}; }; side="Empty"; flags=4; @@ -2452,7 +2453,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=53; + id=576; type="RHS_MELB_MH6M"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2498,7 +2499,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-21.138184,0.0014390945,-28.207031}; + position[]={-20.729004,0.0014390945,-27.82959}; }; side="West"; flags=7; @@ -2510,7 +2511,7 @@ class items description="Pilot@RAVEN-3"; isPlayable=1; }; - id=55; + id=578; type="Cav_B_A_Helicopter_Att_Pilot_Raven_3_F"; class CustomAttributes { @@ -2561,7 +2562,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-20.140137,0.0014390945,-28.207031}; + position[]={-19.730957,0.0014390945,-27.82959}; }; side="West"; flags=5; @@ -2573,7 +2574,7 @@ class items description="Co-Pilot@RAVEN-3"; isPlayable=1; }; - id=56; + id=579; type="Cav_B_A_Helicopter_Att_coPilot_F"; class CustomAttributes { @@ -2624,10 +2625,10 @@ class items { dynamicSimulation=1; }; - id=54; + id=577; }; }; - id=51; + id=574; atlOffset=9.5367432e-007; }; class Item3 @@ -2642,7 +2643,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-12.565918,1.940177,-33.207031}; + position[]={-12.156738,1.940177,-32.82959}; }; side="Empty"; flags=4; @@ -2653,7 +2654,7 @@ class items receiveRemoteTargets=1; reportOwnPosition=1; }; - id=58; + id=581; type="RHS_MELB_MH6M"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2699,7 +2700,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-16.774902,0.0014410019,-28.982422}; + position[]={-16.365723,0.0014410019,-28.60498}; }; side="West"; flags=7; @@ -2711,7 +2712,7 @@ class items description="Pilot@RAVEN-4"; isPlayable=1; }; - id=60; + id=583; type="Cav_B_A_Helicopter_Att_Pilot_Raven_4_F"; atlOffset=1.9073486e-006; class CustomAttributes @@ -2763,7 +2764,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-15.775391,0.0014390945,-28.981934}; + position[]={-15.366211,0.0014390945,-28.604492}; }; side="West"; flags=5; @@ -2775,7 +2776,7 @@ class items description="Co-Pilot@RAVEN-4"; isPlayable=1; }; - id=61; + id=584; type="Cav_B_A_Helicopter_Att_coPilot_F"; class CustomAttributes { @@ -2826,11 +2827,11 @@ class items { dynamicSimulation=1; }; - id=59; + id=582; atlOffset=1.9073486e-006; }; }; - id=57; + id=580; atlOffset=1.9073486e-006; }; class Item4 @@ -2838,15 +2839,15 @@ class items dataType="Comment"; class PositionInfo { - position[]={-18.351074,5.777462,-20.341797}; + position[]={-17.941895,5.777462,-19.964355}; }; title="Rotary Light Transport (Tooltip)"; description="IOT lift an entire platoon (with 2x 4-man Atlas teams), you will need up to 3 lifts. Separate the squads into one fireteam per bird, SL rides with one team, PL member with the other. You may be able to squeeze one Atlas team in the second lift. Best practice would be to use half a platoon (2 squads) with one 4-man medical team and then bring additional assets along for fun and variety."; - id=62; + id=585; atlOffset=5.777462; }; }; - id=39; + id=562; atlOffset=2.888732; }; class Item4 @@ -2868,8 +2869,8 @@ class items dataType="Object"; class PositionInfo { - position[]={28.566895,2.0242615,26.232422}; - angles[]={0,0.0050614546,0}; + position[]={28.976074,2.0242615,26.609863}; + angles[]={-0,0.0050614546,0}; }; side="Empty"; flags=4; @@ -2880,7 +2881,7 @@ class items reportOwnPosition=1; pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; }; - id=65; + id=588; type="vtx_MH60M"; class CustomAttributes { @@ -3245,7 +3246,7 @@ class items dataType="Object"; class PositionInfo { - position[]={22.666992,0.0014390945,25.186035}; + position[]={23.076172,0.0014390945,25.563477}; }; side="West"; flags=7; @@ -3257,7 +3258,7 @@ class items description="Pilot@BUFFALO-1"; isPlayable=1; }; - id=67; + id=590; type="Cav_B_A_Helicopter_Tra_Pilot_B1_F"; class CustomAttributes { @@ -3321,7 +3322,7 @@ class items dataType="Object"; class PositionInfo { - position[]={23.666992,0.0014390945,25.187988}; + position[]={24.076172,0.0014390945,25.56543}; }; side="West"; flags=5; @@ -3333,7 +3334,7 @@ class items description="Co-Pilot@BUFFALO-1"; isPlayable=1; }; - id=68; + id=591; type="Cav_B_A_Helicopter_Tra_coPilot_F"; class CustomAttributes { @@ -3397,7 +3398,7 @@ class items dataType="Object"; class PositionInfo { - position[]={22.666992,0.0014390945,24.187988}; + position[]={23.076172,0.0014390945,24.56543}; }; side="West"; flags=5; @@ -3408,7 +3409,7 @@ class items description="Crew Chief@BUFFALO-1"; isPlayable=1; }; - id=69; + id=592; type="Cav_B_A_Helicopter_Tra_CrewChief_F"; class CustomAttributes { @@ -3472,7 +3473,7 @@ class items dataType="Object"; class PositionInfo { - position[]={23.666992,0.0014390945,24.187988}; + position[]={24.076172,0.0014390945,24.56543}; }; side="West"; flags=5; @@ -3484,7 +3485,7 @@ class items description="Crew@BUFFALO-1"; isPlayable=1; }; - id=70; + id=593; type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; class CustomAttributes { @@ -3548,10 +3549,10 @@ class items { dynamicSimulation=1; }; - id=66; + id=589; }; }; - id=64; + id=587; }; class Item1 { @@ -3565,8 +3566,8 @@ class items dataType="Object"; class PositionInfo { - position[]={11.848145,2.0242615,24.642578}; - angles[]={0,0.0050614546,0}; + position[]={12.257324,2.0242615,25.02002}; + angles[]={-0,0.0050614546,0}; }; side="Empty"; flags=4; @@ -3577,7 +3578,7 @@ class items reportOwnPosition=1; pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; }; - id=72; + id=595; type="vtx_MH60M"; class CustomAttributes { @@ -3935,7 +3936,7 @@ class items dataType="Object"; class PositionInfo { - position[]={20.182129,0.89242268,26.085938}; + position[]={20.591309,0.89242268,26.463379}; }; side="Empty"; flags=4; @@ -3945,7 +3946,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=73; + id=596; type="B_supplyCrate_F"; class CustomAttributes { @@ -3977,7 +3978,7 @@ class items dataType="Object"; class PositionInfo { - position[]={16.227051,0.0014390945,25.01416}; + position[]={16.63623,0.0014390945,25.391602}; }; side="West"; flags=7; @@ -3989,7 +3990,7 @@ class items description="Pilot@BUFFALO-2"; isPlayable=1; }; - id=75; + id=598; type="Cav_B_A_Helicopter_Tra_Pilot_B2_F"; class CustomAttributes { @@ -4053,7 +4054,7 @@ class items dataType="Object"; class PositionInfo { - position[]={17.227051,0.0014390945,25.016113}; + position[]={17.63623,0.0014390945,25.393555}; }; side="West"; flags=5; @@ -4065,7 +4066,7 @@ class items description="Co-Pilot@BUFFALO-2"; isPlayable=1; }; - id=76; + id=599; type="Cav_B_A_Helicopter_Tra_coPilot_F"; class CustomAttributes { @@ -4129,7 +4130,7 @@ class items dataType="Object"; class PositionInfo { - position[]={16.224609,0.0014390945,24.016113}; + position[]={16.633789,0.0014390945,24.393555}; }; side="West"; flags=5; @@ -4140,7 +4141,7 @@ class items description="Crew Chief@BUFFALO-2"; isPlayable=1; }; - id=77; + id=600; type="Cav_B_A_Helicopter_Tra_CrewChief_F"; class CustomAttributes { @@ -4204,7 +4205,7 @@ class items dataType="Object"; class PositionInfo { - position[]={17.227051,0.0014390945,24.016113}; + position[]={17.63623,0.0014390945,24.393555}; }; side="West"; flags=5; @@ -4216,7 +4217,7 @@ class items description="Crew@BUFFALO-2"; isPlayable=1; }; - id=78; + id=601; type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; class CustomAttributes { @@ -4280,10 +4281,10 @@ class items { dynamicSimulation=1; }; - id=74; + id=597; }; }; - id=71; + id=594; }; class Item2 { @@ -4297,8 +4298,8 @@ class items dataType="Object"; class PositionInfo { - position[]={28.336426,2.0242615,4.4707031}; - angles[]={0,0.0050614546,0}; + position[]={28.745605,2.0242615,4.8481445}; + angles[]={-0,0.0050614546,0}; }; side="Empty"; flags=4; @@ -4309,7 +4310,7 @@ class items reportOwnPosition=1; pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; }; - id=80; + id=603; type="vtx_MH60M"; class CustomAttributes { @@ -4674,7 +4675,7 @@ class items dataType="Object"; class PositionInfo { - position[]={22.854004,0.0014390945,5.34375}; + position[]={23.263184,0.0014390945,5.7211914}; }; side="West"; flags=7; @@ -4686,7 +4687,7 @@ class items description="Pilot@BUFFALO-3"; isPlayable=1; }; - id=82; + id=605; type="Cav_B_A_Helicopter_Tra_Pilot_B3_F"; class CustomAttributes { @@ -4750,7 +4751,7 @@ class items dataType="Object"; class PositionInfo { - position[]={23.854004,0.0014390945,5.34375}; + position[]={24.263184,0.0014390945,5.7211914}; }; side="West"; flags=5; @@ -4762,7 +4763,7 @@ class items description="Co-Pilot@BUFFALO-3"; isPlayable=1; }; - id=83; + id=606; type="Cav_B_A_Helicopter_Tra_coPilot_F"; class CustomAttributes { @@ -4826,7 +4827,7 @@ class items dataType="Object"; class PositionInfo { - position[]={22.854004,0.0014390945,4.34375}; + position[]={23.263184,0.0014390945,4.7211914}; }; side="West"; flags=5; @@ -4837,7 +4838,7 @@ class items description="Crew Chief@BUFFALO-3"; isPlayable=1; }; - id=84; + id=607; type="Cav_B_A_Helicopter_Tra_CrewChief_F"; class CustomAttributes { @@ -4901,7 +4902,7 @@ class items dataType="Object"; class PositionInfo { - position[]={23.854004,0.0014390945,4.34375}; + position[]={24.263184,0.0014390945,4.7211914}; }; side="West"; flags=5; @@ -4913,7 +4914,7 @@ class items description="Crew@BUFFALO-3"; isPlayable=1; }; - id=85; + id=608; type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; class CustomAttributes { @@ -4977,10 +4978,10 @@ class items { dynamicSimulation=1; }; - id=81; + id=604; }; }; - id=79; + id=602; }; class Item3 { @@ -4994,8 +4995,8 @@ class items dataType="Object"; class PositionInfo { - position[]={11.617676,2.0242615,2.8808594}; - angles[]={0,0.0050614546,0}; + position[]={12.026855,2.0242615,3.2583008}; + angles[]={-0,0.0050614546,0}; }; side="Empty"; flags=4; @@ -5006,7 +5007,7 @@ class items reportOwnPosition=1; pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; }; - id=87; + id=610; type="vtx_MH60M"; class CustomAttributes { @@ -5364,7 +5365,7 @@ class items dataType="Object"; class PositionInfo { - position[]={20.314941,0.89242268,7.5488281}; + position[]={20.724121,0.89242268,7.9262695}; }; side="Empty"; flags=4; @@ -5374,7 +5375,7 @@ class items description="Starter Crate"; dynamicSimulation=1; }; - id=88; + id=611; type="B_supplyCrate_F"; class CustomAttributes { @@ -5406,7 +5407,7 @@ class items dataType="Object"; class PositionInfo { - position[]={16.818848,0.0014390945,4.875}; + position[]={17.228027,0.0014390945,5.2524414}; }; side="West"; flags=7; @@ -5418,7 +5419,7 @@ class items description="Pilot@BUFFALO-4"; isPlayable=1; }; - id=90; + id=613; type="Cav_B_A_Helicopter_Tra_Pilot_B4_F"; class CustomAttributes { @@ -5482,7 +5483,7 @@ class items dataType="Object"; class PositionInfo { - position[]={17.818848,0.0014390945,4.875}; + position[]={18.228027,0.0014390945,5.2524414}; }; side="West"; flags=5; @@ -5494,7 +5495,7 @@ class items description="Co-Pilot@BUFFALO-4"; isPlayable=1; }; - id=91; + id=614; type="Cav_B_A_Helicopter_Tra_coPilot_F"; class CustomAttributes { @@ -5558,7 +5559,7 @@ class items dataType="Object"; class PositionInfo { - position[]={16.818848,0.0014390945,3.875}; + position[]={17.228027,0.0014390945,4.2524414}; }; side="West"; flags=5; @@ -5569,7 +5570,7 @@ class items description="Crew Chief@BUFFALO-4"; isPlayable=1; }; - id=92; + id=615; type="Cav_B_A_Helicopter_Tra_CrewChief_F"; class CustomAttributes { @@ -5633,7 +5634,7 @@ class items dataType="Object"; class PositionInfo { - position[]={17.818848,0.0014390945,3.875}; + position[]={18.228027,0.0014390945,4.2524414}; }; side="West"; flags=5; @@ -5645,7 +5646,7 @@ class items description="Crew@BUFFALO-4"; isPlayable=1; }; - id=93; + id=616; type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; class CustomAttributes { @@ -5709,25 +5710,25 @@ class items { dynamicSimulation=1; }; - id=89; + id=612; }; }; - id=86; + id=609; }; class Item4 { dataType="Comment"; class PositionInfo { - position[]={20.977051,5.777462,18.474609}; + position[]={21.38623,5.777462,18.852051}; }; title="Rotary Transport (Tooltip)"; description="These are MH-60Ms, they can lift the entire platoon, but it is going to be tight to have too many additional attachments to the platoon. You may be able to swap for the UH-60M for one more seat per bird, but that's about it. It's also less cool sitting in a seat vs the side of the helicopter... A good rule of thumb is to include some form of Attack Rotary escort with the Serial."; - id=94; + id=617; atlOffset=5.777462; }; }; - id=63; + id=586; atlOffset=2.888731; }; class Item5 @@ -5742,7 +5743,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-6.769043,1.9255862,3.3066406}; + position[]={-6.3598633,1.9255862,3.684082}; }; side="Empty"; flags=4; @@ -5750,7 +5751,7 @@ class items { dynamicSimulation=1; }; - id=96; + id=619; type="B_Truck_01_ammo_F"; class CustomAttributes { @@ -5788,7 +5789,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-1.769043,1.9160042,3.3046875}; + position[]={-1.3598633,1.9160042,3.6821289}; }; side="Empty"; flags=4; @@ -5796,7 +5797,7 @@ class items { dynamicSimulation=1; }; - id=97; + id=620; type="B_Truck_01_fuel_F"; class CustomAttributes { @@ -5834,7 +5835,7 @@ class items dataType="Object"; class PositionInfo { - position[]={3.230957,2.3134775,3.3046875}; + position[]={3.6401367,2.3134775,3.6821289}; }; side="Empty"; flags=4; @@ -5842,7 +5843,7 @@ class items { dynamicSimulation=1; }; - id=98; + id=621; type="B_Truck_01_Repair_F"; class CustomAttributes { @@ -5876,6 +5877,6 @@ class items }; }; }; - id=95; + id=618; }; }; diff --git a/Compositions/Cav_Rotary_Aviation/header.sqe b/Compositions/Cav_Rotary_Aviation/header.sqe index 67056a657..4ca603b6e 100644 --- a/Compositions/Cav_Rotary_Aviation/header.sqe +++ b/Compositions/Cav_Rotary_Aviation/header.sqe @@ -4,4 +4,19 @@ author="=7Cav=CPL.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= { + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "RHS_US_A2_AirImport", + "cav_alpha_characters_units", + "cav_alpha_characters", + "Desert", + "vtx_mh60m", + "rhsusf_c_melb", + "ace_compat_rhs_usf3_fastroping", + "A3_Soft_F_Gamma_Truck_01", + "A3_Soft_F_Exp_Truck_01", + "USAF_ServiceMenu", + "ace_realisticnames", + "ace_rearm", + "ace_refuel" }; diff --git a/Compositions/Cav_S3_Mission_Controller/composition.sqe b/Compositions/Cav_S3_Mission_Controller/composition.sqe index bbc283897..1b8d29d76 100644 --- a/Compositions/Cav_S3_Mission_Controller/composition.sqe +++ b/Compositions/Cav_S3_Mission_Controller/composition.sqe @@ -1,12 +1,12 @@ version=54; -center[]={1522.2307,5,3645.5027}; +center[]={5666.9292,5,7236.9761}; class items { items=1; class Item0 { dataType="Layer"; - name="S3_Mission_Controllers_[DEVBUILD]"; + name="S3_Mission_Controllers"; class Entities { items=8; @@ -22,7 +22,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-1.8757324,0.0014390945,1.6921387}; + position[]={-2.0249023,0.0014390945,1.6967773}; angles[]={-0,4.6973796,0}; }; side="West"; @@ -34,7 +34,7 @@ class items description="Lead Mission Controller@MISSION CONTROLLERS"; isPlayable=1; }; - id=2; + id=625; type="Cav_B_A_JFO_F"; class CustomAttributes { @@ -111,7 +111,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-1.9626465,0.0014390945,0.34912109}; + position[]={-2.1118164,0.0014390945,0.35351563}; angles[]={-0,4.6973796,0}; }; side="West"; @@ -123,7 +123,7 @@ class items description="Assistant Mission Controller@MISSION CONTROLLERS"; isPlayable=1; }; - id=3; + id=626; type="Cav_B_A_JFO_F"; class CustomAttributes { @@ -200,7 +200,7 @@ class items dataType="Object"; class PositionInfo { - position[]={-2.0135498,0.0014390945,-0.8125}; + position[]={-2.1625977,0.0014390945,-0.80810547}; angles[]={-0,4.6973796,0}; }; side="West"; @@ -212,7 +212,7 @@ class items description="Assistant Mission Controller@MISSION CONTROLLERS"; isPlayable=1; }; - id=4; + id=627; type="Cav_B_A_JFO_F"; class CustomAttributes { @@ -288,16 +288,16 @@ class items class Attributes { }; - id=1; + id=624; }; class Item1 { dataType="Logic"; class PositionInfo { - position[]={3.708252,0,-3.4211426}; + position[]={3.559082,0,-3.4165039}; }; - id=5; + id=628; type="ModuleCuratorAddEditableObjects"; class CustomAttributes { @@ -335,11 +335,11 @@ class items dataType="Logic"; class PositionInfo { - position[]={-0.26660156,0,1.9174805}; + position[]={-0.41552734,0,1.921875}; angles[]={0,3.1985602,0}; }; name="Z1"; - id=6; + id=629; type="ModuleCurator_F"; class CustomAttributes { @@ -403,11 +403,11 @@ class items dataType="Logic"; class PositionInfo { - position[]={-0.36450195,0,0.50390625}; + position[]={-0.51318359,0,0.50830078}; angles[]={0,3.1985602,0}; }; name="Z2"; - id=7; + id=630; type="ModuleCurator_F"; class CustomAttributes { @@ -471,11 +471,11 @@ class items dataType="Logic"; class PositionInfo { - position[]={-0.47875977,0,-0.78271484}; + position[]={-0.62744141,0,-0.77832031}; angles[]={0,3.1985602,0}; }; name="Z3"; - id=8; + id=631; type="ModuleCurator_F"; class CustomAttributes { @@ -539,11 +539,11 @@ class items dataType="Logic"; class PositionInfo { - position[]={-0.48120117,0,-2.1174316}; + position[]={-0.63037109,0,-2.112793}; angles[]={0,3.1985602,0}; }; name="Z4"; - id=9; + id=632; type="ModuleCurator_F"; class CustomAttributes { @@ -607,9 +607,9 @@ class items dataType="Logic"; class PositionInfo { - position[]={3.7033691,0,1.4443359}; + position[]={3.5541992,0,1.4487305}; }; - id=10; + id=633; type="ModuleRespawnPositionWest_F"; }; class Item7 @@ -617,16 +617,16 @@ class items dataType="Comment"; class PositionInfo { - position[]={1.9057617,0.024414063,-0.2668457}; + position[]={1.7568359,0.024414063,-0.26220703}; }; title="Mission Controllers & Zeus (Tooltip)"; description="Do NOT delete things from this composition. All of these tools are vital for missions"; - id=11; + id=634; atlOffset=0.024414063; }; }; - id=12; - atlOffset=-0.0073242188; + id=623; + atlOffset=0.012207031; }; }; class connections @@ -641,8 +641,8 @@ class connections class Item0 { linkID=0; - item0=5; - item1=10; + item0=628; + item1=633; class CustomData { type="Sync"; @@ -651,8 +651,8 @@ class connections class Item1 { linkID=1; - item0=6; - item1=5; + item0=629; + item1=628; class CustomData { type="Sync"; @@ -661,8 +661,8 @@ class connections class Item2 { linkID=2; - item0=7; - item1=5; + item0=630; + item1=628; class CustomData { type="Sync"; @@ -671,8 +671,8 @@ class connections class Item3 { linkID=3; - item0=8; - item1=5; + item0=631; + item1=628; class CustomData { type="Sync"; @@ -681,8 +681,8 @@ class connections class Item4 { linkID=4; - item0=9; - item1=5; + item0=632; + item1=628; class CustomData { type="Sync"; diff --git a/Compositions/Cav_S3_Mission_Controller/header.sqe b/Compositions/Cav_S3_Mission_Controller/header.sqe index 1312ed6c6..6b6642e01 100644 --- a/Compositions/Cav_S3_Mission_Controller/header.sqe +++ b/Compositions/Cav_S3_Mission_Controller/header.sqe @@ -4,4 +4,8 @@ author="=7Cav=CPL.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= { + "cav_alpha_characters", + "A3_Modules_F_Curator_Curator", + "A3_Modules_F_Curator_Respawn", + "Desert" }; diff --git a/Compositions/Cav_Stryker_Scout_Platoon/composition.sqe b/Compositions/Cav_Viking_Platoon_Deployment/composition.sqe similarity index 72% rename from Compositions/Cav_Stryker_Scout_Platoon/composition.sqe rename to Compositions/Cav_Viking_Platoon_Deployment/composition.sqe index c3d447dfc..3a80eeacb 100644 --- a/Compositions/Cav_Stryker_Scout_Platoon/composition.sqe +++ b/Compositions/Cav_Viking_Platoon_Deployment/composition.sqe @@ -1,3308 +1,3423 @@ -version=54; -center[]={394.75681,5,2436.8152}; -class items -{ - items=7; - class Item0 - { - dataType="Layer"; - name="1. Stryker Platoon Leader"; - class Entities - { - items=5; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-3.0811768,0.0014390945,14.610107}; - angles[]={0,3.1415927,0}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="this setGroupid [""VIKING-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-6""];"; - description="Scout Platoon Leader@VIKING-6"; - isPlayable=1; - }; - id=543; - type="Cav_B_B_Scout_PlatoonLead_2_6_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male02ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-3.0811768,0.0014390945,16.109619}; - angles[]={0,3.1415927,0}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-6""];"; - description="Stryker Vehicle Commander"; - isPlayable=1; - }; - id=544; - type="Cav_B_B_Ifv_Commander_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-3.0811768,0.0014390945,17.609619}; - angles[]={0,3.1415927,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-6""];"; - description="Stryker Driver"; - isPlayable=1; - }; - id=545; - type="Cav_B_B_Ifv_Driver_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.94999999; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=542; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.33898926,0.89242268,12.182373}; - angles[]={-0,1.5526583,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - dynamicSimulation=1; - }; - id=546; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isRepairFacility"; - expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={14.213745,0.89242268,1.876709}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - dynamicSimulation=1; - }; - id=547; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isRepairFacility"; - expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - class Item3 - { - dataType="Comment"; - class PositionInfo - { - position[]={1.6502686,0,6.701416}; - }; - title="Stryker Scout Platoon (Tooltip)"; - description="B/1-7's Stryker Scout Platoon is a hybrid fighting force that specializes in scout tasks and missions. They handle everything from Screening Operations, Guard Operations, Ambushes, Area Reconnaissance, and all other general infantry tasks. While the composition utilizes 6 Strykers for the Platoon, unless it's completely full, they'll mostly only use 4 or 5. Viking does NOT require a JTAC to call in CAS as they are trained and capable of doing so internally."; - id=548; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.6192627,2.6142888,18.967041}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=549; - type="cav_dragoon_WD_V6"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=541; - }; - class Item1 - { - dataType="Layer"; - name="2. Stryker Platoon Sergeant"; - class Entities - { - items=2; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={2.9188232,0.0014390945,14.609619}; - angles[]={0,3.1415927,0}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="this setGroupid [""VIKING-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-5""];"; - description="Scout Platoon Sergeant@VIKING-5"; - isPlayable=1; - }; - id=552; - type="Cav_B_B_Scout_PlatoonLead_2_5_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male02ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={2.9188232,0.0014390945,16.109619}; - angles[]={0,3.1415927,0}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-5""];"; - description="Stryker Driver"; - isPlayable=1; - }; - id=553; - type="Cav_B_B_Ifv_Driver_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.94999999; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=551; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={6.1444092,2.6142888,18.900635}; - angles[]={-0,0.005982683,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=554; - type="cav_dragoon_WD_V5"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=550; - }; - class Item2 - { - dataType="Layer"; - name="3. Stryker Platoon Medic"; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={1.5648193,0.0014390945,15.53833}; - angles[]={0,3.1415927,0}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="this setGroupid [""VIKING-7""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-7""];"; - description="Scout Platoon Medic@VIKING-7"; - isPlayable=1; - }; - id=557; - type="Cav_B_B_Scout_PlatoonMedic_2_7_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=2; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=556; - }; - }; - id=555; - }; - class Item3 - { - dataType="Layer"; - name="4. Stryker Squad Viking-1"; - class Entities - { - items=3; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=11; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-11.832153,0.0014390945,-0.65405273}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Scout Squad Leader@VIKING-1"; - isPlayable=1; - }; - id=560; - type="Cav_B_B_Scout_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-13.832153,0.0014390945,-1.6540527}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Alpha Scout Team Leader"; - isPlayable=1; - }; - id=561; - type="Cav_B_B_Scout_Alpha_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-13.832153,0.0014390945,-3.1540527}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Alpha Machine Gunner"; - isPlayable=1; - }; - id=562; - type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-13.832153,0.0014390945,-4.654541}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=563; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-13.832153,0.0014390945,-6.1540527}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=564; - type="Cav_B_B_Scout_Alpha_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.8321533,0.0014390945,-1.6540527}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Bravo Scout Team Leader"; - isPlayable=1; - }; - id=565; - type="Cav_B_B_Scout_Bravo_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.8321533,0.0014390945,-3.1540527}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Bravo Machine Gunner"; - isPlayable=1; - }; - id=566; - type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.8321533,0.0014390945,-4.6540527}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Bravo Scout"; - isPlayable=1; - }; - id=567; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.8321533,0.0014390945,-6.154541}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Bravo Combat Lifesaver"; - isPlayable=1; - }; - id=568; - type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={-11.832153,0.0014390945,-2.6540527}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Stryker Vehicle Commander"; - isPlayable=1; - }; - id=569; - type="Cav_B_B_Ifv_Commander_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={-11.832153,0.0014390945,-4.1540527}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; - description="Stryker Driver"; - isPlayable=1; - }; - id=570; - type="Cav_B_B_Ifv_Driver_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.94999999; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=559; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.7618408,0.89242268,0.74291992}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - dynamicSimulation=1; - }; - id=571; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isRepairFacility"; - expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-12.694458,2.6142888,7.3908691}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=572; - type="cav_dragoon_WD_V1"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=558; - }; - class Item4 - { - dataType="Layer"; - name="5. Stryker Squad Viking-2"; - class Entities - { - items=3; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=11; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-4.2432861,0.0014390945,-5.0734863}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Scout Squad Leader@VIKING-2"; - isPlayable=1; - }; - id=575; - type="Cav_B_B_Scout_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.2432861,0.0014390945,-6.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Alpha Scout Team Leader"; - isPlayable=1; - }; - id=576; - type="Cav_B_B_Scout_Alpha_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.2432861,0.0014390945,-7.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Alpha Machine Gunner"; - isPlayable=1; - }; - id=577; - type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.2432861,0.0014390945,-9.0734863}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=578; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.2432861,0.0014390945,-10.573486}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=579; - type="Cav_B_B_Scout_Alpha_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.2432861,0.0014390945,-6.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Bravo Scout Team Leader"; - isPlayable=1; - }; - id=580; - type="Cav_B_B_Scout_Bravo_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.2432861,0.0014390945,-7.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Bravo Machine Gunner"; - isPlayable=1; - }; - id=581; - type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.2432861,0.0014390945,-9.0734863}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Bravo Scout"; - isPlayable=1; - }; - id=582; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.2432861,0.0014390945,-10.573486}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Bravo Combat Lifesaver"; - isPlayable=1; - }; - id=583; - type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={-4.2432861,0.0014390945,-7.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Stryker Vehicle Commander"; - isPlayable=1; - }; - id=584; - type="Cav_B_B_Ifv_Commander_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={-4.2432861,0.0014390945,-8.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; - description="Stryker Driver"; - isPlayable=1; - }; - id=585; - type="Cav_B_B_Ifv_Driver_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.94999999; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=574; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-1.7452393,0.89242268,-2.6882324}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - dynamicSimulation=1; - }; - id=586; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isRepairFacility"; - expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-4.9205322,2.6142888,3.2258301}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=587; - type="cav_dragoon_WD_V2"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=573; - }; - class Item5 - { - dataType="Layer"; - name="6. Stryker Squad Viking-3"; - class Entities - { - items=3; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=11; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={4.2567139,0.0014390945,-5.0734863}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Scout Squad Leader@VIKING-3"; - isPlayable=1; - }; - id=590; - type="Cav_B_B_Scout_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={2.2567139,0.0014390945,-6.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Alpha Scout Team Leader"; - isPlayable=1; - }; - id=591; - type="Cav_B_B_Scout_Alpha_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={2.2567139,0.0014390945,-7.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Alpha Machine Gunner"; - isPlayable=1; - }; - id=592; - type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={2.2567139,0.0014390945,-9.0734863}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=593; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={2.2567139,0.0014390945,-10.573486}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=594; - type="Cav_B_B_Scout_Alpha_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={6.2567139,0.0014390945,-6.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Bravo Scout Team Leader"; - isPlayable=1; - }; - id=595; - type="Cav_B_B_Scout_Bravo_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={6.2567139,0.0014390945,-7.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Bravo Machine Gunner"; - isPlayable=1; - }; - id=596; - type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={6.2567139,0.0014390945,-9.0734863}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Bravo Scout"; - isPlayable=1; - }; - id=597; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={6.2567139,0.0014390945,-10.573486}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Bravo Combat Lifesaver"; - isPlayable=1; - }; - id=598; - type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={4.2567139,0.0014390945,-7.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Stryker Vehicle Commander"; - isPlayable=1; - }; - id=599; - type="Cav_B_B_Ifv_Commander_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={4.2567139,0.0014390945,-8.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; - description="Stryker Driver"; - isPlayable=1; - }; - id=600; - type="Cav_B_B_Ifv_Driver_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.94999999; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=589; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={1.4451904,0.89242268,-2.5617676}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - dynamicSimulation=1; - }; - id=601; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isRepairFacility"; - expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute2 - { - property="ace_isMedicalFacility"; - expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={4.0189209,2.6142888,3.4733887}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=602; - type="cav_dragoon_WD_V3"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=588; - }; - class Item6 - { - dataType="Layer"; - name="7. Stryker Weapons Squad Viking-4"; - class Entities - { - items=2; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=11; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={11.256714,0.0014390945,-0.57348633}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Scout Squad Leader@VIKING-4"; - isPlayable=1; - }; - id=605; - type="Cav_B_B_Scout_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={9.2567139,0.0014390945,-1.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Alpha Scout Team Leader"; - isPlayable=1; - }; - id=606; - type="Cav_B_B_Scout_Alpha_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={9.2567139,0.0014390945,-3.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Alpha Machine Gunner"; - isPlayable=1; - }; - id=607; - type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={9.2567139,0.0014390945,-4.5734863}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=608; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={9.2567139,0.0014390945,-6.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Alpha Scout"; - isPlayable=1; - }; - id=609; - type="Cav_B_B_Scout_Alpha_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={13.256714,0.0014390945,-1.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Bravo Scout Team Leader"; - isPlayable=1; - }; - id=610; - type="Cav_B_B_Scout_Bravo_TeamLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={13.256714,0.0014390945,-3.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Bravo Machine Gunner"; - isPlayable=1; - }; - id=611; - type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={13.256714,0.0014390945,-4.5734863}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Bravo Scout"; - isPlayable=1; - }; - id=612; - type="Cav_B_B_Scout_Rifleman_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={13.256714,0.0014390945,-6.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Bravo Combat Lifesaver"; - isPlayable=1; - }; - id=613; - type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item9 - { - dataType="Object"; - class PositionInfo - { - position[]={11.256714,0.0014390945,-2.5734863}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Stryker Vehicle Commander"; - isPlayable=1; - }; - id=614; - type="Cav_B_B_Ifv_Commander_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - class Item10 - { - dataType="Object"; - class PositionInfo - { - position[]={11.256714,0.0014390945,-4.0734863}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; - description="Stryker Driver"; - isPlayable=1; - }; - id=615; - type="Cav_B_B_Ifv_Driver_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.94999999; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=604; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={10.941772,2.6142888,6.4519043}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=616; - type="cav_dragoon_WD_V4"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=603; - }; -}; +version=54; +center[]={3421.3616,5,1282.7375}; +class items +{ + items=7; + class Item0 + { + dataType="Layer"; + name="1. Stryker Platoon Leader"; + class Entities + { + items=6; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.9936523,0.0014390945,14.885498}; + angles[]={0,3.1415927,0}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="this setGroupid [""VIKING-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-6""];"; + description="Platoon Leader@VIKING-6"; + isPlayable=1; + }; + id=80; + type="Cav_B_B_Scout_PlatoonLead_2_6_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=79; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.2512207,0.89242268,12.458252}; + angles[]={-0,1.5526583,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + dynamicSimulation=1; + }; + id=83; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isRepairFacility"; + expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute2 + { + property="ace_isMedicalFacility"; + expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={14.301514,0.89242268,2.1525879}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + dynamicSimulation=1; + }; + id=84; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isRepairFacility"; + expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute2 + { + property="ace_isMedicalFacility"; + expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item3 + { + dataType="Comment"; + class PositionInfo + { + position[]={1.7380371,0,6.9772949}; + }; + title="Stryker Scout Platoon (Tooltip)"; + description="B/1-7's Stryker Scout Platoon is a hybrid fighting force that specializes in scout tasks and missions. They handle everything from Screening Operations, Guard Operations, Ambushes, Area Reconnaissance, and all other general infantry tasks. While the composition utilizes 6 Strykers for the Platoon, unless it's completely full, they'll mostly only use 4 or 5. Viking does NOT require a JTAC to call in CAS as they are trained and capable of doing so internally."; + id=85; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.5314941,2.6142888,19.24292}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=86; + type="cav_dragoon_WD_V6"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Layer"; + name="SIERRA-6"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.9936523,0.0014390945,16.385498}; + angles[]={0,3.1415927,0}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""SIERRA-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-6""];"; + description="Stryker Vehicle Commander@SIERRA-6"; + isPlayable=1; + }; + id=81; + type="Cav_B_B_Ifv_Commander_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.9936523,0.0014390945,17.885498}; + angles[]={0,3.1415927,0}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""SIERRA-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-6""];"; + description="Stryker Driver@SIERRA-6"; + isPlayable=1; + }; + id=82; + type="Cav_B_B_Ifv_Driver_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.94999999; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=168; + }; + }; + id=167; + }; + }; + id=78; + }; + class Item1 + { + dataType="Layer"; + name="2. Stryker Platoon Sergeant"; + class Entities + { + items=2; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={3.0063477,0.0014390945,14.885498}; + angles[]={0,3.1415927,0}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="this setGroupid [""VIKING-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-5""];"; + description="Platoon Sergeant@VIKING-5"; + isPlayable=1; + }; + id=89; + type="Cav_B_B_Scout_PlatoonLead_2_5_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={3.0065918,0.0014390945,16.385498}; + angles[]={0,3.1415927,0}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-5""];"; + description="Stryker Driver"; + isPlayable=1; + }; + id=90; + type="Cav_B_B_Ifv_Driver_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.94999999; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=88; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={6.2321777,2.6142888,19.176514}; + angles[]={-0,0.005982683,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=91; + type="cav_dragoon_WD_V5"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=87; + }; + class Item2 + { + dataType="Layer"; + name="3. Stryker Platoon Medic"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1.6523438,0.0014390945,15.814453}; + angles[]={0,3.1415927,0}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="this setGroupid [""VIKING-7""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-7""];"; + description="Platoon Medic@VIKING-7"; + isPlayable=1; + }; + id=94; + type="Cav_B_B_Scout_PlatoonMedic_2_7_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=2; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=93; + }; + }; + id=92; + }; + class Item3 + { + dataType="Layer"; + name="4. Stryker Squad Viking-1"; + class Entities + { + items=4; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.744629,0.0014390945,-0.37854004}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Squad Leader@VIKING-1"; + isPlayable=1; + }; + id=97; + type="Cav_B_B_Scout_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-13.744385,0.0014390945,-1.3781738}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Alpha Team Leader"; + isPlayable=1; + }; + id=98; + type="Cav_B_B_Scout_Alpha_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-13.744385,0.0014390945,-2.8781738}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=99; + type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-13.744385,0.0014390945,-4.3786621}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=100; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-13.744385,0.0014390945,-5.8781738}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Alpha Rifleman"; + isPlayable=1; + }; + id=101; + type="Cav_B_B_Scout_Alpha_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.7443848,0.0014390945,-1.3781738}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Bravo Team Leader"; + isPlayable=1; + }; + id=102; + type="Cav_B_B_Scout_Bravo_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.7443848,0.0014390945,-2.8781738}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=103; + type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.7443848,0.0014390945,-4.3781738}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=104; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.7443848,0.0014390945,-5.8786621}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Bravo Combat Lifesaver"; + isPlayable=1; + }; + id=105; + type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=96; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.6740723,0.89242268,1.0187988}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + dynamicSimulation=1; + }; + id=108; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isRepairFacility"; + expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute2 + { + property="ace_isMedicalFacility"; + expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-12.606689,2.6142888,7.666748}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=109; + type="cav_dragoon_WD_V1"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Layer"; + name="SIERRA-1"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.744629,0.0014390945,-2.37854}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""SIERRA-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Stryker Vehicle Commander@SIERRA-1"; + isPlayable=1; + }; + id=106; + type="Cav_B_B_Ifv_Commander_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.744629,0.0014390945,-3.87854}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""SIERRA-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-1""];"; + description="Stryker Driver@SIERRA-1"; + isPlayable=1; + }; + id=107; + type="Cav_B_B_Ifv_Driver_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.94999999; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=165; + }; + }; + id=164; + }; + }; + id=95; + }; + class Item4 + { + dataType="Layer"; + name="5. Stryker Squad Viking-2"; + class Entities + { + items=4; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-4.1555176,0.0014390945,-4.7974854}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Squad Leader@VIKING-2"; + isPlayable=1; + }; + id=112; + type="Cav_B_B_Scout_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.1555176,0.0014390945,-5.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Alpha Team Leader"; + isPlayable=1; + }; + id=113; + type="Cav_B_B_Scout_Alpha_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.1555176,0.0014390945,-7.2976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=114; + type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.1555176,0.0014390945,-8.7976074}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=115; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.1555176,0.0014390945,-10.297607}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Alpha Rifleman"; + isPlayable=1; + }; + id=116; + type="Cav_B_B_Scout_Alpha_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.1555176,0.0014390945,-5.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Bravo Team Leader"; + isPlayable=1; + }; + id=117; + type="Cav_B_B_Scout_Bravo_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.1555176,0.0014390945,-7.2976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=118; + type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.1555176,0.0014390945,-8.7976074}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=119; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.1555176,0.0014390945,-10.297607}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Bravo Combat Lifesaver"; + isPlayable=1; + }; + id=120; + type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=111; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-1.6574707,0.89242268,-2.4123535}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + dynamicSimulation=1; + }; + id=123; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isRepairFacility"; + expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute2 + { + property="ace_isMedicalFacility"; + expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-4.8327637,2.6142888,3.501709}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=124; + type="cav_dragoon_WD_V2"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Layer"; + name="SIERRA-2"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-4.1555176,0.0014390945,-6.7974854}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""SIERRA-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Stryker Vehicle Commander@SIERRA-2"; + isPlayable=1; + }; + id=121; + type="Cav_B_B_Ifv_Commander_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-4.1555176,0.0014390945,-8.2974854}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""SIERRA-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-2""];"; + description="Stryker Driver@SIERRA-2"; + isPlayable=1; + }; + id=122; + type="Cav_B_B_Ifv_Driver_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.94999999; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=163; + }; + }; + id=161; + }; + }; + id=110; + }; + class Item5 + { + dataType="Layer"; + name="6. Stryker Squad Viking-3"; + class Entities + { + items=4; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={4.3444824,0.0014390945,-4.7974854}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Squad Leader@VIKING-3"; + isPlayable=1; + }; + id=127; + type="Cav_B_B_Scout_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={2.3444824,0.0014390945,-5.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Alpha Team Leader"; + isPlayable=1; + }; + id=128; + type="Cav_B_B_Scout_Alpha_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2.3444824,0.0014390945,-7.2976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=129; + type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={2.3444824,0.0014390945,-8.7976074}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=130; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={2.3444824,0.0014390945,-10.297607}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Alpha Rifleman"; + isPlayable=1; + }; + id=131; + type="Cav_B_B_Scout_Alpha_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={6.3444824,0.0014390945,-5.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Bravo Team Leader"; + isPlayable=1; + }; + id=132; + type="Cav_B_B_Scout_Bravo_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={6.3444824,0.0014390945,-7.2976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=133; + type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6.3444824,0.0014390945,-8.7976074}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=134; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6.3444824,0.0014390945,-10.297607}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Bravo Combat Lifesaver"; + isPlayable=1; + }; + id=135; + type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=126; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={1.532959,0.89242268,-2.2858887}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bravo"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + dynamicSimulation=1; + }; + id=138; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isRepairFacility"; + expression="if (_value != (if (isNumber (configOf _this >> ""ace_repair_canRepair"")) then {getNumber (configOf _this >> ""ace_repair_canRepair"")} else {(parseNumber (getRepairCargo _this > 0))})) then {_this setVariable ['ace_isRepairFacility', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute2 + { + property="ace_isMedicalFacility"; + expression="_this setVariable [""ace_medical_isMedicalFacility"", _value, true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={4.1066895,2.6142888,3.7492676}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=139; + type="cav_dragoon_WD_V3"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Layer"; + name="SIERRA-3"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={4.3444824,0.0014390945,-6.7974854}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""SIERRA-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Stryker Vehicle Commander@SIERRA-3"; + isPlayable=1; + }; + id=136; + type="Cav_B_B_Ifv_Commander_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={4.3444824,0.0014390945,-8.2974854}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""SIERRA-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-3""];"; + description="Stryker Driver@SIERRA-3"; + isPlayable=1; + }; + id=137; + type="Cav_B_B_Ifv_Driver_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.94999999; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=159; + }; + }; + id=158; + }; + }; + id=125; + }; + class Item6 + { + dataType="Layer"; + name="7. Stryker Weapons Squad Viking-4"; + class Entities + { + items=3; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={11.344482,0.0014390945,-0.29748535}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Squad Leader@VIKING-4"; + isPlayable=1; + }; + id=142; + type="Cav_B_B_Scout_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={9.3444824,0.0014390945,-1.2976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Alpha Team Leader"; + isPlayable=1; + }; + id=143; + type="Cav_B_B_Scout_Alpha_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={9.3444824,0.0014390945,-2.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=144; + type="Cav_B_B_Scout_Alpha_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={9.3444824,0.0014390945,-4.2976074}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=145; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={9.3444824,0.0014390945,-5.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Alpha Rifleman"; + isPlayable=1; + }; + id=146; + type="Cav_B_B_Scout_Alpha_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={13.344482,0.0014390945,-1.2976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Bravo Team Leader"; + isPlayable=1; + }; + id=147; + type="Cav_B_B_Scout_Bravo_TeamLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={13.344482,0.0014390945,-2.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=148; + type="Cav_B_B_Scout_Bravo_AutomaticRifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={13.344482,0.0014390945,-4.2976074}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=149; + type="Cav_B_B_Scout_Rifleman_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={13.344482,0.0014390945,-5.7976074}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""VIKING-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Bravo Combat Lifesaver"; + isPlayable=1; + }; + id=150; + type="Cav_B_B_Scout_Bravo_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=141; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={11.029541,2.6142888,6.7277832}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=153; + type="cav_dragoon_WD_V4"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Layer"; + name="SIERRA-4"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={11.438477,0.0014390945,-3.5014648}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""SIERRA-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Stryker Vehicle Commander@SIERRA-4"; + isPlayable=1; + }; + id=151; + type="Cav_B_B_Ifv_Commander_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={11.438477,0.0014390945,-5.0014648}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""SIERRA-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""VIKING-4""];"; + description="Stryker Driver@SIERRA-4"; + isPlayable=1; + }; + id=152; + type="Cav_B_B_Ifv_Driver_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.94999999; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=156; + }; + }; + id=155; + }; + }; + id=140; + }; +}; diff --git a/Compositions/Cav_Stryker_Scout_Platoon/header.sqe b/Compositions/Cav_Viking_Platoon_Deployment/header.sqe similarity index 73% rename from Compositions/Cav_Stryker_Scout_Platoon/header.sqe rename to Compositions/Cav_Viking_Platoon_Deployment/header.sqe index 4ae5d3840..448703d21 100644 --- a/Compositions/Cav_Stryker_Scout_Platoon/header.sqe +++ b/Compositions/Cav_Viking_Platoon_Deployment/header.sqe @@ -1,13 +1,13 @@ -version=54; -name="VIKING_Platoon_Deployment_vTEST"; -author="=7Cav=CPL.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "cav_troops_bravo_viking", - "cav_bravo_characters", - "A3_Weapons_F_Ammoboxes", - "ace_cargo", - "RSPN_Assets", - "cav_vehicles_dragoon" -}; +version=54; +name="VIKING_Platoon_Deployment_vTEST"; +author="=7Cav=CPL.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "cav_troops_bravo_viking", + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "Desert", + "cav_vehicles_dragoon", + "cav_bravo_characters" +}; From 688beeca6efc508f00cb394203c705fcbf449c34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Brostr=C3=B6m=2EA=20=7C=20Evul?= Date: Sun, 3 Mar 2024 00:02:25 +0100 Subject: [PATCH 11/14] Added ability to allow loadouts to be altered for ai units (#1105) --- cScripts/cScripts_preInit.sqf | 11 ++++++++++- cScripts/functions/gear/fn_gear_preInit.sqf | 8 ++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/cScripts/cScripts_preInit.sqf b/cScripts/cScripts_preInit.sqf index d04f641f8..fa019282c 100644 --- a/cScripts/cScripts_preInit.sqf +++ b/cScripts/cScripts_preInit.sqf @@ -47,7 +47,16 @@ private _cScriptSettings = "cScripts Mission Settings"; {}, true ] call CBA_fnc_addSetting; - +[ // Ai setting + QEGVAR(Settings,AllowAILoadouts), + "CHECKBOX", + ["AI Loadouts (Experimental)", "Allow gear system to apply loadouts to AI units as well as player."], + [_cScriptSettings, "1; Mission"], + false, + true, + {}, + true +] call CBA_fnc_addSetting; //2; Radios [ // Enable diff --git a/cScripts/functions/gear/fn_gear_preInit.sqf b/cScripts/functions/gear/fn_gear_preInit.sqf index eccc83d4e..39ac65243 100644 --- a/cScripts/functions/gear/fn_gear_preInit.sqf +++ b/cScripts/functions/gear/fn_gear_preInit.sqf @@ -39,6 +39,14 @@ if (isClass (missionConfigFile >> "CfgLoadouts")) then { ) then { private _loadout = [_unit] call EFUNC(gear,selectLoadout); [_unit, _loadout] call EFUNC(gear,applyLoadout); + } else { + if ( + EGVAR(Settings,AllowAILoadouts) + && {typeOf _unit != "HeadlessClient_F"} + ) then { + private _loadout = [_unit] call EFUNC(gear,selectLoadout); + [_unit, _loadout] call EFUNC(gear,applyLoadout); + }; }; }; }] call CBA_fnc_addClassEventHandler; From bfce30575d324ac88759d6e36b74ec39bd009524 Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Sun, 3 Mar 2024 11:58:38 -0500 Subject: [PATCH 12/14] Missing quotes around HMMWV weapons inventory macro --- cScripts/functions/vehicle/fn_vehicle_addInventory.sqf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf index f0ec842be..1f2310155 100644 --- a/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf +++ b/cScripts/functions/vehicle/fn_vehicle_addInventory.sqf @@ -194,7 +194,7 @@ if (_vehicle iskindOf "MRAP_01_base_F") then { case "rhsusf_m1165a1_gmv_mk19_m240_socom_d"; case "rhsusf_m1165a1_gmv_mk19_m240_socom_w": { [_vehicle, - GET_CONTAINER(vehicle_HMMWV_Weapons) + GET_CONTAINER("vehicle_HMMWV_Weapons") ] call FUNC(addCargo); }; default { From 3eb512e41458af5e85bee5d365bc08daab0a4424 Mon Sep 17 00:00:00 2001 From: Jonah Pool Date: Sun, 3 Mar 2024 14:29:47 -0500 Subject: [PATCH 13/14] Missing more quotes in arsenal --- .../systems/fn_getArsenalWhitelist.sqf | 38 +++++++++---------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/cScripts/functions/systems/fn_getArsenalWhitelist.sqf b/cScripts/functions/systems/fn_getArsenalWhitelist.sqf index 69df823dd..db61fc5dc 100644 --- a/cScripts/functions/systems/fn_getArsenalWhitelist.sqf +++ b/cScripts/functions/systems/fn_getArsenalWhitelist.sqf @@ -25,32 +25,32 @@ _unitItems = parseSimpleArray ("[" + _unitItems + "]"); _unitItems = _unitItems arrayIntersect _unitItems select {_x isEqualType "" && {_x != ""}}; -private _commonGear = GET_CONTAINER_KEYS(arsenal_common); +private _commonGear = GET_CONTAINER_KEYS("arsenal_common"); private _company = call EFUNC(player,getCompany); private _companyItems = switch (_company) do { - case "alpha": {GET_CONTAINER_KEYS(alpha_company);}; - case "bravo": {GET_CONTAINER_KEYS(bravo_company);}; - case "charlie": {GET_CONTAINER_KEYS(charlie_company);}; - default {GET_CONTAINER_KEYS(arsenal_company_fallback);}; + case "alpha": {GET_CONTAINER_KEYS("alpha_company");}; + case "bravo": {GET_CONTAINER_KEYS("bravo_company");}; + case "charlie": {GET_CONTAINER_KEYS("charlie_company");}; + default {GET_CONTAINER_KEYS("arsenal_company_fallback");}; }; private _medicRole = getNumber (missionConfigFile >> "CfgLoadouts" >> _classname >> "abilityMedic"); -private _medicGear = if (_medicRole >= 1) then {GET_CONTAINER_KEYS(bravo_company_atlas);} else {[]}; +private _medicGear = if (_medicRole >= 1) then {GET_CONTAINER_KEYS("bravo_company_atlas");} else {[]}; private _roleSpecific = switch ([player] call EFUNC(gear,getLoadoutRole)) do { - case "officer": {GET_CONTAINER_KEYS(arsenal_role_officer);}; - case "squadleader": {GET_CONTAINER_KEYS(arsenal_role_squadleader);}; - case "fireteamleader": {GET_CONTAINER_KEYS(arsenal_role_fireteamleader);}; - case "weapons": {GET_CONTAINER_KEYS(arsenal_role_weapons);}; + case "officer": {GET_CONTAINER_KEYS("arsenal_role_officer");}; + case "squadleader": {GET_CONTAINER_KEYS("arsenal_role_squadleader");}; + case "fireteamleader": {GET_CONTAINER_KEYS("arsenal_role_fireteamleader");}; + case "weapons": {GET_CONTAINER_KEYS("arsenal_role_weapons");}; case "pilot"; - case "rotarypilot": {GET_CONTAINER_KEYS(arsenal_role_rotarypilot);}; - case "rotarycrew": {GET_CONTAINER_KEYS(arsenal_role_pilotcrew);}; - case "pilotfighter": {GET_CONTAINER_KEYS(arsenal_role_pilotfighter);}; - case "pilottransport": {GET_CONTAINER_KEYS(arsenal_role_pilottransport);}; + case "rotarypilot": {GET_CONTAINER_KEYS("arsenal_role_rotarypilot");}; + case "rotarycrew": {GET_CONTAINER_KEYS("arsenal_role_pilotcrew");}; + case "pilotfighter": {GET_CONTAINER_KEYS("arsenal_role_pilotfighter");}; + case "pilottransport": {GET_CONTAINER_KEYS("arsenal_role_pilottransport");}; default {[]}; }; @@ -58,18 +58,18 @@ private _roleSpecific = switch ([player] call EFUNC(gear,getLoadoutRole)) do { private _primaryWeapon = if (!isNil{_loadout#0#0}) then {_loadout#0#0} else {""}; private _weaponSystemSpecific = switch (true) do { case (_primaryWeapon isKindof ['rhs_weap_mk18_m320', configFile >> 'CfgWeapons'] - || _primaryWeapon isKindof ['rhs_weap_m16a4_carryhandle_M203', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS(arsenal_weap_ugl);}; + || _primaryWeapon isKindof ['rhs_weap_m16a4_carryhandle_M203', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS("arsenal_weap_ugl");}; case (_primaryWeapon isKindof ['rhs_weap_m4a1', configFile >> 'CfgWeapons'] - || _primaryWeapon isKindof ['rhs_weap_m16a4', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS(arsenal_weap_m4);}; + || _primaryWeapon isKindof ['rhs_weap_m16a4', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS("arsenal_weap_m4");}; - case (_primaryWeapon isKindof ['rhs_weap_sr25_ec', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS(arsenal_weap_sr25);}; + case (_primaryWeapon isKindof ['rhs_weap_sr25_ec', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS("arsenal_weap_sr25");}; - case (primaryWeapon player isKindof ['rhs_weap_m240_base', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS(arsenal_weap_m240);}; + case (primaryWeapon player isKindof ['rhs_weap_m240_base', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS("arsenal_weap_m240");}; case (primaryWeapon player isKindof ['rhs_weap_m249_pip', configFile >> 'CfgWeapons'] || _primaryWeapon isKindof ['rhs_weap_m249_pip_L', configFile >> 'CfgWeapons'] - || _primaryWeapon isKindof ['rhs_weap_m249_pip_S', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS(arsenal_weap_m249);}; + || _primaryWeapon isKindof ['rhs_weap_m249_pip_S', configFile >> 'CfgWeapons']): {GET_CONTAINER_KEYS("arsenal_weap_m249");}; default {[]}; }; From 3d12f1096d70a6e507929acae23aacc402d6b199 Mon Sep 17 00:00:00 2001 From: Zarenx <111392464+Zarenx@users.noreply.github.com> Date: Sun, 10 Mar 2024 13:30:15 +0100 Subject: [PATCH 14/14] Updated Display and Slotting order for compositions in EDEN (#1147) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Broström.A | Evul --- .../composition.sqe | 0 .../header.sqe | 2 +- .../composition.sqe | 8706 ++++++------ .../header.sqe | 28 +- .../composition.sqe | 8704 ++++++------ .../header.sqe | 26 +- .../composition.sqe | 0 .../header.sqe | 2 +- .../composition.sqe | 658 +- .../header.sqe | 22 +- .../composition.sqe | 11764 ++++++++-------- .../header.sqe | 44 +- .../composition.sqe | 4440 +++--- .../header.sqe | 50 +- .../composition.sqe | 1384 +- .../header.sqe | 22 +- Compositions/README.md | 7 + .../TacR_Public_Deployment/header.sqe | 2 +- 18 files changed, 17934 insertions(+), 17927 deletions(-) rename Compositions/{Cav_Viking_Platoon_Deployment => 1.Cav_Viking_Platoon}/composition.sqe (100%) rename Compositions/{Cav_Viking_Platoon_Deployment => 1.Cav_Viking_Platoon}/header.sqe (85%) rename Compositions/{Cav_Bandit_Platoon_Deployment => 2.Cav_Bandit_Platoon}/composition.sqe (95%) rename Compositions/{Cav_Bandit_Platoon_Deployment => 2.Cav_Bandit_Platoon}/header.sqe (85%) rename Compositions/{Cav_Misfit_Platoon_Deployment => 3.Cav_Misfit_Platoon}/composition.sqe (95%) rename Compositions/{Cav_Misfit_Platoon_Deployment => 3.Cav_Misfit_Platoon}/header.sqe (81%) rename Compositions/{ATLAS_Platoon_vTEST => 4.ATLAS_Platoon}/composition.sqe (100%) rename Compositions/{ATLAS_Platoon_vTEST => 4.ATLAS_Platoon}/header.sqe (91%) rename Compositions/{Cav_JTAC_Addon => 5.Cav_JTAC_Addon}/composition.sqe (95%) rename Compositions/{Cav_JTAC_Addon => 5.Cav_JTAC_Addon}/header.sqe (86%) rename Compositions/{Cav_Rotary_Aviation => 6.Cav_Rotary_Aviation}/composition.sqe (96%) rename Compositions/{Cav_Rotary_Aviation => 6.Cav_Rotary_Aviation}/header.sqe (89%) rename Compositions/{Cav_Fixed_Wing_Aviation => 7.Cav_Fixed_Wing_Aviation}/composition.sqe (96%) rename Compositions/{Cav_Fixed_Wing_Aviation => 7.Cav_Fixed_Wing_Aviation}/header.sqe (88%) rename Compositions/{Cav_S3_Mission_Controller => 8.Cav_S3_Mission_Controller}/composition.sqe (95%) rename Compositions/{Cav_S3_Mission_Controller => 8.Cav_S3_Mission_Controller}/header.sqe (80%) diff --git a/Compositions/Cav_Viking_Platoon_Deployment/composition.sqe b/Compositions/1.Cav_Viking_Platoon/composition.sqe similarity index 100% rename from Compositions/Cav_Viking_Platoon_Deployment/composition.sqe rename to Compositions/1.Cav_Viking_Platoon/composition.sqe diff --git a/Compositions/Cav_Viking_Platoon_Deployment/header.sqe b/Compositions/1.Cav_Viking_Platoon/header.sqe similarity index 85% rename from Compositions/Cav_Viking_Platoon_Deployment/header.sqe rename to Compositions/1.Cav_Viking_Platoon/header.sqe index 448703d21..806f3cfc9 100644 --- a/Compositions/Cav_Viking_Platoon_Deployment/header.sqe +++ b/Compositions/1.Cav_Viking_Platoon/header.sqe @@ -1,5 +1,5 @@ version=54; -name="VIKING_Platoon_Deployment_vTEST"; +name="1.VIKING_Platoon_vDEVBUILD"; author="=7Cav=CPL.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= diff --git a/Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe b/Compositions/2.Cav_Bandit_Platoon/composition.sqe similarity index 95% rename from Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe rename to Compositions/2.Cav_Bandit_Platoon/composition.sqe index 211790319..67c629e10 100644 --- a/Compositions/Cav_Bandit_Platoon_Deployment/composition.sqe +++ b/Compositions/2.Cav_Bandit_Platoon/composition.sqe @@ -1,4353 +1,4353 @@ -version=54; -center[]={5674.2729,5,7209.0308}; -class items -{ - items=5; - class Item0 - { - dataType="Layer"; - name="1. Bandit Platoon HQ"; - class Entities - { - items=2; - class Item0 - { - dataType="Layer"; - name="Bandit Platoon Leader"; - class Entities - { - items=2; - class Item0 - { - dataType="Comment"; - class PositionInfo - { - position[]={0.15429688,0,2.6708984}; - }; - title="Bandit (Tooltip)"; - description="Charlie Company, when motorized, uses either M1151 Humvees (M240s for rifle squads, M2 and Mk19 for WPN Squads) or the M1240/A1 MRAPs. You can use the SOCOM GMVs as well as an up-gun solution depending on the op. For air assault (helicopter) solutions, delete the humvees. Airborne, depending on the mission, may require jumping the humvees with the troops for additional mobility and expansion of the airhead."; - id=287; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={0.14404297,0.0014390945,15.193848}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-6""];}"; - description="Platoon Leader@BANDIT-6"; - isPlayable=1; - }; - id=289; - type="Cav_B_C_PlatoonLeader_Bandit_6_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=288; - }; - }; - id=286; - }; - class Item1 - { - dataType="Layer"; - name="Bandit Platoon Sergeant"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={0,0.89242268,16.989258}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Misfit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=291; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={2.1733398,0.0014390945,15.176758}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-5""];}"; - description="Platoon Sergeant@BANDIT-5"; - isPlayable=1; - }; - id=293; - type="Cav_B_C_PlatoonSergeant_Bandit_5_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=292; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-1.8266602,0.0014390945,15.168945}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-7""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-7""];}"; - description="Platoon Medic@BANDIT-7"; - isPlayable=1; - }; - id=295; - type="Cav_B_C_PlatoonMedic_Bandit_7_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=2; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=294; - }; - }; - id=290; - }; - }; - id=285; - }; - class Item1 - { - dataType="Layer"; - name="2. Bandit Squad Bandit-1"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.6499023,0.89242268,5.5058594}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=297; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.6499023,0.0014390945,3.5561523}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Squad Leader@BANDIT-1"; - isPlayable=1; - }; - id=299; - type="Cav_B_C_SquadLeader_Bandit_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.1513672,0.0014390945,2.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=300; - type="Cav_B_C_Alpha_FireTeamLeader_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.1513672,0.0014390945,2.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Alpha Automatic Rifleman"; - isPlayable=1; - }; - id=301; - type="Cav_B_C_Alpha_AutomaticRifleman_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.1513672,0.0014390945,2.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Alpha Grenadier"; - isPlayable=1; - }; - id=302; - type="Cav_B_C_Alpha_Grenadier_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-10.151367,0.0014390945,2.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Alpha Rifleman (LAT)"; - isPlayable=1; - }; - id=303; - type="Cav_B_C_Alpha_RiflemanLAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.1513672,0.0014390945,1.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=304; - type="Cav_B_C_Bravo_FireTeamLeader_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.1513672,0.0014390945,1.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Bravo Automatic Rifleman"; - isPlayable=1; - }; - id=305; - type="Cav_B_C_Bravo_AutomaticRifleman_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.1513672,0.0014390945,1.5561523}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Bravo Grenadier"; - isPlayable=1; - }; - id=306; - type="Cav_B_C_Bravo_Grenadier_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={-10.15918,0.0014390945,1.4907227}; - }; - side="West"; - flags=5; - class Attributes - { - init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; - description="Bravo CLS"; - isPlayable=1; - }; - id=307; - type="Cav_B_C_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=298; - }; - }; - id=296; - }; - class Item2 - { - dataType="Layer"; - name="3. Bandit Squad Bandit-2"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8.5073242,0.89242268,4.7993164}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=309; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8.5073242,0.0014390945,2.8500977}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Squad Leader@BANDIT-2"; - isPlayable=1; - }; - id=311; - type="Cav_B_C_SquadLeader_Bandit_2_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={10.007324,0.0014390945,1.8500977}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=312; - type="Cav_B_C_Alpha_FireTeamLeader_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={9.0073242,0.0014390945,1.8500977}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Alpha Automatic Rifleman"; - isPlayable=1; - }; - id=313; - type="Cav_B_C_Alpha_AutomaticRifleman_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8.0073242,0.0014390945,1.8500977}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Alpha Grenadier"; - isPlayable=1; - }; - id=314; - type="Cav_B_C_Alpha_Grenadier_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={7.0073242,0.0014390945,1.8500977}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Alpha Rifleman (LAT)"; - isPlayable=1; - }; - id=315; - type="Cav_B_C_Alpha_RiflemanLAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={10.007324,0.0014390945,0.85009766}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=316; - type="Cav_B_C_Bravo_FireTeamLeader_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={9.0073242,0.0014390945,0.85009766}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Bravo Automatic Rifleman"; - isPlayable=1; - }; - id=317; - type="Cav_B_C_Bravo_AutomaticRifleman_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={8.0073242,0.0014390945,0.85009766}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Bravo Grenadier"; - isPlayable=1; - }; - id=318; - type="Cav_B_C_Bravo_Grenadier_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={7.0092773,0.0014390945,0.86083984}; - }; - side="West"; - flags=5; - class Attributes - { - init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; - description="Bravo CLS"; - isPlayable=1; - }; - id=319; - type="Cav_B_C_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=310; - }; - }; - id=308; - }; - class Item3 - { - dataType="Layer"; - name="4. Bandit Squad Bandit-3"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.6499023,0.89242268,-5.9941406}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=321; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.6499023,0.0014390945,-7.9438477}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Squad Leader@BANDIT-3"; - isPlayable=1; - }; - id=323; - type="Cav_B_C_SquadLeader_Bandit_3_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.1503906,0.0014390945,-8.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=324; - type="Cav_B_C_Alpha_FireTeamLeader_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.1503906,0.0014390945,-8.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Alpha Automatic Rifleman"; - isPlayable=1; - }; - id=325; - type="Cav_B_C_Alpha_AutomaticRifleman_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-10.150391,0.0014390945,-8.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Alpha Grenadier"; - isPlayable=1; - }; - id=326; - type="Cav_B_C_Alpha_Grenadier_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-11.150391,0.0014390945,-8.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Alpha Rifleman (LAT)"; - isPlayable=1; - }; - id=327; - type="Cav_B_C_Alpha_RiflemanLAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.1503906,0.0014390945,-9.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=328; - type="Cav_B_C_Bravo_FireTeamLeader_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.1503906,0.0014390945,-9.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Bravo Automatic Rifleman"; - isPlayable=1; - }; - id=329; - type="Cav_B_C_Bravo_AutomaticRifleman_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-10.150391,0.0014390945,-9.9438477}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Bravo Grenadier"; - isPlayable=1; - }; - id=330; - type="Cav_B_C_Bravo_Grenadier_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={-11.000977,0.0014390945,-9.9858398}; - }; - side="West"; - flags=5; - class Attributes - { - init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; - description="Bravo CLS"; - isPlayable=1; - }; - id=331; - type="Cav_B_C_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=322; - }; - class Item2 - { - dataType="Layer"; - name="5. Bandit Weapons Squad Bandit-4"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8.6855469,0.89242268,-5.0737305}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=333; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={8.5073242,0.0014390945,-7.1499023}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Squad Leader@BANDIT-4"; - isPlayable=1; - }; - id=335; - type="Cav_B_C_Weapons_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={10.007324,0.0014390945,-8.1499023}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=336; - type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={9.0073242,0.0014390945,-8.1499023}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Alpha Machine Gunner"; - isPlayable=1; - }; - id=337; - type="Cav_B_C_Weapons_M240B_Machinegunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={8.0073242,0.0014390945,-8.1499023}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Alpha M240 Ammo Bearer"; - isPlayable=1; - }; - id=338; - type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={10.007324,0.0014390945,-9.1499023}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=339; - type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={9.0073242,0.0014390945,-9.1499023}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Bravo Machine Gunner"; - isPlayable=1; - }; - id=340; - type="Cav_B_C_Weapons_M240B_Machinegunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8.0073242,0.0014390945,-9.1499023}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Bravo M240 Ammo Bearer"; - isPlayable=1; - }; - id=341; - type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={6.871582,0.0014390945,-8.059082}; - angles[]={0,0.13096951,0}; - }; - side="West"; - flags=5; - class Attributes - { - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Charlie MAAWS Gunner"; - isPlayable=1; - }; - id=342; - type="Cav_B_C_Weapons_MAAWS_MAAWSGunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={6.8691406,0.0014390945,-9.1743164}; - angles[]={0,6.1690288,0}; - }; - side="West"; - flags=5; - class Attributes - { - init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; - description="Charlie MAAWS Assistant"; - isPlayable=1; - }; - id=343; - type="Cav_B_C_Weapons_MAAWS_MAAWSAssistant_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=334; - }; - }; - id=332; - }; - }; - id=320; - }; - class Item4 - { - dataType="Layer"; - name="Motorized Elements"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={0.14453125,1.7828913,11.143066}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=345; - type="rhsusf_m1152_rsv_usarmy_wd"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={14.447266,1.7822218,3.6000977}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=346; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={3.8808594,1.7822218,-6.4204102}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=347; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-4.3510742,1.7822218,-7.1254883}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=348; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-14.097168,1.7822218,-7.3364258}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=349; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-4.3017578,1.7822218,3.6865234}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=350; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-14.093262,1.7822218,4.1811523}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=351; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={3.9824219,1.7822218,2.7612305}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=352; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={14.065918,1.7822218,-7.1811523}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=353; - type="rhsusf_m1165a1_gmv_mk19_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - }; - id=344; - }; -}; +version=54; +center[]={5674.2729,5,7209.0308}; +class items +{ + items=5; + class Item0 + { + dataType="Layer"; + name="1. Bandit Platoon HQ"; + class Entities + { + items=2; + class Item0 + { + dataType="Layer"; + name="Bandit Platoon Leader"; + class Entities + { + items=2; + class Item0 + { + dataType="Comment"; + class PositionInfo + { + position[]={0.15429688,0,2.6708984}; + }; + title="Bandit (Tooltip)"; + description="Charlie Company, when motorized, uses either M1151 Humvees (M240s for rifle squads, M2 and Mk19 for WPN Squads) or the M1240/A1 MRAPs. You can use the SOCOM GMVs as well as an up-gun solution depending on the op. For air assault (helicopter) solutions, delete the humvees. Airborne, depending on the mission, may require jumping the humvees with the troops for additional mobility and expansion of the airhead."; + id=287; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={0.14404297,0.0014390945,15.193848}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-6""];}"; + description="Platoon Leader@BANDIT-6"; + isPlayable=1; + }; + id=289; + type="Cav_B_C_PlatoonLeader_Bandit_6_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=288; + }; + }; + id=286; + }; + class Item1 + { + dataType="Layer"; + name="Bandit Platoon Sergeant"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={0,0.89242268,16.989258}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Misfit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=291; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={2.1733398,0.0014390945,15.176758}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-5""];}"; + description="Platoon Sergeant@BANDIT-5"; + isPlayable=1; + }; + id=293; + type="Cav_B_C_PlatoonSergeant_Bandit_5_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=292; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-1.8266602,0.0014390945,15.168945}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-7""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-7""];}"; + description="Platoon Medic@BANDIT-7"; + isPlayable=1; + }; + id=295; + type="Cav_B_C_PlatoonMedic_Bandit_7_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=2; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=294; + }; + }; + id=290; + }; + }; + id=285; + }; + class Item1 + { + dataType="Layer"; + name="2. Bandit Squad Bandit-1"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.6499023,0.89242268,5.5058594}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=297; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.6499023,0.0014390945,3.5561523}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Squad Leader@BANDIT-1"; + isPlayable=1; + }; + id=299; + type="Cav_B_C_SquadLeader_Bandit_1_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.1513672,0.0014390945,2.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=300; + type="Cav_B_C_Alpha_FireTeamLeader_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.1513672,0.0014390945,2.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=301; + type="Cav_B_C_Alpha_AutomaticRifleman_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.1513672,0.0014390945,2.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=302; + type="Cav_B_C_Alpha_Grenadier_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-10.151367,0.0014390945,2.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Alpha Rifleman (LAT)"; + isPlayable=1; + }; + id=303; + type="Cav_B_C_Alpha_RiflemanLAT_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.1513672,0.0014390945,1.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=304; + type="Cav_B_C_Bravo_FireTeamLeader_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.1513672,0.0014390945,1.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=305; + type="Cav_B_C_Bravo_AutomaticRifleman_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.1513672,0.0014390945,1.5561523}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=306; + type="Cav_B_C_Bravo_Grenadier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={-10.15918,0.0014390945,1.4907227}; + }; + side="West"; + flags=5; + class Attributes + { + init="call{this setgroupID[""BANDIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-1""];}"; + description="Bravo CLS"; + isPlayable=1; + }; + id=307; + type="Cav_B_C_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=298; + }; + }; + id=296; + }; + class Item2 + { + dataType="Layer"; + name="3. Bandit Squad Bandit-2"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8.5073242,0.89242268,4.7993164}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=309; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8.5073242,0.0014390945,2.8500977}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Squad Leader@BANDIT-2"; + isPlayable=1; + }; + id=311; + type="Cav_B_C_SquadLeader_Bandit_2_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={10.007324,0.0014390945,1.8500977}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=312; + type="Cav_B_C_Alpha_FireTeamLeader_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={9.0073242,0.0014390945,1.8500977}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=313; + type="Cav_B_C_Alpha_AutomaticRifleman_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={8.0073242,0.0014390945,1.8500977}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=314; + type="Cav_B_C_Alpha_Grenadier_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={7.0073242,0.0014390945,1.8500977}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Alpha Rifleman (LAT)"; + isPlayable=1; + }; + id=315; + type="Cav_B_C_Alpha_RiflemanLAT_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={10.007324,0.0014390945,0.85009766}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=316; + type="Cav_B_C_Bravo_FireTeamLeader_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={9.0073242,0.0014390945,0.85009766}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=317; + type="Cav_B_C_Bravo_AutomaticRifleman_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={8.0073242,0.0014390945,0.85009766}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=318; + type="Cav_B_C_Bravo_Grenadier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={7.0092773,0.0014390945,0.86083984}; + }; + side="West"; + flags=5; + class Attributes + { + init="call{this setgroupID[""BANDIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-2""];}"; + description="Bravo CLS"; + isPlayable=1; + }; + id=319; + type="Cav_B_C_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=310; + }; + }; + id=308; + }; + class Item3 + { + dataType="Layer"; + name="4. Bandit Squad Bandit-3"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.6499023,0.89242268,-5.9941406}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=321; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.6499023,0.0014390945,-7.9438477}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Squad Leader@BANDIT-3"; + isPlayable=1; + }; + id=323; + type="Cav_B_C_SquadLeader_Bandit_3_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.1503906,0.0014390945,-8.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=324; + type="Cav_B_C_Alpha_FireTeamLeader_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.1503906,0.0014390945,-8.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=325; + type="Cav_B_C_Alpha_AutomaticRifleman_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-10.150391,0.0014390945,-8.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=326; + type="Cav_B_C_Alpha_Grenadier_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.150391,0.0014390945,-8.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Alpha Rifleman (LAT)"; + isPlayable=1; + }; + id=327; + type="Cav_B_C_Alpha_RiflemanLAT_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.1503906,0.0014390945,-9.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=328; + type="Cav_B_C_Bravo_FireTeamLeader_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.1503906,0.0014390945,-9.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=329; + type="Cav_B_C_Bravo_AutomaticRifleman_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={-10.150391,0.0014390945,-9.9438477}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=330; + type="Cav_B_C_Bravo_Grenadier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.000977,0.0014390945,-9.9858398}; + }; + side="West"; + flags=5; + class Attributes + { + init="call{this setgroupID[""BANDIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-3""];}"; + description="Bravo CLS"; + isPlayable=1; + }; + id=331; + type="Cav_B_C_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=322; + }; + class Item2 + { + dataType="Layer"; + name="5. Bandit Weapons Squad Bandit-4"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8.6855469,0.89242268,-5.0737305}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=333; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={8.5073242,0.0014390945,-7.1499023}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Squad Leader@BANDIT-4"; + isPlayable=1; + }; + id=335; + type="Cav_B_C_Weapons_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={10.007324,0.0014390945,-8.1499023}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=336; + type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={9.0073242,0.0014390945,-8.1499023}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Alpha Machine Gunner"; + isPlayable=1; + }; + id=337; + type="Cav_B_C_Weapons_M240B_Machinegunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={8.0073242,0.0014390945,-8.1499023}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Alpha M240 Ammo Bearer"; + isPlayable=1; + }; + id=338; + type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={10.007324,0.0014390945,-9.1499023}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=339; + type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={9.0073242,0.0014390945,-9.1499023}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Bravo Machine Gunner"; + isPlayable=1; + }; + id=340; + type="Cav_B_C_Weapons_M240B_Machinegunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={8.0073242,0.0014390945,-9.1499023}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Bravo M240 Ammo Bearer"; + isPlayable=1; + }; + id=341; + type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6.871582,0.0014390945,-8.059082}; + angles[]={0,0.13096951,0}; + }; + side="West"; + flags=5; + class Attributes + { + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Charlie MAAWS Gunner"; + isPlayable=1; + }; + id=342; + type="Cav_B_C_Weapons_MAAWS_MAAWSGunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6.8691406,0.0014390945,-9.1743164}; + angles[]={0,6.1690288,0}; + }; + side="West"; + flags=5; + class Attributes + { + init="call{this setgroupID[""BANDIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BANDIT-4""];}"; + description="Charlie MAAWS Assistant"; + isPlayable=1; + }; + id=343; + type="Cav_B_C_Weapons_MAAWS_MAAWSAssistant_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=334; + }; + }; + id=332; + }; + }; + id=320; + }; + class Item4 + { + dataType="Layer"; + name="Motorized Elements"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={0.14453125,1.7828913,11.143066}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=345; + type="rhsusf_m1152_rsv_usarmy_wd"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={14.447266,1.7822218,3.6000977}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=346; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3.8808594,1.7822218,-6.4204102}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=347; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-4.3510742,1.7822218,-7.1254883}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=348; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-14.097168,1.7822218,-7.3364258}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=349; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-4.3017578,1.7822218,3.6865234}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=350; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-14.093262,1.7822218,4.1811523}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=351; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={3.9824219,1.7822218,2.7612305}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=352; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={14.065918,1.7822218,-7.1811523}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=353; + type="rhsusf_m1165a1_gmv_mk19_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=344; + }; +}; diff --git a/Compositions/Cav_Bandit_Platoon_Deployment/header.sqe b/Compositions/2.Cav_Bandit_Platoon/header.sqe similarity index 85% rename from Compositions/Cav_Bandit_Platoon_Deployment/header.sqe rename to Compositions/2.Cav_Bandit_Platoon/header.sqe index e80c409ac..ed0ddf6dc 100644 --- a/Compositions/Cav_Bandit_Platoon_Deployment/header.sqe +++ b/Compositions/2.Cav_Bandit_Platoon/header.sqe @@ -1,14 +1,14 @@ -version=54; -name="BANDIT_Platoon_vTEST"; -author="=7Cav=CPL.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "Desert", - "cav_charlie_characters_units", - "A3_Weapons_F_Ammoboxes", - "ace_cargo", - "cav_charlie_characters", - "cav_troops_charlie_weapons", - "rhsusf_c_m11xx" -}; +version=54; +name="2.BANDIT_Platoon_vDEVBUILD"; +author="=7Cav=CPL.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "Desert", + "cav_charlie_characters_units", + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "cav_charlie_characters", + "cav_troops_charlie_weapons", + "rhsusf_c_m11xx" +}; diff --git a/Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe b/Compositions/3.Cav_Misfit_Platoon/composition.sqe similarity index 95% rename from Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe rename to Compositions/3.Cav_Misfit_Platoon/composition.sqe index 41942fd7e..1815a3fc9 100644 --- a/Compositions/Cav_Misfit_Platoon_Deployment/composition.sqe +++ b/Compositions/3.Cav_Misfit_Platoon/composition.sqe @@ -1,4352 +1,4352 @@ -version=54; -center[]={5671.4814,5,7227.3887}; -class items -{ - items=6; - class Item0 - { - dataType="Layer"; - name="1. Misfit Platoon HQ"; - class Entities - { - items=2; - class Item0 - { - dataType="Layer"; - name="Misfit Platoon Leader"; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.32763672,0.0014390945,15.970703}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-6""];"; - description="Platoon Leader@MISFIT-6"; - isPlayable=1; - }; - id=456; - type="Cav_B_C_PlatoonLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=455; - }; - }; - id=454; - }; - class Item1 - { - dataType="Layer"; - name="Misfit Platoon Sergeant"; - class Entities - { - items=4; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.47216797,0.89242268,17.765625}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Misfit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=458; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={1.7001953,0.0014390945,15.953125}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-5""];"; - description="Platoon Sergeant@MISFIT-5"; - isPlayable=1; - }; - id=460; - type="Cav_B_C_PlatoonSergeant_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=459; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.2998047,0.0014390945,15.946289}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-7""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-7""];"; - description="Platoon Medic@MISFIT-7"; - isPlayable=1; - }; - id=462; - type="Cav_B_C_PlatoonMedic_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=2; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=461; - }; - class Item3 - { - dataType="Comment"; - class PositionInfo - { - position[]={-0.021484375,0,4.7529297}; - }; - title="Misfit (Tooltip)"; - description="Charlie Company, when motorized, uses either M1151 Humvees (M240s for rifle squads, M2 and Mk19 for WPN Squads) or the M1240/A1 MRAPs. You can use the SOCOM GMVs as well as an up-gun solution depending on the op. For air assault (helicopter) solutions, delete the humvees. Airborne, depending on the mission, may require jumping the humvees with the troops for additional mobility and expansion of the airhead."; - id=463; - }; - }; - id=457; - }; - }; - id=453; - }; - class Item1 - { - dataType="Layer"; - name="2. Misfit Squad Misfit-1"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.2036133,0.89242268,5.3955078}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=465; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.2036133,0.0014390945,3.4453125}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Squad Leader@MISFIT-1"; - isPlayable=1; - }; - id=467; - type="Cav_B_C_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-5.7055664,0.0014390945,2.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=468; - type="Cav_B_C_Alpha_FireTeamLeader_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.7055664,0.0014390945,2.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Alpha Automatic Rifleman"; - isPlayable=1; - }; - id=469; - type="Cav_B_C_Alpha_AutomaticRifleman_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.7055664,0.0014390945,2.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Alpha Grenadier"; - isPlayable=1; - }; - id=470; - type="Cav_B_C_Alpha_Grenadier_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.7055664,0.0014390945,2.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Alpha Rifleman (LAT)"; - isPlayable=1; - }; - id=471; - type="Cav_B_C_Alpha_RiflemanLAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-5.7055664,0.0014390945,1.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=472; - type="Cav_B_C_Bravo_FireTeamLeader_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.7055664,0.0014390945,1.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Bravo Automatic Rifleman"; - isPlayable=1; - }; - id=473; - type="Cav_B_C_Bravo_AutomaticRifleman_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.7055664,0.0014390945,1.4453125}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Bravo Grenadier"; - isPlayable=1; - }; - id=474; - type="Cav_B_C_Bravo_Grenadier_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.7133789,0.0014390945,1.3798828}; - }; - side="West"; - flags=5; - class Attributes - { - init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; - description="Bravo CLS"; - isPlayable=1; - }; - id=475; - type="Cav_B_C_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=466; - }; - }; - id=464; - }; - class Item2 - { - dataType="Layer"; - name="3. Misfit Squad Misfit-2"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={7.6552734,0.89242268,4.796875}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=477; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={7.6552734,0.0014390945,2.847168}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Squad Leader@MISFIT-2"; - isPlayable=1; - }; - id=479; - type="Cav_B_C_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={9.1552734,0.0014390945,1.8466797}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=480; - type="Cav_B_C_Alpha_FireTeamLeader_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8.1552734,0.0014390945,1.8466797}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Alpha Automatic Rifleman"; - isPlayable=1; - }; - id=481; - type="Cav_B_C_Alpha_AutomaticRifleman_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={7.1552734,0.0014390945,1.8466797}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Alpha Grenadier"; - isPlayable=1; - }; - id=482; - type="Cav_B_C_Alpha_Grenadier_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={6.1552734,0.0014390945,1.8466797}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Alpha Rifleman (LAT)"; - isPlayable=1; - }; - id=483; - type="Cav_B_C_Alpha_RiflemanLAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={9.1552734,0.0014390945,0.84667969}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=484; - type="Cav_B_C_Bravo_FireTeamLeader_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={8.1552734,0.0014390945,0.84667969}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Bravo Automatic Rifleman"; - isPlayable=1; - }; - id=485; - type="Cav_B_C_Bravo_AutomaticRifleman_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={7.1552734,0.0014390945,0.84667969}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Bravo Grenadier"; - isPlayable=1; - }; - id=486; - type="Cav_B_C_Bravo_Grenadier_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={6.1572266,0.0014390945,0.85839844}; - }; - side="West"; - flags=5; - class Attributes - { - init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; - description="Bravo CLS"; - isPlayable=1; - }; - id=487; - type="Cav_B_C_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=478; - }; - }; - id=476; - }; - class Item3 - { - dataType="Layer"; - name="4. Misfit Squad Misfit-3"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.2036133,0.89242268,-6.1044922}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=489; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.2036133,0.0014390945,-8.0546875}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Squad Leader@MISFIT-3"; - isPlayable=1; - }; - id=491; - type="Cav_B_C_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.7045898,0.0014390945,-9.0546875}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=492; - type="Cav_B_C_Alpha_FireTeamLeader_F"; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.7045898,0.0014390945,-9.0546875}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Alpha Automatic Rifleman"; - isPlayable=1; - }; - id=493; - type="Cav_B_C_Alpha_AutomaticRifleman_F"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.7045898,0.0014390945,-9.0546875}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Alpha Grenadier"; - isPlayable=1; - }; - id=494; - type="Cav_B_C_Alpha_Grenadier_F"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.7045898,0.0014390945,-9.0546875}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Alpha Rifleman (LAT)"; - isPlayable=1; - }; - id=495; - type="Cav_B_C_Alpha_RiflemanLAT_F"; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.7045898,0.0014390945,-10.054688}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=496; - type="Cav_B_C_Bravo_FireTeamLeader_F"; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-7.7045898,0.0014390945,-10.054688}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Bravo Automatic Rifleman"; - isPlayable=1; - }; - id=497; - type="Cav_B_C_Bravo_AutomaticRifleman_F"; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={-8.7045898,0.0014390945,-10.054688}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Bravo Grenadier"; - isPlayable=1; - }; - id=498; - type="Cav_B_C_Bravo_Grenadier_F"; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={-9.5551758,0.0014390945,-10.09668}; - }; - side="West"; - flags=5; - class Attributes - { - init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; - description="Bravo CLS"; - isPlayable=1; - }; - id=499; - type="Cav_B_C_CombatLifeSaver_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=490; - }; - }; - id=488; - }; - class Item4 - { - dataType="Layer"; - name="5. Misfit Weapons Squad Misfit-4"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={7.8330078,0.89242268,-5.0771484}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=501; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={7.6552734,0.0014390945,-7.152832}; - }; - side="West"; - flags=6; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Squad Leader@MISFIT-4"; - isPlayable=1; - }; - id=503; - type="Cav_B_C_Weapons_SquadLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={9.1552734,0.0014390945,-8.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Alpha Fireteam Leader"; - isPlayable=1; - }; - id=504; - type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={8.1552734,0.0014390945,-8.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Alpha Machine Gunner"; - isPlayable=1; - }; - id=505; - type="Cav_B_C_Weapons_M240B_Machinegunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={7.1552734,0.0014390945,-8.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Alpha M240 Ammo Bearer"; - isPlayable=1; - }; - id=506; - type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={9.1552734,0.0014390945,-9.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Bravo Fireteam Leader"; - isPlayable=1; - }; - id=507; - type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={8.1552734,0.0014390945,-9.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Bravo Machine Gunner"; - isPlayable=1; - }; - id=508; - type="Cav_B_C_Weapons_M240B_Machinegunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={7.1552734,0.0014390945,-9.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Bravo M240 Ammo Bearer"; - isPlayable=1; - }; - id=509; - type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={6.1552734,0.0014390945,-8.1533203}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.40000001; - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Charlie MAAWS Gunner"; - isPlayable=1; - }; - id=510; - type="Cav_B_C_Weapons_MAAWS_MAAWSGunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={6.1464844,0.0014390945,-9.1787109}; - }; - side="West"; - flags=4; - class Attributes - { - init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; - description="Charlie MAAWS Assistant"; - isPlayable=1; - }; - id=511; - type="Cav_B_C_Weapons_MAAWS_MAAWSAssistant_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=502; - }; - }; - id=500; - }; - class Item5 - { - dataType="Layer"; - name="Motorized Elements"; - class Entities - { - items=9; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.32763672,1.7828913,11.92041}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=513; - type="rhsusf_m1152_rsv_usarmy_wd"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={13.3125,1.7822218,2.7641602}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=514; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={2.7456055,1.7822218,-7.2568359}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=515; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-3.1875,1.7822218,-8.0693359}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=516; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-12.934082,1.7822218,-8.2802734}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=517; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item5 - { - dataType="Object"; - class PositionInfo - { - position[]={-3.1386719,1.7822218,2.7421875}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=518; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item6 - { - dataType="Object"; - class PositionInfo - { - position[]={-12.929688,1.7822218,3.2373047}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=519; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item7 - { - dataType="Object"; - class PositionInfo - { - position[]={2.8476563,1.7822218,1.9248047}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=520; - type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - class Item8 - { - dataType="Object"; - class PositionInfo - { - position[]={12.930664,1.7822218,-8.0175781}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="rhs_sofwoodland"; - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=521; - type="rhsusf_m1165a1_gmv_mk19_m240_socom_d"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="rhs_sofwoodland"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="door_M"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="door_R"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="tools_hide"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="runningboard_hide"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="ammo_carrier_hide"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="sag_ammo_hide"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="sparewheel_carrier_hide"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="sagr_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="door_LF"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="door_LB"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="door_RF"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="door_RB"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="BFT_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Antennas_Hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="hide_spare"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - }; - }; - }; - }; - nAttributes=2; - }; - }; - }; - id=512; - }; -}; +version=54; +center[]={5671.4814,5,7227.3887}; +class items +{ + items=6; + class Item0 + { + dataType="Layer"; + name="1. Misfit Platoon HQ"; + class Entities + { + items=2; + class Item0 + { + dataType="Layer"; + name="Misfit Platoon Leader"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.32763672,0.0014390945,15.970703}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-6""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-6""];"; + description="Platoon Leader@MISFIT-6"; + isPlayable=1; + }; + id=456; + type="Cav_B_C_PlatoonLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=455; + }; + }; + id=454; + }; + class Item1 + { + dataType="Layer"; + name="Misfit Platoon Sergeant"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.47216797,0.89242268,17.765625}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Misfit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=458; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={1.7001953,0.0014390945,15.953125}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-5""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-5""];"; + description="Platoon Sergeant@MISFIT-5"; + isPlayable=1; + }; + id=460; + type="Cav_B_C_PlatoonSergeant_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=459; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.2998047,0.0014390945,15.946289}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-7""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-7""];"; + description="Platoon Medic@MISFIT-7"; + isPlayable=1; + }; + id=462; + type="Cav_B_C_PlatoonMedic_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=2; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=461; + }; + class Item3 + { + dataType="Comment"; + class PositionInfo + { + position[]={-0.021484375,0,4.7529297}; + }; + title="Misfit (Tooltip)"; + description="Charlie Company, when motorized, uses either M1151 Humvees (M240s for rifle squads, M2 and Mk19 for WPN Squads) or the M1240/A1 MRAPs. You can use the SOCOM GMVs as well as an up-gun solution depending on the op. For air assault (helicopter) solutions, delete the humvees. Airborne, depending on the mission, may require jumping the humvees with the troops for additional mobility and expansion of the airhead."; + id=463; + }; + }; + id=457; + }; + }; + id=453; + }; + class Item1 + { + dataType="Layer"; + name="2. Misfit Squad Misfit-1"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.2036133,0.89242268,5.3955078}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=465; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.2036133,0.0014390945,3.4453125}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Squad Leader@MISFIT-1"; + isPlayable=1; + }; + id=467; + type="Cav_B_C_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-5.7055664,0.0014390945,2.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=468; + type="Cav_B_C_Alpha_FireTeamLeader_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.7055664,0.0014390945,2.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=469; + type="Cav_B_C_Alpha_AutomaticRifleman_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.7055664,0.0014390945,2.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=470; + type="Cav_B_C_Alpha_Grenadier_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.7055664,0.0014390945,2.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Alpha Rifleman (LAT)"; + isPlayable=1; + }; + id=471; + type="Cav_B_C_Alpha_RiflemanLAT_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-5.7055664,0.0014390945,1.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=472; + type="Cav_B_C_Bravo_FireTeamLeader_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.7055664,0.0014390945,1.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=473; + type="Cav_B_C_Bravo_AutomaticRifleman_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.7055664,0.0014390945,1.4453125}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=474; + type="Cav_B_C_Bravo_Grenadier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.7133789,0.0014390945,1.3798828}; + }; + side="West"; + flags=5; + class Attributes + { + init="this setGroupid [""MISFIT-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-1""];"; + description="Bravo CLS"; + isPlayable=1; + }; + id=475; + type="Cav_B_C_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=466; + }; + }; + id=464; + }; + class Item2 + { + dataType="Layer"; + name="3. Misfit Squad Misfit-2"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7.6552734,0.89242268,4.796875}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=477; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7.6552734,0.0014390945,2.847168}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Squad Leader@MISFIT-2"; + isPlayable=1; + }; + id=479; + type="Cav_B_C_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={9.1552734,0.0014390945,1.8466797}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=480; + type="Cav_B_C_Alpha_FireTeamLeader_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={8.1552734,0.0014390945,1.8466797}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=481; + type="Cav_B_C_Alpha_AutomaticRifleman_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={7.1552734,0.0014390945,1.8466797}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=482; + type="Cav_B_C_Alpha_Grenadier_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={6.1552734,0.0014390945,1.8466797}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Alpha Rifleman (LAT)"; + isPlayable=1; + }; + id=483; + type="Cav_B_C_Alpha_RiflemanLAT_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={9.1552734,0.0014390945,0.84667969}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=484; + type="Cav_B_C_Bravo_FireTeamLeader_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={8.1552734,0.0014390945,0.84667969}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=485; + type="Cav_B_C_Bravo_AutomaticRifleman_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={7.1552734,0.0014390945,0.84667969}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=486; + type="Cav_B_C_Bravo_Grenadier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6.1572266,0.0014390945,0.85839844}; + }; + side="West"; + flags=5; + class Attributes + { + init="this setGroupid [""MISFIT-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-2""];"; + description="Bravo CLS"; + isPlayable=1; + }; + id=487; + type="Cav_B_C_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=478; + }; + }; + id=476; + }; + class Item3 + { + dataType="Layer"; + name="4. Misfit Squad Misfit-3"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.2036133,0.89242268,-6.1044922}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=489; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.2036133,0.0014390945,-8.0546875}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Squad Leader@MISFIT-3"; + isPlayable=1; + }; + id=491; + type="Cav_B_C_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.7045898,0.0014390945,-9.0546875}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=492; + type="Cav_B_C_Alpha_FireTeamLeader_F"; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.7045898,0.0014390945,-9.0546875}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Alpha Automatic Rifleman"; + isPlayable=1; + }; + id=493; + type="Cav_B_C_Alpha_AutomaticRifleman_F"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.7045898,0.0014390945,-9.0546875}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Alpha Grenadier"; + isPlayable=1; + }; + id=494; + type="Cav_B_C_Alpha_Grenadier_F"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.7045898,0.0014390945,-9.0546875}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Alpha Rifleman (LAT)"; + isPlayable=1; + }; + id=495; + type="Cav_B_C_Alpha_RiflemanLAT_F"; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.7045898,0.0014390945,-10.054688}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=496; + type="Cav_B_C_Bravo_FireTeamLeader_F"; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-7.7045898,0.0014390945,-10.054688}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Bravo Automatic Rifleman"; + isPlayable=1; + }; + id=497; + type="Cav_B_C_Bravo_AutomaticRifleman_F"; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={-8.7045898,0.0014390945,-10.054688}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Bravo Grenadier"; + isPlayable=1; + }; + id=498; + type="Cav_B_C_Bravo_Grenadier_F"; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={-9.5551758,0.0014390945,-10.09668}; + }; + side="West"; + flags=5; + class Attributes + { + init="this setGroupid [""MISFIT-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-3""];"; + description="Bravo CLS"; + isPlayable=1; + }; + id=499; + type="Cav_B_C_CombatLifeSaver_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=490; + }; + }; + id=488; + }; + class Item4 + { + dataType="Layer"; + name="5. Misfit Weapons Squad Misfit-4"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7.8330078,0.89242268,-5.0771484}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Bandit"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=501; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7.6552734,0.0014390945,-7.152832}; + }; + side="West"; + flags=6; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Squad Leader@MISFIT-4"; + isPlayable=1; + }; + id=503; + type="Cav_B_C_Weapons_SquadLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={9.1552734,0.0014390945,-8.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Alpha Fireteam Leader"; + isPlayable=1; + }; + id=504; + type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={8.1552734,0.0014390945,-8.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Alpha Machine Gunner"; + isPlayable=1; + }; + id=505; + type="Cav_B_C_Weapons_M240B_Machinegunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={7.1552734,0.0014390945,-8.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Alpha M240 Ammo Bearer"; + isPlayable=1; + }; + id=506; + type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={9.1552734,0.0014390945,-9.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Bravo Fireteam Leader"; + isPlayable=1; + }; + id=507; + type="Cav_B_C_Weapons_M240B_FireTeamLeader_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={8.1552734,0.0014390945,-9.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Bravo Machine Gunner"; + isPlayable=1; + }; + id=508; + type="Cav_B_C_Weapons_M240B_Machinegunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={7.1552734,0.0014390945,-9.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Bravo M240 Ammo Bearer"; + isPlayable=1; + }; + id=509; + type="Cav_B_C_Weapons_M240B_MachinegunnerAmmoBearer_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={6.1552734,0.0014390945,-8.1533203}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.40000001; + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Charlie MAAWS Gunner"; + isPlayable=1; + }; + id=510; + type="Cav_B_C_Weapons_MAAWS_MAAWSGunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={6.1464844,0.0014390945,-9.1787109}; + }; + side="West"; + flags=4; + class Attributes + { + init="this setGroupid [""MISFIT-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""MISFIT-4""];"; + description="Charlie MAAWS Assistant"; + isPlayable=1; + }; + id=511; + type="Cav_B_C_Weapons_MAAWS_MAAWSAssistant_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=502; + }; + }; + id=500; + }; + class Item5 + { + dataType="Layer"; + name="Motorized Elements"; + class Entities + { + items=9; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.32763672,1.7828913,11.92041}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=513; + type="rhsusf_m1152_rsv_usarmy_wd"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={13.3125,1.7822218,2.7641602}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=514; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={2.7456055,1.7822218,-7.2568359}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=515; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-3.1875,1.7822218,-8.0693359}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=516; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-12.934082,1.7822218,-8.2802734}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=517; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item5 + { + dataType="Object"; + class PositionInfo + { + position[]={-3.1386719,1.7822218,2.7421875}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=518; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item6 + { + dataType="Object"; + class PositionInfo + { + position[]={-12.929688,1.7822218,3.2373047}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=519; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item7 + { + dataType="Object"; + class PositionInfo + { + position[]={2.8476563,1.7822218,1.9248047}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=520; + type="rhsusf_m1165a1_gmv_m2_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + class Item8 + { + dataType="Object"; + class PositionInfo + { + position[]={12.930664,1.7822218,-8.0175781}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="rhs_sofwoodland"; + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=521; + type="rhsusf_m1165a1_gmv_mk19_m240_socom_d"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[],[]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="rhs_sofwoodland"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="door_M"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="door_R"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="tools_hide"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="runningboard_hide"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="ammo_carrier_hide"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="sag_ammo_hide"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="sparewheel_carrier_hide"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="sagr_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="door_LF"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="door_LB"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="door_RF"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="door_RB"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="BFT_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Antennas_Hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="hide_spare"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + }; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=512; + }; +}; diff --git a/Compositions/Cav_Misfit_Platoon_Deployment/header.sqe b/Compositions/3.Cav_Misfit_Platoon/header.sqe similarity index 81% rename from Compositions/Cav_Misfit_Platoon_Deployment/header.sqe rename to Compositions/3.Cav_Misfit_Platoon/header.sqe index 8f2df6ac2..a2beca9d2 100644 --- a/Compositions/Cav_Misfit_Platoon_Deployment/header.sqe +++ b/Compositions/3.Cav_Misfit_Platoon/header.sqe @@ -1,13 +1,13 @@ -version=54; -name="MISFIT_Platoon_Deployment_vTEST"; -author="=7Cav=CPL.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "cav_charlie_characters", - "A3_Weapons_F_Ammoboxes", - "ace_cargo", - "Desert", - "cav_troops_charlie_weapons", - "rhsusf_c_m11xx" -}; +version=54; +name="3.MISFIT_Platoon_vDEVBUILD"; +author="=7Cav=CPL.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "cav_charlie_characters", + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "Desert", + "cav_troops_charlie_weapons", + "rhsusf_c_m11xx" +}; diff --git a/Compositions/ATLAS_Platoon_vTEST/composition.sqe b/Compositions/4.ATLAS_Platoon/composition.sqe similarity index 100% rename from Compositions/ATLAS_Platoon_vTEST/composition.sqe rename to Compositions/4.ATLAS_Platoon/composition.sqe diff --git a/Compositions/ATLAS_Platoon_vTEST/header.sqe b/Compositions/4.ATLAS_Platoon/header.sqe similarity index 91% rename from Compositions/ATLAS_Platoon_vTEST/header.sqe rename to Compositions/4.ATLAS_Platoon/header.sqe index 68529e629..f4f723fc1 100644 --- a/Compositions/ATLAS_Platoon_vTEST/header.sqe +++ b/Compositions/4.ATLAS_Platoon/header.sqe @@ -1,5 +1,5 @@ version=54; -name="ATLAS_Platoon_vTEST"; +name="4.ATLAS_Platoon_vDEVBUILD"; author="=7Cav=CPL.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]= diff --git a/Compositions/Cav_JTAC_Addon/composition.sqe b/Compositions/5.Cav_JTAC_Addon/composition.sqe similarity index 95% rename from Compositions/Cav_JTAC_Addon/composition.sqe rename to Compositions/5.Cav_JTAC_Addon/composition.sqe index c8aad2bd4..ae4e7b36b 100644 --- a/Compositions/Cav_JTAC_Addon/composition.sqe +++ b/Compositions/5.Cav_JTAC_Addon/composition.sqe @@ -1,329 +1,329 @@ -version=54; -center[]={5673.6069,5,7232.1265}; -class items -{ - items=2; - class Item0 - { - dataType="Layer"; - name="FAC"; - class Entities - { - items=3; - class Item0 - { - dataType="Comment"; - class PositionInfo - { - position[]={0.088867188,0,-0.1484375}; - }; - title="JTAC vs TACP (Tooltip)"; - description="A single JTAC is best used when less than 2 air assets are on the field. A TACP Team almost becomes a necessity when there are more than 2 air assets in play for attack aviation. A TACP team handles BOTH CAS Fires and PZ Pickup Requests. (2x JTAC, 1x CCT, 1x Security)"; - id=438; - }; - class Item1 - { - dataType="Layer"; - name="Chaos-1"; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.61328125,0.0014390945,0.53125}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""CHAOS-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""INFIDEL-1""];"; - description="JTAC@CHAOS-1"; - isPlayable=1; - }; - id=441; - type="Cav_B_A_JFO_Infidel_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=440; - }; - }; - id=439; - }; - class Item2 - { - dataType="Layer"; - name="Chaos-2"; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={0.59960938,0.0014390945,1.4941406}; - }; - side="West"; - flags=7; - class Attributes - { - rank="SERGEANT"; - init="this setGroupid [""CHAOS-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""INFIDEL-2""];"; - description="JTAC@CHAOS-2"; - isPlayable=1; - }; - id=444; - type="Cav_B_A_JFO_Infidel_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=443; - }; - }; - id=442; - }; - }; - id=437; - }; - class Item1 - { - dataType="Layer"; - name="TACP IC"; - class Entities - { - items=2; - class Item0 - { - dataType="Layer"; - name="Vanquish-1"; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-0.68261719,0.0014390945,-1.2714844}; - angles[]={-0,6.2674112,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VANQUISH-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""PEGASUS-1""];"; - description="TACP Combat Controller@VANQUISH-1"; - isPlayable=1; - }; - id=448; - type="Cav_B_A_JFO_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=447; - }; - }; - id=446; - }; - class Item1 - { - dataType="Layer"; - name="Vanquish-2"; - class Entities - { - items=1; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={0.61621094,0.0014390945,-0.46826172}; - angles[]={-0,6.2425685,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="this setGroupid [""VANQUISH-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""PEGASUS-2""];"; - description="TACP Combat Controller@VANQUISH-2"; - isPlayable=1; - }; - id=451; - type="Cav_B_B_Scout_PlatoonLead_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - }; - id=450; - }; - }; - id=449; - }; - }; - id=445; - }; -}; +version=54; +center[]={5673.6069,5,7232.1265}; +class items +{ + items=2; + class Item0 + { + dataType="Layer"; + name="FAC"; + class Entities + { + items=3; + class Item0 + { + dataType="Comment"; + class PositionInfo + { + position[]={0.088867188,0,-0.1484375}; + }; + title="JTAC vs TACP (Tooltip)"; + description="A single JTAC is best used when less than 2 air assets are on the field. A TACP Team almost becomes a necessity when there are more than 2 air assets in play for attack aviation. A TACP team handles BOTH CAS Fires and PZ Pickup Requests. (2x JTAC, 1x CCT, 1x Security)"; + id=438; + }; + class Item1 + { + dataType="Layer"; + name="Chaos-1"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.61328125,0.0014390945,0.53125}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""CHAOS-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""INFIDEL-1""];"; + description="JTAC@CHAOS-1"; + isPlayable=1; + }; + id=441; + type="Cav_B_A_JFO_Infidel_1_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=440; + }; + }; + id=439; + }; + class Item2 + { + dataType="Layer"; + name="Chaos-2"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={0.59960938,0.0014390945,1.4941406}; + }; + side="West"; + flags=7; + class Attributes + { + rank="SERGEANT"; + init="this setGroupid [""CHAOS-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""INFIDEL-2""];"; + description="JTAC@CHAOS-2"; + isPlayable=1; + }; + id=444; + type="Cav_B_A_JFO_Infidel_1_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=443; + }; + }; + id=442; + }; + }; + id=437; + }; + class Item1 + { + dataType="Layer"; + name="TACP IC"; + class Entities + { + items=2; + class Item0 + { + dataType="Layer"; + name="Vanquish-1"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-0.68261719,0.0014390945,-1.2714844}; + angles[]={-0,6.2674112,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VANQUISH-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""PEGASUS-1""];"; + description="TACP Combat Controller@VANQUISH-1"; + isPlayable=1; + }; + id=448; + type="Cav_B_A_JFO_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=447; + }; + }; + id=446; + }; + class Item1 + { + dataType="Layer"; + name="Vanquish-2"; + class Entities + { + items=1; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={0.61621094,0.0014390945,-0.46826172}; + angles[]={-0,6.2425685,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="this setGroupid [""VANQUISH-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""PEGASUS-2""];"; + description="TACP Combat Controller@VANQUISH-2"; + isPlayable=1; + }; + id=451; + type="Cav_B_B_Scout_PlatoonLead_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + }; + id=450; + }; + }; + id=449; + }; + }; + id=445; + }; +}; diff --git a/Compositions/Cav_JTAC_Addon/header.sqe b/Compositions/5.Cav_JTAC_Addon/header.sqe similarity index 86% rename from Compositions/Cav_JTAC_Addon/header.sqe rename to Compositions/5.Cav_JTAC_Addon/header.sqe index d64aaf72a..2dde5779a 100644 --- a/Compositions/Cav_JTAC_Addon/header.sqe +++ b/Compositions/5.Cav_JTAC_Addon/header.sqe @@ -1,11 +1,11 @@ -version=54; -name="TACP_vTEST"; -author="=7Cav=2LT.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "Desert", - "cav_alpha_characters_units", - "cav_alpha_characters", - "cav_troops_bravo_viking" -}; +version=54; +name="5.TACP_vDEVBUILD"; +author="=7Cav=2LT.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "Desert", + "cav_alpha_characters_units", + "cav_alpha_characters", + "cav_troops_bravo_viking" +}; diff --git a/Compositions/Cav_Rotary_Aviation/composition.sqe b/Compositions/6.Cav_Rotary_Aviation/composition.sqe similarity index 96% rename from Compositions/Cav_Rotary_Aviation/composition.sqe rename to Compositions/6.Cav_Rotary_Aviation/composition.sqe index 14d751a93..8374fe85e 100644 --- a/Compositions/Cav_Rotary_Aviation/composition.sqe +++ b/Compositions/6.Cav_Rotary_Aviation/composition.sqe @@ -1,5882 +1,5882 @@ -version=54; -center[]={5666.0396,5,7224.4438}; -class items -{ - items=6; - class Item0 - { - dataType="Layer"; - name="Rotary Attack (AH-64D)"; - class Entities - { - items=3; - class Item0 - { - dataType="Layer"; - name="AH-64D Raider-1"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-19.740723,0.89242268,23.291504}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=525; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-11.605957,2.3659716,19.213867}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=526; - type="RHS_AH64D_wd"; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-17.33252,0.0014390945,21.20752}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAIDER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAIDER-1""];}"; - description="Pilot@RAIDER-1"; - isPlayable=1; - }; - id=528; - type="Cav_B_A_Helicopter_Att_Pilot_Raider_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-16.333008,0.0014390945,21.20752}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setVariable [""cScripts_Player_Unit"", ""RAIDER-1""];}"; - description="Co-Pilot@RAIDER-1"; - isPlayable=1; - }; - id=529; - type="Cav_B_A_Helicopter_Att_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=527; - }; - }; - id=524; - }; - class Item1 - { - dataType="Layer"; - name="AH-64D Raider-2"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-26.48291,2.3659716,20.166992}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=531; - type="RHS_AH64D_wd"; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-22.686035,0.0014390945,21.67627}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAIDER-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAIDER-2""];}"; - description="Pilot@RAIDER-2"; - isPlayable=1; - }; - id=533; - type="Cav_B_A_Helicopter_Att_Pilot_Raider_2_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male09ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-21.686035,0.0014390945,21.67627}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setVariable [""cScripts_Player_Unit"", ""RAIDER-2""];}"; - description="Co-Pilot@RAIDER-2"; - isPlayable=1; - }; - id=534; - type="Cav_B_A_Helicopter_Att_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=532; - }; - }; - id=530; - }; - class Item2 - { - dataType="Comment"; - class PositionInfo - { - position[]={-20.156738,5.777462,22.67041}; - }; - title="Rotary Attack (Tooltip)"; - description="The Apache functions much differently compared to what you may think attack rotary does. This is a glass cannon. It uses ATGMs and it's cannon from stand-off distances to achieve effects. These can also function largely without a JTAC and are much easier for a PLTHQ to call for fire if needed compared to Fixed Wing Attack. The Apaches can also theoretically be Airborne Forward Air Controllers (FAC-A) but it's usually not recommended depending on scale."; - id=535; - atlOffset=5.777462; - }; - }; - id=523; - atlOffset=2.888731; - }; - class Item1 - { - dataType="Layer"; - name="Rotary Hybrid (MH-60 DAP MLASS)"; - class Entities - { - items=3; - class Item0 - { - dataType="Layer"; - name="DAP MLASS Bison-1"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={29.181152,2.0242615,-22.147949}; - angles[]={-0,0.0050614546,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="mh60m"; - dynamicSimulation=1; - reportOwnPosition=1; - pylons="VTX_4Rnd_ACE_Hellfire_AGM114K;VTX_M230_Chaingun_R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VTX_PylonRack_M261_DAGR;VTX_PylonRack_M261_M229;;"; - }; - id=538; - type="vtx_MH60M_DAP_MLASS"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="mh60m"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="Cockpitdoors_Hide"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="RADAR_HIDE"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="FLIR_HIDE"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="FuelProbe_show"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="MAWS_Tubes_Show"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="ERFS_show"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="MH60MMisc_show"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="Hoist_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="Skis_show"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="HH60Flares_show"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="HH60GRadar_show"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="HH60GFlir_show"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="GunnerSeats_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_L_hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_R_hide"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="vtx_attribute_doorNumbers"; - expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; - class Value - { - class data - { - singleType="STRING"; - value="01"; - }; - }; - }; - class Attribute2 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; - }; - }; - }; - class Attribute3 - { - property="ace_fastroping_equipFRIES"; - expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute4 - { - property="vtx_attribute_markings"; - expression="_this setObjectTextureGlobal [19, _value];"; - class Value - { - class data - { - singleType="STRING"; - value="\z\vtx\addons\uh60_misc\data\markings\markings_venom_ca.paa"; - }; - }; - }; - nAttributes=5; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={22.336914,0.0014390945,-19.841797}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="this setgroupid [""BISON-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];"; - description="DAP Pilot@BISON-1"; - isPlayable=1; - }; - id=540; - type="Cav_B_A_Helicopter_Tra_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={23.778809,0.0014390945,-19.915527}; - }; - side="West"; - flags=5; - class Attributes - { - init="this setgroupid [""BISON-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];"; - description="Co-Pilot@BISON-1"; - isPlayable=1; - }; - id=541; - type="Cav_B_A_Helicopter_Tra_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute1 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=2; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=539; - }; - }; - id=537; - }; - class Item1 - { - dataType="Layer"; - name="DAP MLASS Bison-2"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={20.577637,0.89242458,-17.458496}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=543; - type="B_supplyCrate_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={12.364746,2.0242615,-21.630371}; - angles[]={-0,0.0050614546,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="mh60m"; - dynamicSimulation=1; - reportOwnPosition=1; - pylons="VTX_4Rnd_ACE_Hellfire_AGM114K;VTX_M230_Chaingun_R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VTX_PylonRack_M261_DAGR;VTX_PylonRack_M261_M229;;"; - }; - id=544; - type="vtx_MH60M_DAP_MLASS"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="mh60m"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="Cockpitdoors_Hide"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="RADAR_HIDE"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="FLIR_HIDE"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="FuelProbe_show"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="MAWS_Tubes_Show"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="ERFS_show"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="MH60MMisc_show"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="Hoist_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="Skis_show"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="HH60Flares_show"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="HH60GRadar_show"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="HH60GFlir_show"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="GunnerSeats_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_L_hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_R_hide"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="vtx_attribute_doorNumbers"; - expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; - class Value - { - class data - { - singleType="STRING"; - value="02"; - }; - }; - }; - class Attribute2 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; - }; - }; - }; - class Attribute3 - { - property="ace_fastroping_equipFRIES"; - expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute4 - { - property="vtx_attribute_markings"; - expression="_this setObjectTextureGlobal [19, _value];"; - class Value - { - class data - { - singleType="STRING"; - value="\z\vtx\addons\uh60_misc\data\markings\markings_thrasher_ca.paa"; - }; - }; - }; - nAttributes=5; - }; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={16.567871,0.0014390945,-19.634277}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="this setgroupid [""BISON-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];"; - description="DAP Pilot@BISON-2"; - isPlayable=1; - }; - id=546; - type="Cav_B_A_Helicopter_Tra_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={17.453613,0.0014390945,-19.790039}; - }; - side="West"; - flags=5; - class Attributes - { - init="this setgroupid [""BISON-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];"; - description="Co-Pilot@BISON-2"; - isPlayable=1; - }; - id=547; - type="Cav_B_A_Helicopter_Tra_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=545; - }; - }; - id=542; - atlOffset=4.7683716e-007; - }; - class Item2 - { - dataType="Comment"; - class PositionInfo - { - position[]={21.259277,5.777462,-27.725098}; - }; - title="Rotary Hybrid (Tooltip)"; - description="While the DAPs can transport infantry, it is NOT their primary purpose. The DAPs provide a great option for escort with MH-60s due to being pretty much the same bird, and you can also flex additional personnel on here if needed. Think about using this if the mission calls for closer support and less armor-focused when comparing to the AH-64. This isn't going to replace CAS, it works great for escort of the birds, but that's it. It's going to struggle to deal with large concentrations of OPFOR."; - id=548; - atlOffset=5.777462; - }; - }; - id=536; - atlOffset=2.888731; - }; - class Item2 - { - dataType="Layer"; - name="Rotary Light Attack (AH-6)"; - class Entities - { - items=3; - class Item0 - { - dataType="Layer"; - name="AH-6 Sparrow-1"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-12.766113,1.9401751,-0.62255859}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=551; - type="RHS_MELB_AH6M"; - class CustomAttributes - { - class Attribute0 - { - property="rhs_MELB_TailNumber"; - expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; - class Value - { - class data - { - singleType="STRING"; - value="NoChange"; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-16.713379,0.0014410019,2.0961914}; - angles[]={-0,0.019358397,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""SPARROW-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-1""];}"; - description="Pilot@SPARROW-1"; - isPlayable=1; - }; - id=553; - type="Cav_B_A_Helicopter_Att_Pilot_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-15.208008,0.0014390945,1.7895508}; - angles[]={-0,0.019355701,0}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""SPARROW-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-1""];}"; - description="Co-Pilot@SPARROW-1"; - isPlayable=1; - }; - id=554; - type="Cav_B_A_Helicopter_Att_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=552; - atlOffset=1.9073486e-006; - }; - }; - id=550; - atlOffset=9.5367432e-007; - }; - class Item1 - { - dataType="Layer"; - name="AH-6 Sparrow-2"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-18.30127,0.89242458,4.637207}; - angles[]={-0,3.1415925,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=556; - type="B_supplyCrate_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-23.266113,1.9401751,-0.62255859}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=557; - type="RHS_MELB_AH6M"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="rhs_MELB_TailNumber"; - expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; - class Value - { - class data - { - singleType="STRING"; - value="NoChange"; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-20.631348,0.0014390945,2.2348633}; - angles[]={-0,0.016603449,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""SPARROW-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-2""];}"; - description="Pilot@SPARROW-2"; - isPlayable=1; - }; - id=559; - type="Cav_B_A_Helicopter_Att_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-19.541016,0.0014390945,2.1274414}; - angles[]={-0,0.019355701,0}; - }; - side="West"; - flags=4; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""SPARROW-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-2""];}"; - description="Co-Pilot@SPARROW-2"; - isPlayable=1; - }; - id=560; - type="Cav_B_A_Helicopter_Att_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=558; - }; - }; - id=555; - atlOffset=4.7683716e-007; - }; - class Item2 - { - dataType="Comment"; - class PositionInfo - { - position[]={-18.156738,5.777462,0.67041016}; - }; - title="Rotary Light Attack (Tooltip)"; - description="Not as long distance as the AH-64, the AH-6s function closer in reality to Fixed Wing, they come in low and fast, do a run, and get out. They can conversely be used as observation aircraft due to the FLIR camera as well and can pick off targets, but they will go down quite easily due to being entirely open. It's recommended to avoid using these in operations that have armor heavier than BTRs."; - id=561; - atlOffset=5.777462; - }; - }; - id=549; - atlOffset=2.8887315; - }; - class Item3 - { - dataType="Layer"; - name="Rotary Light Transport (MH-6)"; - class Entities - { - items=5; - class Item0 - { - dataType="Layer"; - name="MH-6 Raven-1"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-12.156738,1.940177,-18.32959}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=564; - type="RHS_MELB_MH6M"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="rhs_MELB_TailNumber"; - expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; - class Value - { - class data - { - singleType="STRING"; - value="NoChange"; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-16.133301,0.0014410019,-14.753418}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAVEN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-1""];}"; - description="Pilot@RAVEN-1"; - isPlayable=1; - }; - id=566; - type="Cav_B_A_Helicopter_Att_Pilot_Raven_1_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-15.132813,0.0014390945,-14.753418}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""RAVEN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-1""];}"; - description="Co-Pilot@RAVEN-1"; - isPlayable=1; - }; - id=567; - type="Cav_B_A_Helicopter_Att_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=565; - atlOffset=1.9073486e-006; - }; - }; - id=563; - atlOffset=1.9073486e-006; - }; - class Item1 - { - dataType="Layer"; - name="MH-6 Raven-2"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-17.621582,0.89242458,-12.54248}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=569; - type="B_supplyCrate_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-23.156738,1.9401751,-18.32959}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=570; - type="RHS_MELB_MH6M"; - class CustomAttributes - { - class Attribute0 - { - property="rhs_MELB_TailNumber"; - expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; - class Value - { - class data - { - singleType="STRING"; - value="NoChange"; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-20.32666,0.0014390945,-14.200684}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAVEN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-2""];}"; - description="Pilot@RAVEN-2"; - isPlayable=1; - }; - id=572; - type="Cav_B_A_Helicopter_Att_Pilot_Raven_2_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-19.327148,0.0014390945,-14.200684}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""RAVEN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-2""];}"; - description="Co-Pilot@RAVEN-2"; - isPlayable=1; - }; - id=573; - type="Cav_B_A_Helicopter_Att_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=571; - }; - }; - id=568; - atlOffset=4.7683716e-007; - }; - class Item2 - { - dataType="Layer"; - name="MH-6 Raven-3"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-18.148926,0.89242458,-26.317871}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=575; - type="B_supplyCrate_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-24.156738,1.940177,-32.32959}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=576; - type="RHS_MELB_MH6M"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="rhs_MELB_TailNumber"; - expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; - class Value - { - class data - { - singleType="STRING"; - value="NoChange"; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-20.729004,0.0014390945,-27.82959}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAVEN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-3""];}"; - description="Pilot@RAVEN-3"; - isPlayable=1; - }; - id=578; - type="Cav_B_A_Helicopter_Att_Pilot_Raven_3_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-19.730957,0.0014390945,-27.82959}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""RAVEN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-3""];}"; - description="Co-Pilot@RAVEN-3"; - isPlayable=1; - }; - id=579; - type="Cav_B_A_Helicopter_Att_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=577; - }; - }; - id=574; - atlOffset=9.5367432e-007; - }; - class Item3 - { - dataType="Layer"; - name="MH-6 Raven-4"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-12.156738,1.940177,-32.82959}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - reportRemoteTargets=1; - receiveRemoteTargets=1; - reportOwnPosition=1; - }; - id=581; - type="RHS_MELB_MH6M"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="rhs_MELB_TailNumber"; - expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; - class Value - { - class data - { - singleType="STRING"; - value="NoChange"; - }; - }; - }; - class Attribute1 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-16.365723,0.0014410019,-28.60498}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAVEN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-4""];}"; - description="Pilot@RAVEN-4"; - isPlayable=1; - }; - id=583; - type="Cav_B_A_Helicopter_Att_Pilot_Raven_4_F"; - atlOffset=1.9073486e-006; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-15.366211,0.0014390945,-28.604492}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""RAVEN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-4""];}"; - description="Co-Pilot@RAVEN-4"; - isPlayable=1; - }; - id=584; - type="Cav_B_A_Helicopter_Att_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=582; - atlOffset=1.9073486e-006; - }; - }; - id=580; - atlOffset=1.9073486e-006; - }; - class Item4 - { - dataType="Comment"; - class PositionInfo - { - position[]={-17.941895,5.777462,-19.964355}; - }; - title="Rotary Light Transport (Tooltip)"; - description="IOT lift an entire platoon (with 2x 4-man Atlas teams), you will need up to 3 lifts. Separate the squads into one fireteam per bird, SL rides with one team, PL member with the other. You may be able to squeeze one Atlas team in the second lift. Best practice would be to use half a platoon (2 squads) with one 4-man medical team and then bring additional assets along for fun and variety."; - id=585; - atlOffset=5.777462; - }; - }; - id=562; - atlOffset=2.888732; - }; - class Item4 - { - dataType="Layer"; - name="Rotary Transport (MH-60M)"; - class Entities - { - items=5; - class Item0 - { - dataType="Layer"; - name="MH-60 Buffalo-1"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={28.976074,2.0242615,26.609863}; - angles[]={-0,0.0050614546,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="mh60m"; - dynamicSimulation=1; - reportOwnPosition=1; - pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; - }; - id=588; - type="vtx_MH60M"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="mh60m"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="Cockpitdoors_Hide"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="RADAR_HIDE"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="FLIR_HIDE"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="FuelProbe_show"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="MAWS_Tubes_Show"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="ERFS_show"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="MH60MMisc_show"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="Hoist_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="Skis_show"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="HH60Flares_show"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="HH60GRadar_show"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="HH60GFlir_show"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="GunnerSeats_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_L_hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_R_hide"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="vtx_attribute_doorNumbers"; - expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; - class Value - { - class data - { - singleType="STRING"; - value="01"; - }; - }; - }; - class Attribute2 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; - }; - }; - }; - class Attribute3 - { - property="ace_fastroping_equipFRIES"; - expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute4 - { - property="vtx_attribute_markings"; - expression="_this setObjectTextureGlobal [19, _value];"; - class Value - { - class data - { - singleType="STRING"; - value="\z\vtx\addons\uh60_misc\data\markings\markings_venom_ca.paa"; - }; - }; - }; - nAttributes=5; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=4; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={23.076172,0.0014390945,25.563477}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; - description="Pilot@BUFFALO-1"; - isPlayable=1; - }; - id=590; - type="Cav_B_A_Helicopter_Tra_Pilot_B1_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=4; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={24.076172,0.0014390945,25.56543}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; - description="Co-Pilot@BUFFALO-1"; - isPlayable=1; - }; - id=591; - type="Cav_B_A_Helicopter_Tra_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male10ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=4; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={23.076172,0.0014390945,24.56543}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; - description="Crew Chief@BUFFALO-1"; - isPlayable=1; - }; - id=592; - type="Cav_B_A_Helicopter_Tra_CrewChief_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=4; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={24.076172,0.0014390945,24.56543}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; - description="Crew@BUFFALO-1"; - isPlayable=1; - }; - id=593; - type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male02ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=589; - }; - }; - id=587; - }; - class Item1 - { - dataType="Layer"; - name="MH-60 Buffalo-2"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={12.257324,2.0242615,25.02002}; - angles[]={-0,0.0050614546,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="mh60m"; - dynamicSimulation=1; - reportOwnPosition=1; - pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; - }; - id=595; - type="vtx_MH60M"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="mh60m"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="Cockpitdoors_Hide"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="RADAR_HIDE"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="FLIR_HIDE"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="FuelProbe_show"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="MAWS_Tubes_Show"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="ERFS_show"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="MH60MMisc_show"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="Hoist_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="Skis_show"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="HH60Flares_show"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="HH60GRadar_show"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="HH60GFlir_show"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="GunnerSeats_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_L_hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_R_hide"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="vtx_attribute_doorNumbers"; - expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; - class Value - { - class data - { - singleType="STRING"; - value="02"; - }; - }; - }; - class Attribute2 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; - }; - }; - }; - class Attribute3 - { - property="ace_fastroping_equipFRIES"; - expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute4 - { - property="vtx_attribute_markings"; - expression="_this setObjectTextureGlobal [19, _value];"; - class Value - { - class data - { - singleType="STRING"; - value="\z\vtx\addons\uh60_misc\data\markings\markings_thrasher_ca.paa"; - }; - }; - }; - nAttributes=5; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={20.591309,0.89242268,26.463379}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=596; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=4; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={16.63623,0.0014390945,25.391602}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; - description="Pilot@BUFFALO-2"; - isPlayable=1; - }; - id=598; - type="Cav_B_A_Helicopter_Tra_Pilot_B2_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.02; - }; - }; - }; - nAttributes=4; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={17.63623,0.0014390945,25.393555}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; - description="Co-Pilot@BUFFALO-2"; - isPlayable=1; - }; - id=599; - type="Cav_B_A_Helicopter_Tra_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=4; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={16.633789,0.0014390945,24.393555}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; - description="Crew Chief@BUFFALO-2"; - isPlayable=1; - }; - id=600; - type="Cav_B_A_Helicopter_Tra_CrewChief_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male01ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=4; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={17.63623,0.0014390945,24.393555}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; - description="Crew@BUFFALO-2"; - isPlayable=1; - }; - id=601; - type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=597; - }; - }; - id=594; - }; - class Item2 - { - dataType="Layer"; - name="MH-60 Buffalo-3"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={28.745605,2.0242615,4.8481445}; - angles[]={-0,0.0050614546,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="mh60m"; - dynamicSimulation=1; - reportOwnPosition=1; - pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; - }; - id=603; - type="vtx_MH60M"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="mh60m"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="Cockpitdoors_Hide"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="RADAR_HIDE"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="FLIR_HIDE"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="FuelProbe_show"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="MAWS_Tubes_Show"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="ERFS_show"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="MH60MMisc_show"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="Hoist_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="Skis_show"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="HH60Flares_show"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="HH60GRadar_show"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="HH60GFlir_show"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="GunnerSeats_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_L_hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_R_hide"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="vtx_attribute_doorNumbers"; - expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; - class Value - { - class data - { - singleType="STRING"; - value="03"; - }; - }; - }; - class Attribute2 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; - }; - }; - }; - class Attribute3 - { - property="ace_fastroping_equipFRIES"; - expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute4 - { - property="vtx_attribute_markings"; - expression="_this setObjectTextureGlobal [19, _value];"; - class Value - { - class data - { - singleType="STRING"; - value="\z\vtx\addons\uh60_misc\data\markings\markings_gunslinger_ca.paa"; - }; - }; - }; - nAttributes=5; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=4; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={23.263184,0.0014390945,5.7211914}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; - description="Pilot@BUFFALO-3"; - isPlayable=1; - }; - id=605; - type="Cav_B_A_Helicopter_Tra_Pilot_B3_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=4; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={24.263184,0.0014390945,5.7211914}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; - description="Co-Pilot@BUFFALO-3"; - isPlayable=1; - }; - id=606; - type="Cav_B_A_Helicopter_Tra_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.97000003; - }; - }; - }; - nAttributes=4; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={23.263184,0.0014390945,4.7211914}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; - description="Crew Chief@BUFFALO-3"; - isPlayable=1; - }; - id=607; - type="Cav_B_A_Helicopter_Tra_CrewChief_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male08ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=4; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={24.263184,0.0014390945,4.7211914}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; - description="Crew@BUFFALO-3"; - isPlayable=1; - }; - id=608; - type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=604; - }; - }; - id=602; - }; - class Item3 - { - dataType="Layer"; - name="MH-60 Buffalo-4"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={12.026855,2.0242615,3.2583008}; - angles[]={-0,0.0050614546,0}; - }; - side="Empty"; - flags=4; - class Attributes - { - textures="mh60m"; - dynamicSimulation=1; - reportOwnPosition=1; - pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; - }; - id=610; - type="vtx_MH60M"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="mh60m"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - class value - { - items=30; - class Item0 - { - class data - { - singleType="STRING"; - value="Cockpitdoors_Hide"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item2 - { - class data - { - singleType="STRING"; - value="RADAR_HIDE"; - }; - }; - class Item3 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item4 - { - class data - { - singleType="STRING"; - value="FLIR_HIDE"; - }; - }; - class Item5 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item6 - { - class data - { - singleType="STRING"; - value="FuelProbe_show"; - }; - }; - class Item7 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item8 - { - class data - { - singleType="STRING"; - value="MAWS_Tubes_Show"; - }; - }; - class Item9 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item10 - { - class data - { - singleType="STRING"; - value="ERFS_show"; - }; - }; - class Item11 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item12 - { - class data - { - singleType="STRING"; - value="MH60MMisc_show"; - }; - }; - class Item13 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item14 - { - class data - { - singleType="STRING"; - value="Hoist_hide"; - }; - }; - class Item15 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item16 - { - class data - { - singleType="STRING"; - value="Skis_show"; - }; - }; - class Item17 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item18 - { - class data - { - singleType="STRING"; - value="HH60Flares_show"; - }; - }; - class Item19 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - class Item20 - { - class data - { - singleType="STRING"; - value="HH60GRadar_show"; - }; - }; - class Item21 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item22 - { - class data - { - singleType="STRING"; - value="HH60GFlir_show"; - }; - }; - class Item23 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item24 - { - class data - { - singleType="STRING"; - value="GunnerSeats_Hide"; - }; - }; - class Item25 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item26 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_L_hide"; - }; - }; - class Item27 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - class Item28 - { - class data - { - singleType="STRING"; - value="Minigun_Sight_R_hide"; - }; - }; - class Item29 - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - }; - }; - }; - }; - }; - }; - class Attribute1 - { - property="vtx_attribute_doorNumbers"; - expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; - class Value - { - class data - { - singleType="STRING"; - value="04"; - }; - }; - }; - class Attribute2 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; - }; - }; - }; - class Attribute3 - { - property="ace_fastroping_equipFRIES"; - expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute4 - { - property="vtx_attribute_markings"; - expression="_this setObjectTextureGlobal [19, _value];"; - class Value - { - class data - { - singleType="STRING"; - value="\z\vtx\addons\uh60_misc\data\markings\markings_grimreaper_ca.paa"; - }; - }; - }; - nAttributes=5; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={20.724121,0.89242268,7.9262695}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=611; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item2 - { - dataType="Group"; - side="West"; - class Entities - { - items=4; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={17.228027,0.0014390945,5.2524414}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; - description="Pilot@BUFFALO-4"; - isPlayable=1; - }; - id=613; - type="Cav_B_A_Helicopter_Tra_Pilot_B4_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=4; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={18.228027,0.0014390945,5.2524414}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; - description="Co-Pilot@BUFFALO-4"; - isPlayable=1; - }; - id=614; - type="Cav_B_A_Helicopter_Tra_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=4; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={17.228027,0.0014390945,4.2524414}; - }; - side="West"; - flags=5; - class Attributes - { - rank="SERGEANT"; - init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; - description="Crew Chief@BUFFALO-4"; - isPlayable=1; - }; - id=615; - type="Cav_B_A_Helicopter_Tra_CrewChief_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=4; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={18.228027,0.0014390945,4.2524414}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.44999999; - rank="CORPORAL"; - init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; - description="Crew@BUFFALO-4"; - isPlayable=1; - }; - id=616; - type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isMedic"; - expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male11ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=4; - }; - }; - }; - class Attributes - { - dynamicSimulation=1; - }; - id=612; - }; - }; - id=609; - }; - class Item4 - { - dataType="Comment"; - class PositionInfo - { - position[]={21.38623,5.777462,18.852051}; - }; - title="Rotary Transport (Tooltip)"; - description="These are MH-60Ms, they can lift the entire platoon, but it is going to be tight to have too many additional attachments to the platoon. You may be able to swap for the UH-60M for one more seat per bird, but that's about it. It's also less cool sitting in a seat vs the side of the helicopter... A good rule of thumb is to include some form of Attack Rotary escort with the Serial."; - id=617; - atlOffset=5.777462; - }; - }; - id=586; - atlOffset=2.888731; - }; - class Item5 - { - dataType="Layer"; - name="Service Vehicles"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-6.3598633,1.9255862,3.684082}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=619; - type="B_Truck_01_ammo_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-1.3598633,1.9160042,3.6821289}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=620; - type="B_Truck_01_fuel_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={3.6401367,2.3134775,3.6821289}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=621; - type="B_Truck_01_Repair_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - }; - id=618; - }; -}; +version=54; +center[]={5666.0396,5,7224.4438}; +class items +{ + items=6; + class Item0 + { + dataType="Layer"; + name="Rotary Attack (AH-64D)"; + class Entities + { + items=3; + class Item0 + { + dataType="Layer"; + name="AH-64D Raider-1"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-19.740723,0.89242268,23.291504}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=525; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-11.605957,2.3659716,19.213867}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=526; + type="RHS_AH64D_wd"; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-17.33252,0.0014390945,21.20752}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAIDER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAIDER-1""];}"; + description="Pilot@RAIDER-1"; + isPlayable=1; + }; + id=528; + type="Cav_B_A_Helicopter_Att_Pilot_Raider_1_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-16.333008,0.0014390945,21.20752}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setVariable [""cScripts_Player_Unit"", ""RAIDER-1""];}"; + description="Co-Pilot@RAIDER-1"; + isPlayable=1; + }; + id=529; + type="Cav_B_A_Helicopter_Att_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=527; + }; + }; + id=524; + }; + class Item1 + { + dataType="Layer"; + name="AH-64D Raider-2"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-26.48291,2.3659716,20.166992}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=531; + type="RHS_AH64D_wd"; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-22.686035,0.0014390945,21.67627}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAIDER-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAIDER-2""];}"; + description="Pilot@RAIDER-2"; + isPlayable=1; + }; + id=533; + type="Cav_B_A_Helicopter_Att_Pilot_Raider_2_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male09ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-21.686035,0.0014390945,21.67627}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setVariable [""cScripts_Player_Unit"", ""RAIDER-2""];}"; + description="Co-Pilot@RAIDER-2"; + isPlayable=1; + }; + id=534; + type="Cav_B_A_Helicopter_Att_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=532; + }; + }; + id=530; + }; + class Item2 + { + dataType="Comment"; + class PositionInfo + { + position[]={-20.156738,5.777462,22.67041}; + }; + title="Rotary Attack (Tooltip)"; + description="The Apache functions much differently compared to what you may think attack rotary does. This is a glass cannon. It uses ATGMs and it's cannon from stand-off distances to achieve effects. These can also function largely without a JTAC and are much easier for a PLTHQ to call for fire if needed compared to Fixed Wing Attack. The Apaches can also theoretically be Airborne Forward Air Controllers (FAC-A) but it's usually not recommended depending on scale."; + id=535; + atlOffset=5.777462; + }; + }; + id=523; + atlOffset=2.888731; + }; + class Item1 + { + dataType="Layer"; + name="Rotary Hybrid (MH-60 DAP MLASS)"; + class Entities + { + items=3; + class Item0 + { + dataType="Layer"; + name="DAP MLASS Bison-1"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={29.181152,2.0242615,-22.147949}; + angles[]={-0,0.0050614546,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="mh60m"; + dynamicSimulation=1; + reportOwnPosition=1; + pylons="VTX_4Rnd_ACE_Hellfire_AGM114K;VTX_M230_Chaingun_R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VTX_PylonRack_M261_DAGR;VTX_PylonRack_M261_M229;;"; + }; + id=538; + type="vtx_MH60M_DAP_MLASS"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="mh60m"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="Cockpitdoors_Hide"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="RADAR_HIDE"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="FLIR_HIDE"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="FuelProbe_show"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="MAWS_Tubes_Show"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="ERFS_show"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="MH60MMisc_show"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="Hoist_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="Skis_show"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="HH60Flares_show"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="HH60GRadar_show"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="HH60GFlir_show"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="GunnerSeats_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_L_hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_R_hide"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + }; + }; + }; + }; + }; + }; + class Attribute1 + { + property="vtx_attribute_doorNumbers"; + expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; + class Value + { + class data + { + singleType="STRING"; + value="01"; + }; + }; + }; + class Attribute2 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + class Attribute3 + { + property="ace_fastroping_equipFRIES"; + expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute4 + { + property="vtx_attribute_markings"; + expression="_this setObjectTextureGlobal [19, _value];"; + class Value + { + class data + { + singleType="STRING"; + value="\z\vtx\addons\uh60_misc\data\markings\markings_venom_ca.paa"; + }; + }; + }; + nAttributes=5; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={22.336914,0.0014390945,-19.841797}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="this setgroupid [""BISON-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];"; + description="DAP Pilot@BISON-1"; + isPlayable=1; + }; + id=540; + type="Cav_B_A_Helicopter_Tra_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={23.778809,0.0014390945,-19.915527}; + }; + side="West"; + flags=5; + class Attributes + { + init="this setgroupid [""BISON-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];"; + description="Co-Pilot@BISON-1"; + isPlayable=1; + }; + id=541; + type="Cav_B_A_Helicopter_Tra_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute1 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=2; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=539; + }; + }; + id=537; + }; + class Item1 + { + dataType="Layer"; + name="DAP MLASS Bison-2"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={20.577637,0.89242458,-17.458496}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=543; + type="B_supplyCrate_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={12.364746,2.0242615,-21.630371}; + angles[]={-0,0.0050614546,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="mh60m"; + dynamicSimulation=1; + reportOwnPosition=1; + pylons="VTX_4Rnd_ACE_Hellfire_AGM114K;VTX_M230_Chaingun_R;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;VTX_PylonRack_M261_DAGR;VTX_PylonRack_M261_M229;;"; + }; + id=544; + type="vtx_MH60M_DAP_MLASS"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="mh60m"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="Cockpitdoors_Hide"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="RADAR_HIDE"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="FLIR_HIDE"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="FuelProbe_show"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="MAWS_Tubes_Show"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="ERFS_show"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="MH60MMisc_show"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="Hoist_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="Skis_show"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="HH60Flares_show"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="HH60GRadar_show"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="HH60GFlir_show"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="GunnerSeats_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_L_hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_R_hide"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + }; + }; + }; + }; + }; + }; + class Attribute1 + { + property="vtx_attribute_doorNumbers"; + expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; + class Value + { + class data + { + singleType="STRING"; + value="02"; + }; + }; + }; + class Attribute2 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + class Attribute3 + { + property="ace_fastroping_equipFRIES"; + expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute4 + { + property="vtx_attribute_markings"; + expression="_this setObjectTextureGlobal [19, _value];"; + class Value + { + class data + { + singleType="STRING"; + value="\z\vtx\addons\uh60_misc\data\markings\markings_thrasher_ca.paa"; + }; + }; + }; + nAttributes=5; + }; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={16.567871,0.0014390945,-19.634277}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="this setgroupid [""BISON-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];"; + description="DAP Pilot@BISON-2"; + isPlayable=1; + }; + id=546; + type="Cav_B_A_Helicopter_Tra_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={17.453613,0.0014390945,-19.790039}; + }; + side="West"; + flags=5; + class Attributes + { + init="this setgroupid [""BISON-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];"; + description="Co-Pilot@BISON-2"; + isPlayable=1; + }; + id=547; + type="Cav_B_A_Helicopter_Tra_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=545; + }; + }; + id=542; + atlOffset=4.7683716e-007; + }; + class Item2 + { + dataType="Comment"; + class PositionInfo + { + position[]={21.259277,5.777462,-27.725098}; + }; + title="Rotary Hybrid (Tooltip)"; + description="While the DAPs can transport infantry, it is NOT their primary purpose. The DAPs provide a great option for escort with MH-60s due to being pretty much the same bird, and you can also flex additional personnel on here if needed. Think about using this if the mission calls for closer support and less armor-focused when comparing to the AH-64. This isn't going to replace CAS, it works great for escort of the birds, but that's it. It's going to struggle to deal with large concentrations of OPFOR."; + id=548; + atlOffset=5.777462; + }; + }; + id=536; + atlOffset=2.888731; + }; + class Item2 + { + dataType="Layer"; + name="Rotary Light Attack (AH-6)"; + class Entities + { + items=3; + class Item0 + { + dataType="Layer"; + name="AH-6 Sparrow-1"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-12.766113,1.9401751,-0.62255859}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=551; + type="RHS_MELB_AH6M"; + class CustomAttributes + { + class Attribute0 + { + property="rhs_MELB_TailNumber"; + expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; + class Value + { + class data + { + singleType="STRING"; + value="NoChange"; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-16.713379,0.0014410019,2.0961914}; + angles[]={-0,0.019358397,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""SPARROW-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-1""];}"; + description="Pilot@SPARROW-1"; + isPlayable=1; + }; + id=553; + type="Cav_B_A_Helicopter_Att_Pilot_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-15.208008,0.0014390945,1.7895508}; + angles[]={-0,0.019355701,0}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""SPARROW-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-1""];}"; + description="Co-Pilot@SPARROW-1"; + isPlayable=1; + }; + id=554; + type="Cav_B_A_Helicopter_Att_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=552; + atlOffset=1.9073486e-006; + }; + }; + id=550; + atlOffset=9.5367432e-007; + }; + class Item1 + { + dataType="Layer"; + name="AH-6 Sparrow-2"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-18.30127,0.89242458,4.637207}; + angles[]={-0,3.1415925,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=556; + type="B_supplyCrate_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-23.266113,1.9401751,-0.62255859}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=557; + type="RHS_MELB_AH6M"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="rhs_MELB_TailNumber"; + expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; + class Value + { + class data + { + singleType="STRING"; + value="NoChange"; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-20.631348,0.0014390945,2.2348633}; + angles[]={-0,0.016603449,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""SPARROW-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-2""];}"; + description="Pilot@SPARROW-2"; + isPlayable=1; + }; + id=559; + type="Cav_B_A_Helicopter_Att_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-19.541016,0.0014390945,2.1274414}; + angles[]={-0,0.019355701,0}; + }; + side="West"; + flags=4; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""SPARROW-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""SPARROW-2""];}"; + description="Co-Pilot@SPARROW-2"; + isPlayable=1; + }; + id=560; + type="Cav_B_A_Helicopter_Att_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=558; + }; + }; + id=555; + atlOffset=4.7683716e-007; + }; + class Item2 + { + dataType="Comment"; + class PositionInfo + { + position[]={-18.156738,5.777462,0.67041016}; + }; + title="Rotary Light Attack (Tooltip)"; + description="Not as long distance as the AH-64, the AH-6s function closer in reality to Fixed Wing, they come in low and fast, do a run, and get out. They can conversely be used as observation aircraft due to the FLIR camera as well and can pick off targets, but they will go down quite easily due to being entirely open. It's recommended to avoid using these in operations that have armor heavier than BTRs."; + id=561; + atlOffset=5.777462; + }; + }; + id=549; + atlOffset=2.8887315; + }; + class Item3 + { + dataType="Layer"; + name="Rotary Light Transport (MH-6)"; + class Entities + { + items=5; + class Item0 + { + dataType="Layer"; + name="MH-6 Raven-1"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-12.156738,1.940177,-18.32959}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=564; + type="RHS_MELB_MH6M"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="rhs_MELB_TailNumber"; + expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; + class Value + { + class data + { + singleType="STRING"; + value="NoChange"; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-16.133301,0.0014410019,-14.753418}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAVEN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-1""];}"; + description="Pilot@RAVEN-1"; + isPlayable=1; + }; + id=566; + type="Cav_B_A_Helicopter_Att_Pilot_Raven_1_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-15.132813,0.0014390945,-14.753418}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""RAVEN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-1""];}"; + description="Co-Pilot@RAVEN-1"; + isPlayable=1; + }; + id=567; + type="Cav_B_A_Helicopter_Att_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=565; + atlOffset=1.9073486e-006; + }; + }; + id=563; + atlOffset=1.9073486e-006; + }; + class Item1 + { + dataType="Layer"; + name="MH-6 Raven-2"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-17.621582,0.89242458,-12.54248}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=569; + type="B_supplyCrate_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-23.156738,1.9401751,-18.32959}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=570; + type="RHS_MELB_MH6M"; + class CustomAttributes + { + class Attribute0 + { + property="rhs_MELB_TailNumber"; + expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; + class Value + { + class data + { + singleType="STRING"; + value="NoChange"; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-20.32666,0.0014390945,-14.200684}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAVEN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-2""];}"; + description="Pilot@RAVEN-2"; + isPlayable=1; + }; + id=572; + type="Cav_B_A_Helicopter_Att_Pilot_Raven_2_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-19.327148,0.0014390945,-14.200684}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""RAVEN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-2""];}"; + description="Co-Pilot@RAVEN-2"; + isPlayable=1; + }; + id=573; + type="Cav_B_A_Helicopter_Att_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=571; + }; + }; + id=568; + atlOffset=4.7683716e-007; + }; + class Item2 + { + dataType="Layer"; + name="MH-6 Raven-3"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-18.148926,0.89242458,-26.317871}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=575; + type="B_supplyCrate_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-24.156738,1.940177,-32.32959}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=576; + type="RHS_MELB_MH6M"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="rhs_MELB_TailNumber"; + expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; + class Value + { + class data + { + singleType="STRING"; + value="NoChange"; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-20.729004,0.0014390945,-27.82959}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAVEN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-3""];}"; + description="Pilot@RAVEN-3"; + isPlayable=1; + }; + id=578; + type="Cav_B_A_Helicopter_Att_Pilot_Raven_3_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-19.730957,0.0014390945,-27.82959}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""RAVEN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-3""];}"; + description="Co-Pilot@RAVEN-3"; + isPlayable=1; + }; + id=579; + type="Cav_B_A_Helicopter_Att_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=577; + }; + }; + id=574; + atlOffset=9.5367432e-007; + }; + class Item3 + { + dataType="Layer"; + name="MH-6 Raven-4"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-12.156738,1.940177,-32.82959}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + reportRemoteTargets=1; + receiveRemoteTargets=1; + reportOwnPosition=1; + }; + id=581; + type="RHS_MELB_MH6M"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="rhs_MELB_TailNumber"; + expression="if(_value != 'NoChange')then{ [_this,'d_SN',_value] call RHS_MELB_fnc_tailNumber}"; + class Value + { + class data + { + singleType="STRING"; + value="NoChange"; + }; + }; + }; + class Attribute1 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ToolKit"",""ItemGPS"",""ItemRadio""],[1,1,1]],[[],[]]],false]"; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-16.365723,0.0014410019,-28.60498}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAVEN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-4""];}"; + description="Pilot@RAVEN-4"; + isPlayable=1; + }; + id=583; + type="Cav_B_A_Helicopter_Att_Pilot_Raven_4_F"; + atlOffset=1.9073486e-006; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-15.366211,0.0014390945,-28.604492}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""RAVEN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""RAVEN-4""];}"; + description="Co-Pilot@RAVEN-4"; + isPlayable=1; + }; + id=584; + type="Cav_B_A_Helicopter_Att_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=582; + atlOffset=1.9073486e-006; + }; + }; + id=580; + atlOffset=1.9073486e-006; + }; + class Item4 + { + dataType="Comment"; + class PositionInfo + { + position[]={-17.941895,5.777462,-19.964355}; + }; + title="Rotary Light Transport (Tooltip)"; + description="IOT lift an entire platoon (with 2x 4-man Atlas teams), you will need up to 3 lifts. Separate the squads into one fireteam per bird, SL rides with one team, PL member with the other. You may be able to squeeze one Atlas team in the second lift. Best practice would be to use half a platoon (2 squads) with one 4-man medical team and then bring additional assets along for fun and variety."; + id=585; + atlOffset=5.777462; + }; + }; + id=562; + atlOffset=2.888732; + }; + class Item4 + { + dataType="Layer"; + name="Rotary Transport (MH-60M)"; + class Entities + { + items=5; + class Item0 + { + dataType="Layer"; + name="MH-60 Buffalo-1"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={28.976074,2.0242615,26.609863}; + angles[]={-0,0.0050614546,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="mh60m"; + dynamicSimulation=1; + reportOwnPosition=1; + pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; + }; + id=588; + type="vtx_MH60M"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="mh60m"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="Cockpitdoors_Hide"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="RADAR_HIDE"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="FLIR_HIDE"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="FuelProbe_show"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="MAWS_Tubes_Show"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="ERFS_show"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="MH60MMisc_show"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="Hoist_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="Skis_show"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="HH60Flares_show"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="HH60GRadar_show"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="HH60GFlir_show"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="GunnerSeats_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_L_hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_R_hide"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + }; + }; + }; + }; + }; + }; + class Attribute1 + { + property="vtx_attribute_doorNumbers"; + expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; + class Value + { + class data + { + singleType="STRING"; + value="01"; + }; + }; + }; + class Attribute2 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + class Attribute3 + { + property="ace_fastroping_equipFRIES"; + expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute4 + { + property="vtx_attribute_markings"; + expression="_this setObjectTextureGlobal [19, _value];"; + class Value + { + class data + { + singleType="STRING"; + value="\z\vtx\addons\uh60_misc\data\markings\markings_venom_ca.paa"; + }; + }; + }; + nAttributes=5; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={23.076172,0.0014390945,25.563477}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; + description="Pilot@BUFFALO-1"; + isPlayable=1; + }; + id=590; + type="Cav_B_A_Helicopter_Tra_Pilot_B1_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={24.076172,0.0014390945,25.56543}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; + description="Co-Pilot@BUFFALO-1"; + isPlayable=1; + }; + id=591; + type="Cav_B_A_Helicopter_Tra_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male10ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=4; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={23.076172,0.0014390945,24.56543}; + }; + side="West"; + flags=5; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; + description="Crew Chief@BUFFALO-1"; + isPlayable=1; + }; + id=592; + type="Cav_B_A_Helicopter_Tra_CrewChief_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=4; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={24.076172,0.0014390945,24.56543}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BUFFALO-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-1""];}"; + description="Crew@BUFFALO-1"; + isPlayable=1; + }; + id=593; + type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=589; + }; + }; + id=587; + }; + class Item1 + { + dataType="Layer"; + name="MH-60 Buffalo-2"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={12.257324,2.0242615,25.02002}; + angles[]={-0,0.0050614546,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="mh60m"; + dynamicSimulation=1; + reportOwnPosition=1; + pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; + }; + id=595; + type="vtx_MH60M"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="mh60m"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="Cockpitdoors_Hide"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="RADAR_HIDE"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="FLIR_HIDE"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="FuelProbe_show"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="MAWS_Tubes_Show"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="ERFS_show"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="MH60MMisc_show"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="Hoist_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="Skis_show"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="HH60Flares_show"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="HH60GRadar_show"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="HH60GFlir_show"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="GunnerSeats_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_L_hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_R_hide"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + }; + }; + }; + }; + }; + }; + class Attribute1 + { + property="vtx_attribute_doorNumbers"; + expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; + class Value + { + class data + { + singleType="STRING"; + value="02"; + }; + }; + }; + class Attribute2 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + class Attribute3 + { + property="ace_fastroping_equipFRIES"; + expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute4 + { + property="vtx_attribute_markings"; + expression="_this setObjectTextureGlobal [19, _value];"; + class Value + { + class data + { + singleType="STRING"; + value="\z\vtx\addons\uh60_misc\data\markings\markings_thrasher_ca.paa"; + }; + }; + }; + nAttributes=5; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={20.591309,0.89242268,26.463379}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=596; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={16.63623,0.0014390945,25.391602}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; + description="Pilot@BUFFALO-2"; + isPlayable=1; + }; + id=598; + type="Cav_B_A_Helicopter_Tra_Pilot_B2_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.02; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={17.63623,0.0014390945,25.393555}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; + description="Co-Pilot@BUFFALO-2"; + isPlayable=1; + }; + id=599; + type="Cav_B_A_Helicopter_Tra_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=4; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={16.633789,0.0014390945,24.393555}; + }; + side="West"; + flags=5; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; + description="Crew Chief@BUFFALO-2"; + isPlayable=1; + }; + id=600; + type="Cav_B_A_Helicopter_Tra_CrewChief_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male01ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=4; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={17.63623,0.0014390945,24.393555}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BUFFALO-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-2""];}"; + description="Crew@BUFFALO-2"; + isPlayable=1; + }; + id=601; + type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=597; + }; + }; + id=594; + }; + class Item2 + { + dataType="Layer"; + name="MH-60 Buffalo-3"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={28.745605,2.0242615,4.8481445}; + angles[]={-0,0.0050614546,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="mh60m"; + dynamicSimulation=1; + reportOwnPosition=1; + pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; + }; + id=603; + type="vtx_MH60M"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="mh60m"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="Cockpitdoors_Hide"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="RADAR_HIDE"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="FLIR_HIDE"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="FuelProbe_show"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="MAWS_Tubes_Show"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="ERFS_show"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="MH60MMisc_show"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="Hoist_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="Skis_show"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="HH60Flares_show"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="HH60GRadar_show"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="HH60GFlir_show"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="GunnerSeats_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_L_hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_R_hide"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + }; + }; + }; + }; + }; + }; + class Attribute1 + { + property="vtx_attribute_doorNumbers"; + expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; + class Value + { + class data + { + singleType="STRING"; + value="03"; + }; + }; + }; + class Attribute2 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + class Attribute3 + { + property="ace_fastroping_equipFRIES"; + expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute4 + { + property="vtx_attribute_markings"; + expression="_this setObjectTextureGlobal [19, _value];"; + class Value + { + class data + { + singleType="STRING"; + value="\z\vtx\addons\uh60_misc\data\markings\markings_gunslinger_ca.paa"; + }; + }; + }; + nAttributes=5; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={23.263184,0.0014390945,5.7211914}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; + description="Pilot@BUFFALO-3"; + isPlayable=1; + }; + id=605; + type="Cav_B_A_Helicopter_Tra_Pilot_B3_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={24.263184,0.0014390945,5.7211914}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; + description="Co-Pilot@BUFFALO-3"; + isPlayable=1; + }; + id=606; + type="Cav_B_A_Helicopter_Tra_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.97000003; + }; + }; + }; + nAttributes=4; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={23.263184,0.0014390945,4.7211914}; + }; + side="West"; + flags=5; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; + description="Crew Chief@BUFFALO-3"; + isPlayable=1; + }; + id=607; + type="Cav_B_A_Helicopter_Tra_CrewChief_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male08ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=4; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={24.263184,0.0014390945,4.7211914}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BUFFALO-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-3""];}"; + description="Crew@BUFFALO-3"; + isPlayable=1; + }; + id=608; + type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=604; + }; + }; + id=602; + }; + class Item3 + { + dataType="Layer"; + name="MH-60 Buffalo-4"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={12.026855,2.0242615,3.2583008}; + angles[]={-0,0.0050614546,0}; + }; + side="Empty"; + flags=4; + class Attributes + { + textures="mh60m"; + dynamicSimulation=1; + reportOwnPosition=1; + pylons=";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"; + }; + id=610; + type="vtx_MH60M"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="mh60m"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + class value + { + items=30; + class Item0 + { + class data + { + singleType="STRING"; + value="Cockpitdoors_Hide"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item2 + { + class data + { + singleType="STRING"; + value="RADAR_HIDE"; + }; + }; + class Item3 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item4 + { + class data + { + singleType="STRING"; + value="FLIR_HIDE"; + }; + }; + class Item5 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item6 + { + class data + { + singleType="STRING"; + value="FuelProbe_show"; + }; + }; + class Item7 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item8 + { + class data + { + singleType="STRING"; + value="MAWS_Tubes_Show"; + }; + }; + class Item9 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item10 + { + class data + { + singleType="STRING"; + value="ERFS_show"; + }; + }; + class Item11 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item12 + { + class data + { + singleType="STRING"; + value="MH60MMisc_show"; + }; + }; + class Item13 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item14 + { + class data + { + singleType="STRING"; + value="Hoist_hide"; + }; + }; + class Item15 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item16 + { + class data + { + singleType="STRING"; + value="Skis_show"; + }; + }; + class Item17 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item18 + { + class data + { + singleType="STRING"; + value="HH60Flares_show"; + }; + }; + class Item19 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + class Item20 + { + class data + { + singleType="STRING"; + value="HH60GRadar_show"; + }; + }; + class Item21 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item22 + { + class data + { + singleType="STRING"; + value="HH60GFlir_show"; + }; + }; + class Item23 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item24 + { + class data + { + singleType="STRING"; + value="GunnerSeats_Hide"; + }; + }; + class Item25 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item26 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_L_hide"; + }; + }; + class Item27 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + class Item28 + { + class data + { + singleType="STRING"; + value="Minigun_Sight_R_hide"; + }; + }; + class Item29 + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + }; + }; + }; + }; + }; + }; + class Attribute1 + { + property="vtx_attribute_doorNumbers"; + expression="[_this, _value] call vtx_uh60_misc_fnc_setDoorNumbers;"; + class Value + { + class data + { + singleType="STRING"; + value="04"; + }; + }; + }; + class Attribute2 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""rhs_weap_m4_carryhandle"",""FirstAidKit"",""Medikit""],[2,10,2]],[[""rhs_mag_30Rnd_556x45_M855A1_Stanag"",""rhs_mag_m67"",""rhs_mag_m18_green"",""rhs_mag_m18_red"",""rhs_mag_an_m8hc""],[12,4,2,2,4]],[[],[]],[[""B_Parachute""],[4]]],false]"; + }; + }; + }; + class Attribute3 + { + property="ace_fastroping_equipFRIES"; + expression="if (_value) then {[_this] call ace_fastroping_fnc_equipFRIES}"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute4 + { + property="vtx_attribute_markings"; + expression="_this setObjectTextureGlobal [19, _value];"; + class Value + { + class data + { + singleType="STRING"; + value="\z\vtx\addons\uh60_misc\data\markings\markings_grimreaper_ca.paa"; + }; + }; + }; + nAttributes=5; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={20.724121,0.89242268,7.9262695}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=611; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Group"; + side="West"; + class Entities + { + items=4; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={17.228027,0.0014390945,5.2524414}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; + description="Pilot@BUFFALO-4"; + isPlayable=1; + }; + id=613; + type="Cav_B_A_Helicopter_Tra_Pilot_B4_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=4; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={18.228027,0.0014390945,5.2524414}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; + description="Co-Pilot@BUFFALO-4"; + isPlayable=1; + }; + id=614; + type="Cav_B_A_Helicopter_Tra_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=4; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={17.228027,0.0014390945,4.2524414}; + }; + side="West"; + flags=5; + class Attributes + { + rank="SERGEANT"; + init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; + description="Crew Chief@BUFFALO-4"; + isPlayable=1; + }; + id=615; + type="Cav_B_A_Helicopter_Tra_CrewChief_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=4; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={18.228027,0.0014390945,4.2524414}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.44999999; + rank="CORPORAL"; + init="call{this setgroupID[""BUFFALO-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""BUFFALO-4""];}"; + description="Crew@BUFFALO-4"; + isPlayable=1; + }; + id=616; + type="Cav_B_A_Helicopter_Tra_DoorGunner_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isMedic"; + expression="if (_value != -1 && {_value != (parseNumber (_this getUnitTrait 'medic'))}) then {_this setVariable [""ace_medical_medicClass"", _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male11ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=4; + }; + }; + }; + class Attributes + { + dynamicSimulation=1; + }; + id=612; + }; + }; + id=609; + }; + class Item4 + { + dataType="Comment"; + class PositionInfo + { + position[]={21.38623,5.777462,18.852051}; + }; + title="Rotary Transport (Tooltip)"; + description="These are MH-60Ms, they can lift the entire platoon, but it is going to be tight to have too many additional attachments to the platoon. You may be able to swap for the UH-60M for one more seat per bird, but that's about it. It's also less cool sitting in a seat vs the side of the helicopter... A good rule of thumb is to include some form of Attack Rotary escort with the Serial."; + id=617; + atlOffset=5.777462; + }; + }; + id=586; + atlOffset=2.888731; + }; + class Item5 + { + dataType="Layer"; + name="Service Vehicles"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-6.3598633,1.9255862,3.684082}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=619; + type="B_Truck_01_ammo_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-1.3598633,1.9160042,3.6821289}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=620; + type="B_Truck_01_fuel_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={3.6401367,2.3134775,3.6821289}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=621; + type="B_Truck_01_Repair_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + }; + id=618; + }; +}; diff --git a/Compositions/Cav_Rotary_Aviation/header.sqe b/Compositions/6.Cav_Rotary_Aviation/header.sqe similarity index 89% rename from Compositions/Cav_Rotary_Aviation/header.sqe rename to Compositions/6.Cav_Rotary_Aviation/header.sqe index 4ca603b6e..5a582cb45 100644 --- a/Compositions/Cav_Rotary_Aviation/header.sqe +++ b/Compositions/6.Cav_Rotary_Aviation/header.sqe @@ -1,22 +1,22 @@ -version=54; -name="Rotary_Aviation_vTEST"; -author="=7Cav=CPL.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "A3_Weapons_F_Ammoboxes", - "ace_cargo", - "RHS_US_A2_AirImport", - "cav_alpha_characters_units", - "cav_alpha_characters", - "Desert", - "vtx_mh60m", - "rhsusf_c_melb", - "ace_compat_rhs_usf3_fastroping", - "A3_Soft_F_Gamma_Truck_01", - "A3_Soft_F_Exp_Truck_01", - "USAF_ServiceMenu", - "ace_realisticnames", - "ace_rearm", - "ace_refuel" -}; +version=54; +name="6.Rotary_Aviation_vDEVBUILD"; +author="=7Cav=CPL.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "RHS_US_A2_AirImport", + "cav_alpha_characters_units", + "cav_alpha_characters", + "Desert", + "vtx_mh60m", + "rhsusf_c_melb", + "ace_compat_rhs_usf3_fastroping", + "A3_Soft_F_Gamma_Truck_01", + "A3_Soft_F_Exp_Truck_01", + "USAF_ServiceMenu", + "ace_realisticnames", + "ace_rearm", + "ace_refuel" +}; diff --git a/Compositions/Cav_Fixed_Wing_Aviation/composition.sqe b/Compositions/7.Cav_Fixed_Wing_Aviation/composition.sqe similarity index 96% rename from Compositions/Cav_Fixed_Wing_Aviation/composition.sqe rename to Compositions/7.Cav_Fixed_Wing_Aviation/composition.sqe index bbe5ac705..f80de9192 100644 --- a/Compositions/Cav_Fixed_Wing_Aviation/composition.sqe +++ b/Compositions/7.Cav_Fixed_Wing_Aviation/composition.sqe @@ -1,2220 +1,2220 @@ -version=54; -center[]={5664.8892,5,7211.1616}; -class items -{ - items=8; - class Item0 - { - dataType="Layer"; - name="FW Air Superiority (F-22A)"; - class Entities - { - items=6; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-28.081055,0.89242268,36.59668}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=356; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-38.170898,2.479682,43.040039}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=357; - type="USAF_F22_EWP_AG"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-18.170898,2.479682,43.540039}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=358; - type="USAF_F22_EWP_AG"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item3 - { - dataType="Comment"; - class PositionInfo - { - position[]={-28.609375,0.036382675,44.245117}; - }; - title="FW Attack ASF (Tooltip)"; - description="The F-22A is primarily an air to air intercept fighter. It excels best when it's slick. There's the stock slick version and three variants: EWP-AG, EWP-AA, Heavy. EWP is Enhanced Weapons Package. AG and AA is Air to Ground and Air to Air. Heavy is just outer hardpoints. All three of these variants technically negate the stealth benefits of the F-22. Pilots will pick what they want. Definitely throw some fast air at these guys, they'll love every minute of it."; - id=359; - atlOffset=0.036382675; - }; - class Item4 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-30.492676,0.0014390945,33.658203}; - angles[]={-0,0.019565141,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAPTOR-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-1""];}"; - description="Pilot@RAPTOR-1"; - isPlayable=1; - }; - id=361; - type="Cav_B_A_Plane_Fighter_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=360; - }; - class Item5 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-25.70459,0.0014390945,33.855469}; - angles[]={-0,0.019565141,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""RAPTOR-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-2""];}"; - description="Pilot@RAPTOR-2"; - isPlayable=1; - }; - id=363; - type="Cav_B_A_Plane_Fighter_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=362; - }; - }; - id=355; - atlOffset=0.0045480728; - }; - class Item1 - { - dataType="Layer"; - name="FW Attack Ground (A-10C)"; - class Entities - { - items=6; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-22.814941,0.0014390945,-10.224609}; - angles[]={0,0.019565141,0}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""HOG-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""HOG-1""];}"; - description="Pilot@HOG-1"; - isPlayable=1; - }; - id=366; - type="Cav_B_A_Plane_Fighter_Pilot_Hog_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=365; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-30.89209,0.0014390945,-10.383789}; - angles[]={0,0.019565141,0}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""HOG-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""HOG-2""];}"; - description="Pilot@HOG-2"; - isPlayable=1; - }; - id=368; - type="Cav_B_A_Plane_Fighter_Pilot_Hog_2_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=367; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-16.552246,2.094676,-3.0351563}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=369; - type="USAF_A10"; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-36.552246,2.094676,-3.5351563}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=370; - type="USAF_A10"; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-26.883301,0.89242268,-7.8691406}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=371; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item5 - { - dataType="Comment"; - class PositionInfo - { - position[]={-26.849121,0.036382675,-7.0649414}; - }; - title="FW Ground Attack"; - description="The A-10 is venerable as one of the ""best"" A2G platforms on the market. There are only two key things here: if we have an A-10 up, there is no enemy fixed wing. A-10s only operate in air superiority environments where we control the skies. That's not to say you can't threaten them with a good time though."; - id=372; - atlOffset=0.036382675; - }; - }; - id=364; - atlOffset=0.018191338; - }; - class Item2 - { - dataType="Layer"; - name="FW Attack Multirole (F-35A)"; - class Entities - { - items=6; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-30.05957,0.0014390945,14.862793}; - angles[]={-0,0.019565141,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""LIGHTNING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-1""];}"; - description="Pilot@LIGHTNING-1"; - isPlayable=1; - }; - id=375; - type="Cav_B_A_Plane_Fighter_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=374; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-25.271484,0.0014390945,15.061035}; - angles[]={-0,0.019565141,0}; - }; - side="West"; - flags=6; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""LIGHTNING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-2""];}"; - description="Pilot@LIGHTNING-2"; - isPlayable=1; - }; - id=377; - type="Cav_B_A_Plane_Fighter_Pilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.04; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=376; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-27.624512,0.89242268,17.678711}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=378; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item3 - { - dataType="Object"; - class PositionInfo - { - position[]={-17.670898,2.2409725,23.594727}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=379; - type="USAF_F35A"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item4 - { - dataType="Object"; - class PositionInfo - { - position[]={-37.670898,2.2409725,23.094727}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=380; - type="USAF_F35A"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item5 - { - dataType="Comment"; - class PositionInfo - { - position[]={-28.333984,0.036382675,21.541016}; - }; - title="FW Multirole (Tooltip)"; - description="The F-35A is a versatile platform capable of carrying air to air and air to ground ordnance - pick the role you want it to do and stick to it. The F-35A also has an on-board satellite view of the battlespace. Stand-off ordnances from multiple kilometers away are the namesake of the F-35A, but it's capable of everything the A-10C is and more. (Sorry not sorry Suto)"; - id=381; - atlOffset=0.036382675; - }; - }; - id=373; - atlOffset=0.018191338; - }; - class Item3 - { - dataType="Layer"; - name="FW Drone Attack (MQ-9)"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={44.769043,1.7847018,34.138184}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="this setGroupid [""RPR""];"; - textures="USAF_TwoTone"; - dynamicSimulation=1; - pylons="USAF_PylonRack_2Rnd_AGM114R[0];USAF_PylonRack_4Rnd_GBU53[0];USAF_PylonRack_4Rnd_GBU39[0];USAF_PylonRack_2Rnd_AGM114R[0];"; - }; - id=383; - type="USAF_MQ9"; - class CustomAttributes - { - class Attribute0 - { - property="VehicleCustomization"; - expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; - class Value - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="ARRAY"; - class value - { - items=2; - class Item0 - { - class data - { - singleType="STRING"; - value="USAF_TwoTone"; - }; - }; - class Item1 - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - }; - }; - class Item1 - { - class data - { - singleType="ARRAY"; - }; - }; - }; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={44.702637,0.0014390945,20.442383}; - }; - side="West"; - flags=7; - class Attributes - { - init="this setGroupid [""REAPER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""REAPER-1""];"; - description="Drone Pilot@REAPER-1"; - isPlayable=1; - }; - id=385; - type="Cav_B_A_AirController_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=384; - }; - class Item2 - { - dataType="Comment"; - class PositionInfo - { - position[]={44.790527,0.036382198,40.858887}; - }; - title="FW Drone Attack (Tooltip)"; - description="The MQ-9 has a light armament available to it that is mostly Laser guided. All ordnance is capable of tracking and launching from the drone's camera, with little regard on the orientation of the drone (given enough altitude). cTAB tablets have the ability to interface with the drone gunner optics which allows ground force elements instant eyes-on to whatever the drone is seeing."; - id=386; - atlOffset=0.036382198; - }; - }; - id=382; - atlOffset=0.018191338; - }; - class Item4 - { - dataType="Layer"; - name="FW Drone Recon (RQ-4A)"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={44.793457,1.8006945,2.347168}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="this setGroupid [""DTHSTR""];"; - dynamicSimulation=1; - }; - id=388; - type="USAF_RQ4A"; - }; - class Item1 - { - dataType="Comment"; - class PositionInfo - { - position[]={44.601563,0.036382198,11.121582}; - }; - title="FW Drone Recon (Tooltip)"; - description="The RQ-4 can be put in the air on a racetrack pattern and has enough fuel to last an entire 3hr op. If your operation is deemed to be in an area that has BLUFOR having air supremacy, it's a good idea to put one of these in the air at a height of 2500m or higher in a loiter pattern over the AO. Units with cTAB can tap into the drone's turret camera and observe the area for a better perspective, allowing freedom of information to the unit without the need of a middle-man calling out what he sees."; - id=389; - atlOffset=0.036382198; - }; - }; - id=387; - atlOffset=0.018191338; - }; - class Item5 - { - dataType="Layer"; - name="FW Transport (C-130J)"; - class Entities - { - items=5; - class Item0 - { - dataType="Layer"; - name="C-130J Titan-1"; - class Entities - { - items=3; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={7.4575195,0.0014390945,-29.879883}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""TITAN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="Pilot@TITAN-1"; - isPlayable=1; - }; - id=402; - type="Cav_B_A_Plane_Transport_Pilot_Titan_1_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male04ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={8.4589844,0.0014390945,-29.879395}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""TITAN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; - description="Co-Pilot@TITAN-1"; - isPlayable=1; - }; - id=403; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male03ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=401; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={7.9575195,0.89242268,-27.930176}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=404; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={10.490723,0.014522076,-48.806152}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=405; - type="USAF_C130J"; - }; - }; - id=400; - }; - class Item1 - { - dataType="Layer"; - name="C-130J Titan-2"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={10.500488,0.014522076,-81.259277}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=407; - type="USAF_C130J"; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={6.5771484,0.0014390945,-73.4375}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""TITAN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-2""];}"; - description="Pilot@TITAN-2"; - isPlayable=1; - }; - id=409; - type="Cav_B_A_Plane_Transport_Pilot_Titan_2_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.95999998; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={7.5786133,0.0014390945,-73.437012}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""TITAN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-2""];}"; - description="Co-Pilot@TITAN-2"; - isPlayable=1; - }; - id=410; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male07ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.01; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=408; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={7.0004883,0.89242268,-70.664551}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=411; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=406; - }; - class Item2 - { - dataType="Comment"; - class PositionInfo - { - position[]={9.3535156,0.036382198,-66.238281}; - }; - title="FW Transport (Tooltip)"; - description="The C-130J's from USAF can fit *almost* the entire Bandit Platoon in one C-130J, however, keep in mind that the more bodies in one bird, the longer your DZ or the need to have multiple sticks in one bird and have go-arounds, which means longer time before all troops are in the AO. You won't be able to jump the entirety of the PLT's 11 vehicles with only 2 cargo variants (3 vehicles fit in one C-130J Cargo) so it's recommended to either forego the vehicles or zeus-assist them if you only plan on using the C-130s."; - id=412; - atlOffset=0.036382198; - }; - class Item3 - { - dataType="Layer"; - name="C-130J Titan-3"; - class Entities - { - items=3; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-18.124512,0.0014390945,-23.94873}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""TITAN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-3""];}"; - description="Pilot@TITAN-3"; - isPlayable=1; - }; - id=415; - type="Cav_B_A_Plane_Transport_Pilot_Titan_3_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male02ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.05; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-17.123535,0.0014390945,-23.949219}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""TITAN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-3""];}"; - description="Co-Pilot@TITAN-3"; - isPlayable=1; - }; - id=416; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male12ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=1.03; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=414; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-21.5625,0.014522076,-32.713379}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=417; - type="USAF_C130J_Cargo"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ItemGPS"",""ItemRadio""],[1,1]],[[""B_Parachute""],[14]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-17.499512,0.89242268,-21.664551}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=418; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=413; - }; - class Item4 - { - dataType="Layer"; - name="C-130J Titan-4"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={44.525391,0.014522076,-32.794922}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=420; - type="USAF_C130J_Cargo"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ItemGPS"",""ItemRadio""],[1,1]],[[""B_Parachute""],[14]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - class Item1 - { - dataType="Group"; - side="West"; - class Entities - { - items=2; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={40.647949,0.0014390945,-23.800781}; - }; - side="West"; - flags=7; - class Attributes - { - skill=0.60000002; - rank="CAPTAIN"; - init="call{this setgroupID[""TITAN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-4""];}"; - description="Pilot@TITAN-4"; - isPlayable=1; - }; - id=422; - type="Cav_B_A_Plane_Transport_Pilot_Titan_4_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male06ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.99000001; - }; - }; - }; - nAttributes=3; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={41.648438,0.0014390945,-23.80127}; - }; - side="West"; - flags=5; - class Attributes - { - skill=0.55000001; - rank="LIEUTENANT"; - init="call{this setgroupID[""TITAN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-4""];}"; - description="Co-Pilot@TITAN-4"; - isPlayable=1; - }; - id=423; - type="Cav_B_A_Plane_Transport_coPilot_F"; - class CustomAttributes - { - class Attribute0 - { - property="ace_isEngineer"; - expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; - class Value - { - class data - { - singleType="SCALAR"; - value=1; - }; - }; - }; - class Attribute1 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male02ENG"; - }; - }; - }; - class Attribute2 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - nAttributes=3; - }; - }; - }; - class Attributes - { - }; - id=421; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={41.000488,0.89242268,-21.164551}; - }; - side="Empty"; - flags=4; - class Attributes - { - init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; - description="Starter Crate"; - dynamicSimulation=1; - }; - id=424; - type="B_supplyCrate_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=419; - }; - }; - id=399; - atlOffset=0.0045480728; - }; - class Item6 - { - dataType="Layer"; - name="FW Transport Heavy (C-17)"; - class Entities - { - items=2; - class Item0 - { - dataType="Comment"; - class PositionInfo - { - position[]={10.182617,0,7.2314453}; - }; - title="FW Heavy Transport (Tooltip)"; - description="While one C-17 can carry an entire platoon in one transport, keep in mind that the more bodies in one bird, the longer your DZ or the need to have multiple sticks in one bird and have go-arounds, which means longer time before all troops are in the AO. For motorized jumps, the platoon has 11 vehicles. 10 if you forego the Platoon HQ vehicle and have them ride along with the infantry. Each C-17 fits 5 Vehicles. Math."; - id=426; - }; - class Item1 - { - dataType="Layer"; - name="C-17 Titan-1"; - class Entities - { - items=1; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={11.08252,3.3578539,20.386719}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=428; - type="USAF_C17"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ItemGPS"",""ItemRadio""],[1,1]],[[""B_Parachute""],[14]]],false]"; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=427; - }; - }; - id=425; - }; - class Item7 - { - dataType="Layer"; - name="USAF Service Menu"; - class Entities - { - items=6; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={6.2827148,1.9255862,51.668945}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=430; - type="B_Truck_01_ammo_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={11.282715,1.9160042,51.668945}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=431; - type="B_Truck_01_fuel_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={16.282715,2.3134775,51.668945}; - }; - side="Empty"; - flags=4; - class Attributes - { - dynamicSimulation=1; - }; - id=432; - type="B_Truck_01_Repair_F"; - class CustomAttributes - { - class Attribute0 - { - property="ammoBox"; - expression="[_this,_value] call bis_fnc_initAmmoBox;"; - class Value - { - class data - { - singleType="STRING"; - value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item3 - { - dataType="Logic"; - class PositionInfo - { - position[]={6.2827148,0,61.668945}; - }; - id=433; - type="USAF_ServiceMenu_moduleAddRearmService"; - class CustomAttributes - { - class Attribute0 - { - property="USAF_moduleServiceMenuAdd_RemoveCargo"; - expression="_this setVariable ['RemoveCargo',_value,true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - class Attribute1 - { - property="USAF_moduleServiceMenuAdd_Loadout"; - expression="_this setVariable ['Loadout',_value,true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=2; - }; - }; - class Item4 - { - dataType="Logic"; - class PositionInfo - { - position[]={11.282715,0,61.668945}; - }; - id=434; - type="USAF_ServiceMenu_moduleAddRefuelService"; - class CustomAttributes - { - class Attribute0 - { - property="USAF_moduleServiceMenuAdd_RemoveCargo"; - expression="_this setVariable ['RemoveCargo',_value,true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - class Item5 - { - dataType="Logic"; - class PositionInfo - { - position[]={16.282715,0,61.668945}; - }; - id=435; - type="USAF_ServiceMenu_moduleAddRepairService"; - class CustomAttributes - { - class Attribute0 - { - property="USAF_moduleServiceMenuAdd_RemoveCargo"; - expression="_this setVariable ['RemoveCargo',_value,true];"; - class Value - { - class data - { - singleType="BOOL"; - value=1; - }; - }; - }; - nAttributes=1; - }; - }; - }; - id=429; - }; -}; -class connections -{ - class LinkIDProvider - { - nextID=3; - }; - class Links - { - items=3; - class Item0 - { - linkID=0; - item0=433; - item1=430; - class CustomData - { - type="Sync"; - }; - }; - class Item1 - { - linkID=1; - item0=434; - item1=431; - class CustomData - { - type="Sync"; - }; - }; - class Item2 - { - linkID=2; - item0=435; - item1=432; - class CustomData - { - type="Sync"; - }; - }; - }; -}; +version=54; +center[]={5664.8892,5,7211.1616}; +class items +{ + items=8; + class Item0 + { + dataType="Layer"; + name="FW Air Superiority (F-22A)"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-28.081055,0.89242268,36.59668}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=356; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-38.170898,2.479682,43.040039}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=357; + type="USAF_F22_EWP_AG"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-18.170898,2.479682,43.540039}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=358; + type="USAF_F22_EWP_AG"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Comment"; + class PositionInfo + { + position[]={-28.609375,0.036382675,44.245117}; + }; + title="FW Attack ASF (Tooltip)"; + description="The F-22A is primarily an air to air intercept fighter. It excels best when it's slick. There's the stock slick version and three variants: EWP-AG, EWP-AA, Heavy. EWP is Enhanced Weapons Package. AG and AA is Air to Ground and Air to Air. Heavy is just outer hardpoints. All three of these variants technically negate the stealth benefits of the F-22. Pilots will pick what they want. Definitely throw some fast air at these guys, they'll love every minute of it."; + id=359; + atlOffset=0.036382675; + }; + class Item4 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-30.492676,0.0014390945,33.658203}; + angles[]={-0,0.019565141,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAPTOR-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-1""];}"; + description="Pilot@RAPTOR-1"; + isPlayable=1; + }; + id=361; + type="Cav_B_A_Plane_Fighter_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=360; + }; + class Item5 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-25.70459,0.0014390945,33.855469}; + angles[]={-0,0.019565141,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""RAPTOR-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-2""];}"; + description="Pilot@RAPTOR-2"; + isPlayable=1; + }; + id=363; + type="Cav_B_A_Plane_Fighter_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=362; + }; + }; + id=355; + atlOffset=0.0045480728; + }; + class Item1 + { + dataType="Layer"; + name="FW Attack Ground (A-10C)"; + class Entities + { + items=6; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-22.814941,0.0014390945,-10.224609}; + angles[]={0,0.019565141,0}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""HOG-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""HOG-1""];}"; + description="Pilot@HOG-1"; + isPlayable=1; + }; + id=366; + type="Cav_B_A_Plane_Fighter_Pilot_Hog_1_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=365; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-30.89209,0.0014390945,-10.383789}; + angles[]={0,0.019565141,0}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""HOG-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""HOG-2""];}"; + description="Pilot@HOG-2"; + isPlayable=1; + }; + id=368; + type="Cav_B_A_Plane_Fighter_Pilot_Hog_2_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=367; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-16.552246,2.094676,-3.0351563}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=369; + type="USAF_A10"; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-36.552246,2.094676,-3.5351563}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=370; + type="USAF_A10"; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-26.883301,0.89242268,-7.8691406}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=371; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Comment"; + class PositionInfo + { + position[]={-26.849121,0.036382675,-7.0649414}; + }; + title="FW Ground Attack"; + description="The A-10 is venerable as one of the ""best"" A2G platforms on the market. There are only two key things here: if we have an A-10 up, there is no enemy fixed wing. A-10s only operate in air superiority environments where we control the skies. That's not to say you can't threaten them with a good time though."; + id=372; + atlOffset=0.036382675; + }; + }; + id=364; + atlOffset=0.018191338; + }; + class Item2 + { + dataType="Layer"; + name="FW Attack Multirole (F-35A)"; + class Entities + { + items=6; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-30.05957,0.0014390945,14.862793}; + angles[]={-0,0.019565141,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""LIGHTNING-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-1""];}"; + description="Pilot@LIGHTNING-1"; + isPlayable=1; + }; + id=375; + type="Cav_B_A_Plane_Fighter_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=374; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-25.271484,0.0014390945,15.061035}; + angles[]={-0,0.019565141,0}; + }; + side="West"; + flags=6; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""LIGHTNING-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""EAGLE-2""];}"; + description="Pilot@LIGHTNING-2"; + isPlayable=1; + }; + id=377; + type="Cav_B_A_Plane_Fighter_Pilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.04; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=376; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-27.624512,0.89242268,17.678711}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=378; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item3 + { + dataType="Object"; + class PositionInfo + { + position[]={-17.670898,2.2409725,23.594727}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=379; + type="USAF_F35A"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item4 + { + dataType="Object"; + class PositionInfo + { + position[]={-37.670898,2.2409725,23.094727}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=380; + type="USAF_F35A"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Comment"; + class PositionInfo + { + position[]={-28.333984,0.036382675,21.541016}; + }; + title="FW Multirole (Tooltip)"; + description="The F-35A is a versatile platform capable of carrying air to air and air to ground ordnance - pick the role you want it to do and stick to it. The F-35A also has an on-board satellite view of the battlespace. Stand-off ordnances from multiple kilometers away are the namesake of the F-35A, but it's capable of everything the A-10C is and more. (Sorry not sorry Suto)"; + id=381; + atlOffset=0.036382675; + }; + }; + id=373; + atlOffset=0.018191338; + }; + class Item3 + { + dataType="Layer"; + name="FW Drone Attack (MQ-9)"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={44.769043,1.7847018,34.138184}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="this setGroupid [""RPR""];"; + textures="USAF_TwoTone"; + dynamicSimulation=1; + pylons="USAF_PylonRack_2Rnd_AGM114R[0];USAF_PylonRack_4Rnd_GBU53[0];USAF_PylonRack_4Rnd_GBU39[0];USAF_PylonRack_2Rnd_AGM114R[0];"; + }; + id=383; + type="USAF_MQ9"; + class CustomAttributes + { + class Attribute0 + { + property="VehicleCustomization"; + expression="if (local _this) then {([_this] + _value + [true]) call (uinamespace getvariable 'BIS_fnc_initVehicle')};"; + class Value + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="ARRAY"; + class value + { + items=2; + class Item0 + { + class data + { + singleType="STRING"; + value="USAF_TwoTone"; + }; + }; + class Item1 + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + }; + }; + class Item1 + { + class data + { + singleType="ARRAY"; + }; + }; + }; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={44.702637,0.0014390945,20.442383}; + }; + side="West"; + flags=7; + class Attributes + { + init="this setGroupid [""REAPER-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""REAPER-1""];"; + description="Drone Pilot@REAPER-1"; + isPlayable=1; + }; + id=385; + type="Cav_B_A_AirController_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=384; + }; + class Item2 + { + dataType="Comment"; + class PositionInfo + { + position[]={44.790527,0.036382198,40.858887}; + }; + title="FW Drone Attack (Tooltip)"; + description="The MQ-9 has a light armament available to it that is mostly Laser guided. All ordnance is capable of tracking and launching from the drone's camera, with little regard on the orientation of the drone (given enough altitude). cTAB tablets have the ability to interface with the drone gunner optics which allows ground force elements instant eyes-on to whatever the drone is seeing."; + id=386; + atlOffset=0.036382198; + }; + }; + id=382; + atlOffset=0.018191338; + }; + class Item4 + { + dataType="Layer"; + name="FW Drone Recon (RQ-4A)"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={44.793457,1.8006945,2.347168}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="this setGroupid [""DTHSTR""];"; + dynamicSimulation=1; + }; + id=388; + type="USAF_RQ4A"; + }; + class Item1 + { + dataType="Comment"; + class PositionInfo + { + position[]={44.601563,0.036382198,11.121582}; + }; + title="FW Drone Recon (Tooltip)"; + description="The RQ-4 can be put in the air on a racetrack pattern and has enough fuel to last an entire 3hr op. If your operation is deemed to be in an area that has BLUFOR having air supremacy, it's a good idea to put one of these in the air at a height of 2500m or higher in a loiter pattern over the AO. Units with cTAB can tap into the drone's turret camera and observe the area for a better perspective, allowing freedom of information to the unit without the need of a middle-man calling out what he sees."; + id=389; + atlOffset=0.036382198; + }; + }; + id=387; + atlOffset=0.018191338; + }; + class Item5 + { + dataType="Layer"; + name="FW Transport (C-130J)"; + class Entities + { + items=5; + class Item0 + { + dataType="Layer"; + name="C-130J Titan-1"; + class Entities + { + items=3; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={7.4575195,0.0014390945,-29.879883}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""TITAN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; + description="Pilot@TITAN-1"; + isPlayable=1; + }; + id=402; + type="Cav_B_A_Plane_Transport_Pilot_Titan_1_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male04ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={8.4589844,0.0014390945,-29.879395}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""TITAN-1""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-1""];}"; + description="Co-Pilot@TITAN-1"; + isPlayable=1; + }; + id=403; + type="Cav_B_A_Plane_Transport_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male03ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=401; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={7.9575195,0.89242268,-27.930176}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=404; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={10.490723,0.014522076,-48.806152}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=405; + type="USAF_C130J"; + }; + }; + id=400; + }; + class Item1 + { + dataType="Layer"; + name="C-130J Titan-2"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={10.500488,0.014522076,-81.259277}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=407; + type="USAF_C130J"; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6.5771484,0.0014390945,-73.4375}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""TITAN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-2""];}"; + description="Pilot@TITAN-2"; + isPlayable=1; + }; + id=409; + type="Cav_B_A_Plane_Transport_Pilot_Titan_2_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.95999998; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={7.5786133,0.0014390945,-73.437012}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""TITAN-2""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-2""];}"; + description="Co-Pilot@TITAN-2"; + isPlayable=1; + }; + id=410; + type="Cav_B_A_Plane_Transport_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male07ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.01; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=408; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={7.0004883,0.89242268,-70.664551}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=411; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=406; + }; + class Item2 + { + dataType="Comment"; + class PositionInfo + { + position[]={9.3535156,0.036382198,-66.238281}; + }; + title="FW Transport (Tooltip)"; + description="The C-130J's from USAF can fit *almost* the entire Bandit Platoon in one C-130J, however, keep in mind that the more bodies in one bird, the longer your DZ or the need to have multiple sticks in one bird and have go-arounds, which means longer time before all troops are in the AO. You won't be able to jump the entirety of the PLT's 11 vehicles with only 2 cargo variants (3 vehicles fit in one C-130J Cargo) so it's recommended to either forego the vehicles or zeus-assist them if you only plan on using the C-130s."; + id=412; + atlOffset=0.036382198; + }; + class Item3 + { + dataType="Layer"; + name="C-130J Titan-3"; + class Entities + { + items=3; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-18.124512,0.0014390945,-23.94873}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""TITAN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-3""];}"; + description="Pilot@TITAN-3"; + isPlayable=1; + }; + id=415; + type="Cav_B_A_Plane_Transport_Pilot_Titan_3_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.05; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-17.123535,0.0014390945,-23.949219}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""TITAN-3""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-3""];}"; + description="Co-Pilot@TITAN-3"; + isPlayable=1; + }; + id=416; + type="Cav_B_A_Plane_Transport_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male12ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=1.03; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=414; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-21.5625,0.014522076,-32.713379}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=417; + type="USAF_C130J_Cargo"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ItemGPS"",""ItemRadio""],[1,1]],[[""B_Parachute""],[14]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-17.499512,0.89242268,-21.664551}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=418; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=413; + }; + class Item4 + { + dataType="Layer"; + name="C-130J Titan-4"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={44.525391,0.014522076,-32.794922}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=420; + type="USAF_C130J_Cargo"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ItemGPS"",""ItemRadio""],[1,1]],[[""B_Parachute""],[14]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + class Item1 + { + dataType="Group"; + side="West"; + class Entities + { + items=2; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={40.647949,0.0014390945,-23.800781}; + }; + side="West"; + flags=7; + class Attributes + { + skill=0.60000002; + rank="CAPTAIN"; + init="call{this setgroupID[""TITAN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-4""];}"; + description="Pilot@TITAN-4"; + isPlayable=1; + }; + id=422; + type="Cav_B_A_Plane_Transport_Pilot_Titan_4_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male06ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.99000001; + }; + }; + }; + nAttributes=3; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={41.648438,0.0014390945,-23.80127}; + }; + side="West"; + flags=5; + class Attributes + { + skill=0.55000001; + rank="LIEUTENANT"; + init="call{this setgroupID[""TITAN-4""];" \n "this setVariable [""cScripts_Player_Unit"", ""TITAN-4""];}"; + description="Co-Pilot@TITAN-4"; + isPlayable=1; + }; + id=423; + type="Cav_B_A_Plane_Transport_coPilot_F"; + class CustomAttributes + { + class Attribute0 + { + property="ace_isEngineer"; + expression="if !(_value == ([0, 1] select (_this getUnitTrait 'engineer')) || {_value == -1}) then {_this setVariable ['ace_isEngineer', _value, true]}"; + class Value + { + class data + { + singleType="SCALAR"; + value=1; + }; + }; + }; + class Attribute1 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male02ENG"; + }; + }; + }; + class Attribute2 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + nAttributes=3; + }; + }; + }; + class Attributes + { + }; + id=421; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={41.000488,0.89242268,-21.164551}; + }; + side="Empty"; + flags=4; + class Attributes + { + init="call{[this,""Alpha"",true,true,true,true,false] call cScripts_fnc_doStarterCrate;}"; + description="Starter Crate"; + dynamicSimulation=1; + }; + id=424; + type="B_supplyCrate_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""launch_NLAW_F"",""arifle_MX_F"",""arifle_MX_SW_F"",""FirstAidKit""],[1,2,1,10]],[[""30Rnd_65x39_caseless_mag"",""16Rnd_9x21_Mag"",""30Rnd_45ACP_Mag_SMG_01"",""20Rnd_762x51_Mag"",""100Rnd_65x39_caseless_mag"",""1Rnd_HE_Grenade_shell"",""3Rnd_HE_Grenade_shell"",""1Rnd_Smoke_Grenade_shell"",""1Rnd_SmokeGreen_Grenade_shell"",""Chemlight_green"",""Laserbatteries"",""HandGrenade"",""MiniGrenade"",""SmokeShell"",""SmokeShellGreen"",""UGL_FlareWhite_F"",""UGL_FlareGreen_F"",""ACE_SpareBarrel"",""ACE_20Rnd_65x47_Scenar_mag"",""ACE_30Rnd_65x47_Scenar_mag"",""ACE_20Rnd_65_Creedmor_mag"",""ACE_30Rnd_65_Creedmor_mag"",""ACE_10Rnd_762x51_M118LR_Mag"",""ACE_20Rnd_762x51_M118LR_Mag"",""ACE_10Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk316_Mod_0_Mag"",""ACE_10Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mk319_Mod_0_Mag"",""ACE_20Rnd_762x51_Mag_Tracer"",""ACE_20Rnd_762x51_Mag_Tracer_Dim""],[24,6,6,6,6,3,1,2,2,6,2,6,6,2,2,2,2,2,4,4,4,4,4,4,4,4,4,4,4,4]],[[""Laserdesignator"",""acc_flashlight"",""bipod_01_F_blk"",""ACE_Chemlight_Shield"",""ACE_EarPlugs""],[1,2,1,12,12]],[[""B_Kitbag_mcamo""],[2]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=419; + }; + }; + id=399; + atlOffset=0.0045480728; + }; + class Item6 + { + dataType="Layer"; + name="FW Transport Heavy (C-17)"; + class Entities + { + items=2; + class Item0 + { + dataType="Comment"; + class PositionInfo + { + position[]={10.182617,0,7.2314453}; + }; + title="FW Heavy Transport (Tooltip)"; + description="While one C-17 can carry an entire platoon in one transport, keep in mind that the more bodies in one bird, the longer your DZ or the need to have multiple sticks in one bird and have go-arounds, which means longer time before all troops are in the AO. For motorized jumps, the platoon has 11 vehicles. 10 if you forego the Platoon HQ vehicle and have them ride along with the infantry. Each C-17 fits 5 Vehicles. Math."; + id=426; + }; + class Item1 + { + dataType="Layer"; + name="C-17 Titan-1"; + class Entities + { + items=1; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={11.08252,3.3578539,20.386719}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=428; + type="USAF_C17"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[4]],[[],[]],[[""ItemGPS"",""ItemRadio""],[1,1]],[[""B_Parachute""],[14]]],false]"; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=427; + }; + }; + id=425; + }; + class Item7 + { + dataType="Layer"; + name="USAF Service Menu"; + class Entities + { + items=6; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={6.2827148,1.9255862,51.668945}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=430; + type="B_Truck_01_ammo_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={11.282715,1.9160042,51.668945}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=431; + type="B_Truck_01_fuel_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={16.282715,2.3134775,51.668945}; + }; + side="Empty"; + flags=4; + class Attributes + { + dynamicSimulation=1; + }; + id=432; + type="B_Truck_01_Repair_F"; + class CustomAttributes + { + class Attribute0 + { + property="ammoBox"; + expression="[_this,_value] call bis_fnc_initAmmoBox;"; + class Value + { + class data + { + singleType="STRING"; + value="[[[[""FirstAidKit""],[10]],[[],[]],[[],[]],[[],[]]],false]"; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={6.2827148,0,61.668945}; + }; + id=433; + type="USAF_ServiceMenu_moduleAddRearmService"; + class CustomAttributes + { + class Attribute0 + { + property="USAF_moduleServiceMenuAdd_RemoveCargo"; + expression="_this setVariable ['RemoveCargo',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + class Attribute1 + { + property="USAF_moduleServiceMenuAdd_Loadout"; + expression="_this setVariable ['Loadout',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=2; + }; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={11.282715,0,61.668945}; + }; + id=434; + type="USAF_ServiceMenu_moduleAddRefuelService"; + class CustomAttributes + { + class Attribute0 + { + property="USAF_moduleServiceMenuAdd_RemoveCargo"; + expression="_this setVariable ['RemoveCargo',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={16.282715,0,61.668945}; + }; + id=435; + type="USAF_ServiceMenu_moduleAddRepairService"; + class CustomAttributes + { + class Attribute0 + { + property="USAF_moduleServiceMenuAdd_RemoveCargo"; + expression="_this setVariable ['RemoveCargo',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=1; + }; + }; + }; + nAttributes=1; + }; + }; + }; + id=429; + }; +}; +class connections +{ + class LinkIDProvider + { + nextID=3; + }; + class Links + { + items=3; + class Item0 + { + linkID=0; + item0=433; + item1=430; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=434; + item1=431; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=435; + item1=432; + class CustomData + { + type="Sync"; + }; + }; + }; +}; diff --git a/Compositions/Cav_Fixed_Wing_Aviation/header.sqe b/Compositions/7.Cav_Fixed_Wing_Aviation/header.sqe similarity index 88% rename from Compositions/Cav_Fixed_Wing_Aviation/header.sqe rename to Compositions/7.Cav_Fixed_Wing_Aviation/header.sqe index 13cbd95ee..c4a70093f 100644 --- a/Compositions/Cav_Fixed_Wing_Aviation/header.sqe +++ b/Compositions/7.Cav_Fixed_Wing_Aviation/header.sqe @@ -1,25 +1,25 @@ -version=54; -name="Fixed_Wing_Aviation_vTEST"; -author="=7Cav=cpl.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "A3_Weapons_F_Ammoboxes", - "ace_cargo", - "USAF_F22_C", - "Desert", - "cav_alpha_characters", - "cav_alpha_characters_units", - "USAF_A10_C", - "USAF_F35A_C", - "USAF_MQ9", - "USAF_RQ4A", - "USAF_C130J_C", - "USAF_C17_C", - "A3_Soft_F_Gamma_Truck_01", - "A3_Soft_F_Exp_Truck_01", - "USAF_ServiceMenu", - "ace_realisticnames", - "ace_rearm", - "ace_refuel" -}; +version=54; +name="7.Fixed_Wing_Aviation_vDEVBUILD"; +author="=7Cav=cpl.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "A3_Weapons_F_Ammoboxes", + "ace_cargo", + "USAF_F22_C", + "Desert", + "cav_alpha_characters", + "cav_alpha_characters_units", + "USAF_A10_C", + "USAF_F35A_C", + "USAF_MQ9", + "USAF_RQ4A", + "USAF_C130J_C", + "USAF_C17_C", + "A3_Soft_F_Gamma_Truck_01", + "A3_Soft_F_Exp_Truck_01", + "USAF_ServiceMenu", + "ace_realisticnames", + "ace_rearm", + "ace_refuel" +}; diff --git a/Compositions/Cav_S3_Mission_Controller/composition.sqe b/Compositions/8.Cav_S3_Mission_Controller/composition.sqe similarity index 95% rename from Compositions/Cav_S3_Mission_Controller/composition.sqe rename to Compositions/8.Cav_S3_Mission_Controller/composition.sqe index 1b8d29d76..9be50b62a 100644 --- a/Compositions/Cav_S3_Mission_Controller/composition.sqe +++ b/Compositions/8.Cav_S3_Mission_Controller/composition.sqe @@ -1,692 +1,692 @@ -version=54; -center[]={5666.9292,5,7236.9761}; -class items -{ - items=1; - class Item0 - { - dataType="Layer"; - name="S3_Mission_Controllers"; - class Entities - { - items=8; - class Item0 - { - dataType="Group"; - side="West"; - class Entities - { - items=3; - class Item0 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.0249023,0.0014390945,1.6967773}; - angles[]={-0,4.6973796,0}; - }; - side="West"; - flags=6; - class Attributes - { - init="this setGroupid [""ZEUS""];" \n "this setVariable [""cScripts_Player_Unit"", ""ZEUS""];"; - name="S3"; - description="Lead Mission Controller@MISSION CONTROLLERS"; - isPlayable=1; - }; - id=625; - type="Cav_B_A_JFO_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - class Attribute4 - { - property="enableStamina"; - expression="_this enablestamina _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=5; - }; - }; - class Item1 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.1118164,0.0014390945,0.35351563}; - angles[]={-0,4.6973796,0}; - }; - side="West"; - flags=4; - class Attributes - { - init="this setGroupid [""ZEUS""];" \n "this setVariable [""cScripts_Player_Unit"", ""ZEUS""];"; - name="S3_1"; - description="Assistant Mission Controller@MISSION CONTROLLERS"; - isPlayable=1; - }; - id=626; - type="Cav_B_A_JFO_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - class Attribute4 - { - property="enableStamina"; - expression="_this enablestamina _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=5; - }; - }; - class Item2 - { - dataType="Object"; - class PositionInfo - { - position[]={-2.1625977,0.0014390945,-0.80810547}; - angles[]={-0,4.6973796,0}; - }; - side="West"; - flags=4; - class Attributes - { - init="this setGroupid [""ZEUS""];" \n "this setVariable [""cScripts_Player_Unit"", ""ZEUS""];"; - name="S3_2"; - description="Assistant Mission Controller@MISSION CONTROLLERS"; - isPlayable=1; - }; - id=627; - type="Cav_B_A_JFO_F"; - class CustomAttributes - { - class Attribute0 - { - property="acex_headless_blacklist"; - expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - class Attribute1 - { - property="allowDamage"; - expression="_this allowdamage _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - class Attribute2 - { - property="speaker"; - expression="_this setspeaker _value;"; - class Value - { - class data - { - singleType="STRING"; - value="Male05ENG"; - }; - }; - }; - class Attribute3 - { - property="pitch"; - expression="_this setpitch _value;"; - class Value - { - class data - { - singleType="SCALAR"; - value=0.98000002; - }; - }; - }; - class Attribute4 - { - property="enableStamina"; - expression="_this enablestamina _value;"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=5; - }; - }; - }; - class Attributes - { - }; - id=624; - }; - class Item1 - { - dataType="Logic"; - class PositionInfo - { - position[]={3.559082,0,-3.4165039}; - }; - id=628; - type="ModuleCuratorAddEditableObjects"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCuratorAddEditableObjects_Curator"; - expression="_this setVariable ['Curator',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value="Z1,Z2,Z3,Z4"; - }; - }; - }; - class Attribute1 - { - property="ModuleCuratorAddEditableObjects_AddCrew"; - expression="_this setVariable ['AddCrew',_value,true];"; - class Value - { - class data - { - singleType="BOOL"; - value=0; - }; - }; - }; - nAttributes=2; - }; - }; - class Item2 - { - dataType="Logic"; - class PositionInfo - { - position[]={-0.41552734,0,1.921875}; - angles[]={0,3.1985602,0}; - }; - name="Z1"; - id=629; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value="S3"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=3; - }; - }; - }; - nAttributes=4; - }; - }; - class Item3 - { - dataType="Logic"; - class PositionInfo - { - position[]={-0.51318359,0,0.50830078}; - angles[]={0,3.1985602,0}; - }; - name="Z2"; - id=630; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value="S3_1"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=3; - }; - }; - }; - nAttributes=4; - }; - }; - class Item4 - { - dataType="Logic"; - class PositionInfo - { - position[]={-0.62744141,0,-0.77832031}; - angles[]={0,3.1985602,0}; - }; - name="Z3"; - id=631; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value="S3_2"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=3; - }; - }; - }; - nAttributes=4; - }; - }; - class Item5 - { - dataType="Logic"; - class PositionInfo - { - position[]={-0.63037109,0,-2.112793}; - angles[]={0,3.1985602,0}; - }; - name="Z4"; - id=632; - type="ModuleCurator_F"; - class CustomAttributes - { - class Attribute0 - { - property="ModuleCurator_F_Owner"; - expression="_this setVariable ['Owner',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value="#AdminLogged"; - }; - }; - }; - class Attribute1 - { - property="ModuleCurator_F_Forced"; - expression="_this setVariable ['Forced',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=0; - }; - }; - }; - class Attribute2 - { - property="ModuleCurator_F_Name"; - expression="_this setVariable ['Name',_value,true];"; - class Value - { - class data - { - singleType="STRING"; - value=""; - }; - }; - }; - class Attribute3 - { - property="ModuleCurator_F_Addons"; - expression="_this setVariable ['Addons',_value,true];"; - class Value - { - class data - { - singleType="SCALAR"; - value=3; - }; - }; - }; - nAttributes=4; - }; - }; - class Item6 - { - dataType="Logic"; - class PositionInfo - { - position[]={3.5541992,0,1.4487305}; - }; - id=633; - type="ModuleRespawnPositionWest_F"; - }; - class Item7 - { - dataType="Comment"; - class PositionInfo - { - position[]={1.7568359,0.024414063,-0.26220703}; - }; - title="Mission Controllers & Zeus (Tooltip)"; - description="Do NOT delete things from this composition. All of these tools are vital for missions"; - id=634; - atlOffset=0.024414063; - }; - }; - id=623; - atlOffset=0.012207031; - }; -}; -class connections -{ - class LinkIDProvider - { - nextID=5; - }; - class Links - { - items=5; - class Item0 - { - linkID=0; - item0=628; - item1=633; - class CustomData - { - type="Sync"; - }; - }; - class Item1 - { - linkID=1; - item0=629; - item1=628; - class CustomData - { - type="Sync"; - }; - }; - class Item2 - { - linkID=2; - item0=630; - item1=628; - class CustomData - { - type="Sync"; - }; - }; - class Item3 - { - linkID=3; - item0=631; - item1=628; - class CustomData - { - type="Sync"; - }; - }; - class Item4 - { - linkID=4; - item0=632; - item1=628; - class CustomData - { - type="Sync"; - }; - }; - }; -}; +version=54; +center[]={5666.9292,5,7236.9761}; +class items +{ + items=1; + class Item0 + { + dataType="Layer"; + name="S3_Mission_Controllers"; + class Entities + { + items=8; + class Item0 + { + dataType="Group"; + side="West"; + class Entities + { + items=3; + class Item0 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.0249023,0.0014390945,1.6967773}; + angles[]={-0,4.6973796,0}; + }; + side="West"; + flags=6; + class Attributes + { + init="this setGroupid [""ZEUS""];" \n "this setVariable [""cScripts_Player_Unit"", ""ZEUS""];"; + name="S3"; + description="Lead Mission Controller@MISSION CONTROLLERS"; + isPlayable=1; + }; + id=625; + type="Cav_B_A_JFO_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + class Attribute4 + { + property="enableStamina"; + expression="_this enablestamina _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=5; + }; + }; + class Item1 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.1118164,0.0014390945,0.35351563}; + angles[]={-0,4.6973796,0}; + }; + side="West"; + flags=4; + class Attributes + { + init="this setGroupid [""ZEUS""];" \n "this setVariable [""cScripts_Player_Unit"", ""ZEUS""];"; + name="S3_1"; + description="Assistant Mission Controller@MISSION CONTROLLERS"; + isPlayable=1; + }; + id=626; + type="Cav_B_A_JFO_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + class Attribute4 + { + property="enableStamina"; + expression="_this enablestamina _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=5; + }; + }; + class Item2 + { + dataType="Object"; + class PositionInfo + { + position[]={-2.1625977,0.0014390945,-0.80810547}; + angles[]={-0,4.6973796,0}; + }; + side="West"; + flags=4; + class Attributes + { + init="this setGroupid [""ZEUS""];" \n "this setVariable [""cScripts_Player_Unit"", ""ZEUS""];"; + name="S3_2"; + description="Assistant Mission Controller@MISSION CONTROLLERS"; + isPlayable=1; + }; + id=627; + type="Cav_B_A_JFO_F"; + class CustomAttributes + { + class Attribute0 + { + property="acex_headless_blacklist"; + expression="_this setVariable [""acex_headless_blacklist"", _value, true]"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute1 + { + property="allowDamage"; + expression="_this allowdamage _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + class Attribute2 + { + property="speaker"; + expression="_this setspeaker _value;"; + class Value + { + class data + { + singleType="STRING"; + value="Male05ENG"; + }; + }; + }; + class Attribute3 + { + property="pitch"; + expression="_this setpitch _value;"; + class Value + { + class data + { + singleType="SCALAR"; + value=0.98000002; + }; + }; + }; + class Attribute4 + { + property="enableStamina"; + expression="_this enablestamina _value;"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=5; + }; + }; + }; + class Attributes + { + }; + id=624; + }; + class Item1 + { + dataType="Logic"; + class PositionInfo + { + position[]={3.559082,0,-3.4165039}; + }; + id=628; + type="ModuleCuratorAddEditableObjects"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCuratorAddEditableObjects_Curator"; + expression="_this setVariable ['Curator',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="Z1,Z2,Z3,Z4"; + }; + }; + }; + class Attribute1 + { + property="ModuleCuratorAddEditableObjects_AddCrew"; + expression="_this setVariable ['AddCrew',_value,true];"; + class Value + { + class data + { + singleType="BOOL"; + value=0; + }; + }; + }; + nAttributes=2; + }; + }; + class Item2 + { + dataType="Logic"; + class PositionInfo + { + position[]={-0.41552734,0,1.921875}; + angles[]={0,3.1985602,0}; + }; + name="Z1"; + id=629; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="S3"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + nAttributes=4; + }; + }; + class Item3 + { + dataType="Logic"; + class PositionInfo + { + position[]={-0.51318359,0,0.50830078}; + angles[]={0,3.1985602,0}; + }; + name="Z2"; + id=630; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="S3_1"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + nAttributes=4; + }; + }; + class Item4 + { + dataType="Logic"; + class PositionInfo + { + position[]={-0.62744141,0,-0.77832031}; + angles[]={0,3.1985602,0}; + }; + name="Z3"; + id=631; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="S3_2"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + nAttributes=4; + }; + }; + class Item5 + { + dataType="Logic"; + class PositionInfo + { + position[]={-0.63037109,0,-2.112793}; + angles[]={0,3.1985602,0}; + }; + name="Z4"; + id=632; + type="ModuleCurator_F"; + class CustomAttributes + { + class Attribute0 + { + property="ModuleCurator_F_Owner"; + expression="_this setVariable ['Owner',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value="#AdminLogged"; + }; + }; + }; + class Attribute1 + { + property="ModuleCurator_F_Forced"; + expression="_this setVariable ['Forced',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=0; + }; + }; + }; + class Attribute2 + { + property="ModuleCurator_F_Name"; + expression="_this setVariable ['Name',_value,true];"; + class Value + { + class data + { + singleType="STRING"; + value=""; + }; + }; + }; + class Attribute3 + { + property="ModuleCurator_F_Addons"; + expression="_this setVariable ['Addons',_value,true];"; + class Value + { + class data + { + singleType="SCALAR"; + value=3; + }; + }; + }; + nAttributes=4; + }; + }; + class Item6 + { + dataType="Logic"; + class PositionInfo + { + position[]={3.5541992,0,1.4487305}; + }; + id=633; + type="ModuleRespawnPositionWest_F"; + }; + class Item7 + { + dataType="Comment"; + class PositionInfo + { + position[]={1.7568359,0.024414063,-0.26220703}; + }; + title="Mission Controllers & Zeus (Tooltip)"; + description="Do NOT delete things from this composition. All of these tools are vital for missions"; + id=634; + atlOffset=0.024414063; + }; + }; + id=623; + atlOffset=0.012207031; + }; +}; +class connections +{ + class LinkIDProvider + { + nextID=5; + }; + class Links + { + items=5; + class Item0 + { + linkID=0; + item0=628; + item1=633; + class CustomData + { + type="Sync"; + }; + }; + class Item1 + { + linkID=1; + item0=629; + item1=628; + class CustomData + { + type="Sync"; + }; + }; + class Item2 + { + linkID=2; + item0=630; + item1=628; + class CustomData + { + type="Sync"; + }; + }; + class Item3 + { + linkID=3; + item0=631; + item1=628; + class CustomData + { + type="Sync"; + }; + }; + class Item4 + { + linkID=4; + item0=632; + item1=628; + class CustomData + { + type="Sync"; + }; + }; + }; +}; diff --git a/Compositions/Cav_S3_Mission_Controller/header.sqe b/Compositions/8.Cav_S3_Mission_Controller/header.sqe similarity index 80% rename from Compositions/Cav_S3_Mission_Controller/header.sqe rename to Compositions/8.Cav_S3_Mission_Controller/header.sqe index 6b6642e01..b8e948219 100644 --- a/Compositions/Cav_S3_Mission_Controller/header.sqe +++ b/Compositions/8.Cav_S3_Mission_Controller/header.sqe @@ -1,11 +1,11 @@ -version=54; -name="S3_Mission_Controllers_vTEST"; -author="=7Cav=CPL.Zaren.T"; -category="Cav_EdSubcat_Deploy_Platoon"; -requiredAddons[]= -{ - "cav_alpha_characters", - "A3_Modules_F_Curator_Curator", - "A3_Modules_F_Curator_Respawn", - "Desert" -}; +version=54; +name="8.S3_Mission_Controllers_vDEVBUILD"; +author="=7Cav=CPL.Zaren.T"; +category="Cav_EdSubcat_Deploy_Platoon"; +requiredAddons[]= +{ + "cav_alpha_characters", + "A3_Modules_F_Curator_Curator", + "A3_Modules_F_Curator_Respawn", + "Desert" +}; diff --git a/Compositions/README.md b/Compositions/README.md index e69de29bb..950a14dc0 100644 --- a/Compositions/README.md +++ b/Compositions/README.md @@ -0,0 +1,7 @@ +Intallation: +- Go to: C:\Users\"YOURDESKTOPUSERNAME"\Documents\Arma 3 - Other Profiles\"INGAMENAME"\compositions +- Delete Old cScripts composition folders if present. +- Copy all the new folders from this ZIP file into the compositions folder. +- Start ARMA 3 or restart if you where in eden when installing the new compositions. You should now see the compositions in the compositions tab in-game. (Check the Mission maker guide or ask Seniors if you need help) + +Files are labled in order they should be placed out in the editor to get the correct slotting order. If you dont need a unit just skip it and go to the next in line. \ No newline at end of file diff --git a/Compositions/TacR_Public_Deployment/header.sqe b/Compositions/TacR_Public_Deployment/header.sqe index 319e2fb45..d457a9b21 100644 --- a/Compositions/TacR_Public_Deployment/header.sqe +++ b/Compositions/TacR_Public_Deployment/header.sqe @@ -1,5 +1,5 @@ version=54; -name="TacR_Public_Compositions_vTEST"; +name="9.TacR_Public_vDEVBUILD"; author="=7Cav=CPL.Zaren.T"; category="Cav_EdSubcat_Deploy_Platoon"; requiredAddons[]=