sreVdescription.extb].hull3\briefing\blufor.sqfUhull3\briefing\civilian.sqfUhull3\briefing\indfor.sqfUhull3\briefing\opfor.sqfUhull3\hull3.hUinitPlayerLocal.sqfb]{initServer.sqfb]xmission.sqmb]#include "hull3\hull3.h" enableDebugConsole = 1; disableChannels[]={2,4,6}; onLoadName = "Dogfight"; onLoadMission = "Made with Hull3"; author = "Cyruz"; loadScreen = "x\ark\addons\hull3\resources\hull3_logo.paa"; class Header { gameType = TDM; minPlayers = 1; maxPlayers = 32; }; respawn = 0; respawndelay = 3; respawnTemplates[] = {"Hull3_RespawnHandler"}; class Params { class Hull3_Date { title = "Moon Phase"; values[] = {0,1}; texts[] = {"New Moon", "Full Moon"}; default = 1; code = "hull3_mission_date = %1"; }; class Hull3_TimeOfDay { title = "Time of Day"; values[] = {0,1,2,3,4,5,6,7}; texts[] = {"Dawn", "Early Morning", "Morning", "Noon", "Afternoon", "Evening", "Dusk", "Night"}; default = 3; code = "hull3_mission_timeOfDay = %1"; }; class Hull3_Fog { title = "Fog"; values[] = {0,1,2}; texts[] = {"None", "Light", "Heavy"}; default = 0; code = "hull3_mission_fog = %1"; }; class Hull3_Weather { title = "Weather"; values[] = {0,1,2,3,4,5,6,7,8,9}; texts[] = {"Random", "Clear (Calm)", "Clear (Light Winds)", "Clear (Strong Winds)", "Overcast (Calm)", "Overcast (Light Winds)", "Overcast (Strong Winds)", "Rain (Light Winds)", "Rain (Strong Winds)", "Storm"}; default = 1; code = "hull3_mission_weather = %1"; }; class Hull3_SafetyTimer { title = "Safety Timer"; values[] = {9999,0}; texts[] = {"On", "Off"}; default = 9999; code = "hull3_mission_safetyTimerEnd = %1"; }; }; class CfgDebriefingSections { class acex_killTracker { title = "Acex Killed Events"; variable = "acex_killTracker_outputText"; }; }; allowProfileGlasses = 0; // BLUFOR Notes // Mission player createDiaryRecord ["Diary", ["Mission","
Take to the skies and kill the enemy "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by Cyruz "]]; // BLUFOR Notes // Situation player createDiaryRecord ["Diary", ["Situation","
*** Insert general information about the situation here.***

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

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

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

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

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

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

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

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

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

SPECIAL TASKS
*** Insert instructions for specific units here. *** "]]; // Administration player createDiaryRecord ["Diary", ["Administration","
*** Insert information on administration and logistics here. *** "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by "]]; // OPFOR Notes // Mission player createDiaryRecord ["Diary", ["Mission","
Take to the skies and kill the enemy "]]; // Credits player createDiaryRecord ["Diary", ["Credits", "
Made by Cyruz "]]; class Hull3 { isEnabled = 1; class Briefing { blufor = "hull3\briefing\blufor.sqf"; opfor = "hull3\briefing\opfor.sqf"; indfor = "hull3\briefing\indfor.sqf"; civilian = "hull3\briefing\civilian.sqf"; }; };ark_fnc_createUnitMarker = { private _mkr = createMarker [(str player), (getPos player)]; _mkr setMarkerShape "ICON"; _mkr setMarkerType "mil_triangle"; _mkr setMarkerSize [0.5,0.5]; if (side player isEqualTo west) then { _mkr setMarkerColor "ColorGUER"; } else { _mkr setMarkerColor "colorOPFOR"; }; _mkr setMarkerText (name player); [ { params ["_args", "_id"]; if (alive player) then { (str player) setMarkerPos (getPos player); (str player) setMarkerDir (getDir player); } else { _id call CBA_fnc_removePerFrameHandler; }; } ] call CBA_fnc_addPerFrameHandler; }; ark_fnc_rearm = { params ["_veh"]; _veh setAmmoOnPylon [4, 300]; }; // Add EH to set marker black player addEventHandler ["Killed", {(str player) setMarkerColor "ColorBlack"}]; player addAction ["Reload Weapons", {objectParent player call ark_fnc_rearm},nil,50,false,true,"","!(isNull objectParent player)"]; call ark_fnc_createUnitMarker;//Auto-safety off after 10 seconds [{ [nil, nil, nil, ['confirm']] call compile preprocessFileLineNumbers 'x\ark\addons\hull3\mission_host_safetytimer_stop.sqf'; }, [], 10] call CBA_fnc_waitAndExecute; ark_fnc_planeColor = { params ["_veh","_side"]; if (_side isEqualTo west) then { _veh setObjectTextureGlobal [0,"\A3\Data_F\Flags\Flag_green_CO.paa"]; _veh setObjectTextureGlobal [1,"\A3\Data_F\Flags\Flag_green_CO.paa"]; } else { _veh setObjectTextureGlobal [0,"\A3\Data_F\Flags\Flag_red_CO.paa"]; _veh setObjectTextureGlobal [1,"\A3\Data_F\Flags\Flag_red_CO.paa"]; }; }; {[_x,west] call ark_fnc_planeColor} forEach [p,p_1,p_2,p_3,p_4,p_5,p_6,p_7,p_8,p_9,p_10,p_11,p_12,p_13,p_14,p_15]; {[_x,east] call ark_fnc_planeColor} forEach [p_16,p_17,p_18,p_19,p_20,p_21,p_22,p_23,p_24,p_25,p_26,p_27,p_28,p_29,p_30,p_31];version=53; class EditorData { moveGridStep=1; angleGridStep=0.2617994; scaleGridStep=1; autoGroupingDist=10; toggles=1; class ItemIDProvider { nextID=154; }; class MarkerIDProvider { nextID=4; }; class Camera { pos[]={5914.9902,149.23207,11633.126}; dir[]={0.30096656,-0.35998803,0.88308978}; up[]={0.11613183,0.93295646,0.3407512}; aside[]={0.94654691,-2.7479837e-007,-0.32259506}; }; }; binarizationWanted=0; addons[]= { "CUP_BaseConfigs", "A3_Ui_F", "A3_Characters_F", "ace_nouniformrestrictions", "ace_parachute", "A3_Air_F_Gamma_Plane_Fighter_03", "hull3" }; class AddonsMetaData { class List { items=7; class Item0 { className="CUP_BaseConfigs"; name="CUP_BaseConfigs"; }; class Item1 { className="A3_Ui_F"; name="Arma 3 - User Interface"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item2 { className="A3_Characters_F"; name="Arma 3 Alpha - Characters and Clothing"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item3 { className="ace_nouniformrestrictions"; name="ACE3 - No Uniform Restrictions"; author="ACE-Team"; url="http://ace3mod.com/"; }; class Item4 { className="ace_parachute"; name="ACE3 - Parachute"; author="ACE-Team"; url="http://ace3mod.com/"; }; class Item5 { className="A3_Air_F_Gamma"; name="Arma 3 - Aircraft"; author="Bohemia Interactive"; url="https://www.arma3.com"; }; class Item6 { className="Hull3"; name="hull3"; author="Kami"; }; }; }; randomSeed=3271368; class ScenarioData { author="Cyruz"; }; class Mission { class Intel { briefingName="ark_tvt32_dogfight"; overviewText="Rule the skies | Slot 1:1"; timeOfChanges=28800; startWeather=0.30000001; startWind=0.1; startWaves=0.1; forecastWeather=0.30000001; forecastWind=0.1; forecastWaves=0.1; forecastLightnings=0.1; wavesForced=1; windForced=1; year=2035; month=6; day=12; hour=12; minute=0; startFogDecay=0.013; forecastFogDecay=0.013; }; class Entities { items=69; class Item0 { dataType="Marker"; position[]={8238.4268,306.73868,1661.5511}; name="OPF"; type="Faction_CUP_OPFOR"; angle=150.39142; id=0; }; class Item1 { dataType="Marker"; position[]={5846.5571,82.239998,11247.829}; name="BLU"; type="Faction_CUP_INDFOR"; angle=133.66898; id=1; atlOffset=-0.79653168; }; class Item2 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6024.7925,83.041435,11682.797}; angles[]={0,5.4977784,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayer=1; isPlayable=1; }; id=36; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=35; atlOffset=-7.6293945e-006; }; class Item3 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8340.626,296.04144,2073.033}; angles[]={0,2.6272807,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=38; type="O_Pilot_F"; }; }; class Attributes { }; id=37; }; class Item4 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6031.6006,83.041435,11688.938}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=40; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=39; atlOffset=-7.6293945e-006; }; class Item5 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6039.0098,83.041435,11696.747}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=42; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=41; atlOffset=-7.6293945e-006; }; class Item6 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6047.6025,83.041435,11704.756}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=44; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=43; atlOffset=-7.6293945e-006; }; class Item7 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6053.4585,83.041435,11711.469}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=46; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=45; atlOffset=-7.6293945e-006; }; class Item8 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6061.2993,83.041435,11719.245}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=48; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=47; atlOffset=-7.6293945e-006; }; class Item9 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6068.2397,83.041435,11726.905}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=50; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=49; atlOffset=-7.6293945e-006; }; class Item10 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6075.4688,83.041435,11733.914}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=52; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=51; atlOffset=-7.6293945e-006; }; class Item11 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6042.0845,83.041435,11666.48}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=54; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=53; atlOffset=-7.6293945e-006; }; class Item12 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6049.6768,83.041435,11673.28}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=56; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=55; atlOffset=-7.6293945e-006; }; class Item13 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6055.4341,83.041435,11679.96}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=58; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=57; atlOffset=-7.6293945e-006; }; class Item14 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6062.4468,83.041435,11686.57}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=60; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=59; atlOffset=-7.6293945e-006; }; class Item15 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6069.9878,83.041435,11694.377}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=62; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=61; atlOffset=-7.6293945e-006; }; class Item16 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6077.8101,83.041435,11702.258}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=64; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=63; atlOffset=-7.6293945e-006; }; class Item17 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6084.436,83.041435,11708.463}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=66; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=65; atlOffset=-7.6293945e-006; }; class Item18 { dataType="Group"; side="West"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={6092.8188,83.041435,11716.69}; angles[]={0,5.4977813,0}; }; side="West"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""BLU_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=68; type="B_Pilot_F"; atlOffset=-7.6293945e-006; }; }; class Attributes { }; id=67; atlOffset=-7.6293945e-006; }; class Item19 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8330.5117,296.04144,2067.0061}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=70; type="O_Pilot_F"; }; }; class Attributes { }; id=69; }; class Item20 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8320.4131,296.04144,2061.7666}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=72; type="O_Pilot_F"; }; }; class Attributes { }; id=71; }; class Item21 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8310.8213,296.04144,2056.1926}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=74; type="O_Pilot_F"; }; }; class Attributes { }; id=73; }; class Item22 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8300.3379,296.04144,2050.2676}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=76; type="O_Pilot_F"; }; }; class Attributes { }; id=75; }; class Item23 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8291.4307,296.04144,2045.0457}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=78; type="O_Pilot_F"; }; }; class Attributes { }; id=77; }; class Item24 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8283.6025,296.04144,2040.4324}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=80; type="O_Pilot_F"; }; }; class Attributes { }; id=79; }; class Item25 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8274.0078,296.04144,2034.8564}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=82; type="O_Pilot_F"; }; }; class Attributes { }; id=81; }; class Item26 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8331.7705,296.04144,2084.7668}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=84; type="O_Pilot_F"; }; }; class Attributes { }; id=83; }; class Item27 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8321.6572,296.04144,2078.7417}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=86; type="O_Pilot_F"; }; }; class Attributes { }; id=85; }; class Item28 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8311.5605,296.04144,2073.5027}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=88; type="O_Pilot_F"; }; }; class Attributes { }; id=87; }; class Item29 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8301.9678,296.04144,2067.9285}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=90; type="O_Pilot_F"; }; }; class Attributes { }; id=89; }; class Item30 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8291.4824,296.04144,2062.002}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=92; type="O_Pilot_F"; }; }; class Attributes { }; id=91; }; class Item31 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8282.582,296.04144,2056.7803}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=94; type="O_Pilot_F"; }; }; class Attributes { }; id=93; }; class Item32 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8274.749,296.04144,2052.168}; angles[]={0,2.6272812,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=96; type="O_Pilot_F"; }; }; class Attributes { }; id=95; }; class Item33 { dataType="Group"; side="East"; class Entities { items=1; class Item0 { dataType="Object"; class PositionInfo { position[]={8265.1553,296.04144,2046.5913}; angles[]={0,1.9060977,0}; }; side="East"; flags=6; class Attributes { skill=0.60000002; rank="LIEUTENANT"; init=" [this, [""faction"", ""OPF_F""], [""gear"", ""P""]] call hull3_unit_fnc_init;"; description="Pilot"; isPlayable=1; }; id=98; type="O_Pilot_F"; }; }; class Attributes { }; id=97; }; class Item34 { dataType="Marker"; position[]={5914.833,184.87801,6266.5371}; name="marker_3"; markerType="ELLIPSE"; type="ellipse"; colorName="ColorGrey"; alpha=0.5534333; a=3000; b=3000; id=99; atlOffset=-4.0198669; }; class Item35 { dataType="Object"; class PositionInfo { position[]={6063.3076,85.462799,11791.647}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_1"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=115; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item36 { dataType="Object"; class PositionInfo { position[]={6032.8662,85.462799,11793.379}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_2"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=116; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item37 { dataType="Object"; class PositionInfo { position[]={6049.958,85.462799,11778.713}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_3"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=117; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item38 { dataType="Object"; class PositionInfo { position[]={6018.8179,85.462799,11779.486}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_4"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=118; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item39 { dataType="Object"; class PositionInfo { position[]={6034.8467,85.462799,11764.07}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_5"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=119; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item40 { dataType="Object"; class PositionInfo { position[]={6005.0957,85.462799,11766.156}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_6"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=120; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item41 { dataType="Object"; class PositionInfo { position[]={6021.0288,85.462799,11750.072}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_7"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=121; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item42 { dataType="Object"; class PositionInfo { position[]={5992.4155,85.462799,11753.561}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_8"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=122; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item43 { dataType="Object"; class PositionInfo { position[]={6008.4907,85.462799,11737.628}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_9"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=123; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item44 { dataType="Object"; class PositionInfo { position[]={5979.0342,85.462799,11740.381}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_10"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=124; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item45 { dataType="Object"; class PositionInfo { position[]={5995.3706,85.462799,11723.746}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_11"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=125; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item46 { dataType="Object"; class PositionInfo { position[]={5966.0439,85.462799,11727.382}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_12"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=126; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item47 { dataType="Object"; class PositionInfo { position[]={5982.1572,85.462799,11710.978}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_13"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=127; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item48 { dataType="Object"; class PositionInfo { position[]={5967.8267,85.462799,11696.863}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_15"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=129; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item49 { dataType="Object"; class PositionInfo { position[]={6047.5576,85.462799,11806.372}; angles[]={-0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=130; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item50 { dataType="Object"; class PositionInfo { position[]={8358.9697,298.4628,2047.0907}; angles[]={-0,2.6125622,0}; }; side="Empty"; flags=4; class Attributes { name="p_16"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=131; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item51 { dataType="Object"; class PositionInfo { position[]={8369.6699,298.4628,2053.9631}; angles[]={-0,2.6377096,0}; }; side="Empty"; flags=4; class Attributes { name="p_17"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=132; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item52 { dataType="Object"; class PositionInfo { position[]={8379.04,298.4628,2038.0713}; angles[]={-0,2.6725762,0}; }; side="Empty"; flags=4; class Attributes { name="p_18"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=133; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item53 { dataType="Object"; class PositionInfo { position[]={8368.0078,298.4628,2031.7856}; angles[]={-0,2.6335166,0}; }; side="Empty"; flags=4; class Attributes { name="p_19"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=134; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item54 { dataType="Object"; class PositionInfo { position[]={8388.6543,298.4628,2021.5599}; angles[]={-0,2.6399662,0}; }; side="Empty"; flags=4; class Attributes { name="p_20"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=135; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item55 { dataType="Object"; class PositionInfo { position[]={8377.8594,298.4628,2011.307}; angles[]={-0,3.164753,0}; }; side="Empty"; flags=4; class Attributes { name="p_21"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=136; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item56 { dataType="Object"; class PositionInfo { position[]={8393.9033,298.4628,2000.9318}; angles[]={-0,4.1992922,0}; }; side="Empty"; flags=4; class Attributes { name="p_22"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=137; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item57 { dataType="Object"; class PositionInfo { position[]={8406.3232,298.4628,1982.0189}; angles[]={-0,4.1780834,0}; }; side="Empty"; flags=4; class Attributes { name="p_23"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=138; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item58 { dataType="Object"; class PositionInfo { position[]={8374.376,298.4628,1989.1298}; angles[]={-0,4.1649613,0}; }; side="Empty"; flags=4; class Attributes { name="p_24"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=139; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item59 { dataType="Object"; class PositionInfo { position[]={8385.5684,298.4628,1970.4358}; angles[]={-0,4.1692114,0}; }; side="Empty"; flags=4; class Attributes { name="p_25"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=140; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item60 { dataType="Object"; class PositionInfo { position[]={8355.3213,298.4628,1977.6138}; angles[]={-0,4.1471777,0}; }; side="Empty"; flags=4; class Attributes { name="p_26"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=141; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item61 { dataType="Object"; class PositionInfo { position[]={8366.502,298.4628,1959.8217}; angles[]={-0,4.2114892,0}; }; side="Empty"; flags=4; class Attributes { name="p_27"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=142; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item62 { dataType="Object"; class PositionInfo { position[]={8336.7451,298.4628,1966.1774}; angles[]={-0,4.1552629,0}; }; side="Empty"; flags=4; class Attributes { name="p_28"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=143; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item63 { dataType="Object"; class PositionInfo { position[]={8347.0391,298.4628,1948.9319}; angles[]={-0,4.1746149,0}; }; side="Empty"; flags=4; class Attributes { name="p_29"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=144; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item64 { dataType="Object"; class PositionInfo { position[]={8319.1211,298.4628,1956.2114}; angles[]={-0,4.1874046,0}; }; side="Empty"; flags=4; class Attributes { name="p_30"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=145; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item65 { dataType="Object"; class PositionInfo { position[]={8329.4668,298.4628,1939.0344}; angles[]={-0,4.2172318,0}; }; side="Empty"; flags=4; class Attributes { name="p_31"; pylons=";;;PylonWeapon_300Rnd_20mm_shells;;;;"; }; id=146; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; class Item66 { dataType="Logic"; class PositionInfo { position[]={8461.1787,296.61444,1935.7994}; angles[]={-0,0,0.049559005}; }; id=147; type="Hull3_DisableFireTeamMarkers_Module"; }; class Item67 { dataType="Logic"; class PositionInfo { position[]={8443.5537,296.07587,1935.5056}; angles[]={6.2816033,0,0.004796607}; }; id=148; type="Hull3_DisableGroupMarkers_Module"; }; class Item68 { dataType="Object"; class PositionInfo { position[]={5952.1489,85.462799,11713.41}; angles[]={0,3.9480917,0}; }; side="Empty"; flags=4; class Attributes { name="p_14"; pylons=";;;;;;;;;;"; }; id=153; type="I_Plane_Fighter_03_dynamicLoadout_F"; class CustomAttributes { class Attribute0 { property="ace_cookoff_enable"; expression="if !(_value) then {_this setVariable ['ace_cookoff_enable', _value, true];};"; class Value { class data { class type { type[]= { "BOOL" }; }; value=1; }; }; }; nAttributes=1; }; }; }; }; Ir_* (e6