From 6ae98bbf8804e9b5b82e2052cc129369281a0529 Mon Sep 17 00:00:00 2001 From: David Pierron Date: Sun, 18 Jul 2021 20:35:05 +0200 Subject: [PATCH] added spawnable aircrafts --- build-dev.cmd | 10 + build.cmd | 40 +- extract.cmd | 3 +- src/mission/mission | 2711 +++++++++++++++++++++++++- src/scripts/missionConfig.lua | 63 +- src/spawnableAircrafts/settings.lua | 2727 +++++++++++++++++++++++++++ 6 files changed, 5518 insertions(+), 36 deletions(-) create mode 100644 build-dev.cmd create mode 100644 src/spawnableAircrafts/settings.lua diff --git a/build-dev.cmd b/build-dev.cmd new file mode 100644 index 0000000..a9bf6fe --- /dev/null +++ b/build-dev.cmd @@ -0,0 +1,10 @@ +@echo off +set NOPAUSE=true +set VERBOSE_LOG_FLAG=true +rem set LUA_SCRIPTS_DEBUG_PARAMETER=-debug +set SECURITY_DISABLED_FLAG=true +set DYNAMIC_SCRIPTS_PATH="d:\dev\_VEAF\VEAF-Mission-Creation-Tools" +set DYNAMIC_LOAD_SCRIPTS=true +call build.cmd +copy build\*.miz . +pause \ No newline at end of file diff --git a/build.cmd b/build.cmd index 9216e96..715c5f5 100644 --- a/build.cmd +++ b/build.cmd @@ -89,6 +89,16 @@ set NPM_UPDATE=true :DontDefineDefaultDYNAMIC_SCRIPTS_PATH echo current value is "%DYNAMIC_SCRIPTS_PATH%" +echo ---------------------------------------- +echo DYNAMIC_LOAD_SCRIPTS if set to "true", will create a mission with all the scripts loaded dynamically by default +echo defaults to "false" +IF [%DYNAMIC_LOAD_SCRIPTS%] == [] GOTO DefineDefaultDYNAMIC_LOAD_SCRIPTS +goto DontDefineDefaultDYNAMIC_LOAD_SCRIPTS +:DefineDefaultDYNAMIC_LOAD_SCRIPTS +set DYNAMIC_LOAD_SCRIPTS=false +:DontDefineDefaultDYNAMIC_LOAD_SCRIPTS +echo current value is "%DYNAMIC_LOAD_SCRIPTS%" + echo ---------------------------------------- echo MISSION_FILE_SUFFIX1 (a string) will be appended to the mission file name to make it more unique echo defaults to empty @@ -148,7 +158,7 @@ powershell -File replace.ps1 .\build\tempscripts\veaf\veaf.lua "veaf.SecurityDis if %VERBOSE_LOG_FLAG%==false ( rem -- comment all the trace and debug code echo comment all the trace and debug code - FOR %%f IN (.\build\tempscripts\veaf\*.lua) DO powershell -File replace.ps1 %%f "(^\s*)(veaf.*\.[^\(^\s]*log(Trace|Debug|Marker))" "$1--$2" >nul 2>&1 + FOR %%f IN (.\build\tempscripts\veaf\*.lua) DO powershell -File replace.ps1 %%f "(^\s*)(.*veaf\.loggers.get\(.*\):(trace|debug|marker|cleanupMarkers))" "$1--$2" >nul 2>&1 ) echo building the mission @@ -163,11 +173,39 @@ pushd %DYNAMIC_SCRIPTS_PATH%\src\scripts\veaf "%LUA%" veafMissionRadioPresetsEditor.lua %DYNAMIC_MISSION_PATH%\build\tempsrc %DYNAMIC_MISSION_PATH%\src\radio\radioSettings.lua %LUA_SCRIPTS_DEBUG_PARAMETER% popd +rem -- set the waypoints according to the settings file +if exist %DYNAMIC_MISSION_PATH%\src\waypoints\waypointsSettings.lua ( + echo set the waypoints according to the settings file + pushd %DYNAMIC_SCRIPTS_PATH%\src\scripts\veaf + "%LUA%" veafMissionFlightPlanEditor.lua %DYNAMIC_MISSION_PATH%\build\tempsrc %DYNAMIC_MISSION_PATH%\src\waypoints\waypointsSettings.lua %LUA_SCRIPTS_DEBUG_PARAMETER% + popd +) + +rem -- set the spawnable aircrafts according to the settings file +if exist %DYNAMIC_MISSION_PATH%\src\spawnableAircrafts\settings.lua ( + echo set the spawnable aircrafts according to the settings file + pushd %DYNAMIC_SCRIPTS_PATH%\src\scripts\veaf + "%LUA%" veafSpawnableAircraftsEditor.lua %DYNAMIC_MISSION_PATH%\build\tempsrc %DYNAMIC_MISSION_PATH%\src\spawnableAircrafts\settings.lua %LUA_SCRIPTS_DEBUG_PARAMETER% + popd +) + rem -- set the dynamic load variables in the dictionary echo set the dynamic load variables in the dictionary powershell -Command "$temp='VEAF_DYNAMIC_PATH = [[' + [regex]::escape('%DYNAMIC_SCRIPTS_PATH%') + ']]'; (gc .\build\tempsrc\mission) -replace 'VEAF_DYNAMIC_PATH(\s*)=(\s*)\[\[.*\]\]', $temp | sc .\build\tempsrc\mission" >nul 2>&1 powershell -Command "$temp='VEAF_DYNAMIC_MISSIONPATH = [[' + [regex]::escape('%DYNAMIC_MISSION_PATH%') + ']]'; (gc .\build\tempsrc\mission) -replace 'VEAF_DYNAMIC_MISSIONPATH(\s*)=(\s*)\[\[.*\]\]', $temp | sc .\build\tempsrc\mission" >nul 2>&1 +if %DYNAMIC_LOAD_SCRIPTS%==true ( + rem -- set the loading to dynamic in the mission file + echo set the loading to dynamic in the mission file + powershell -Command "(gc '.\build\tempsrc\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- scripts', 'return true -- scripts' | sc '.\build\tempsrc\l10n\Default\dictionary'" + powershell -Command "(gc '.\build\tempsrc\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- config', 'return true -- config' | sc '.\build\tempsrc\l10n\Default\dictionary'" +) else ( + rem -- set the loading to static in the mission file + echo set the loading to static in the mission file + powershell -Command "(gc '.\build\tempsrc\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- scripts', 'return false -- scripts' | sc '.\build\tempsrc\l10n\Default\dictionary'" + powershell -Command "(gc '.\build\tempsrc\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- config', 'return false -- config' | sc '.\build\tempsrc\l10n\Default\dictionary'" +) + rem -- disable the C130 module requirement powershell -File replace.ps1 .\build\tempsrc\mission "\[\"Hercules\"\] = \"Hercules\"," " " >nul 2>&1 diff --git a/extract.cmd b/extract.cmd index c24dd65..13365bb 100644 --- a/extract.cmd +++ b/extract.cmd @@ -52,7 +52,8 @@ set MISSION_PATH=%cd%\src\mission rem -- set the loading to static in the mission file echo set the loading to static in the mission file -powershell -Command "(gc '%MISSION_PATH%\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- set to true for dynamic loading', 'return false -- set to true for dynamic loading' | sc '%MISSION_PATH%\l10n\Default\dictionary'" +powershell -Command "(gc '%MISSION_PATH%\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- scripts', 'return false -- scripts' | sc '%MISSION_PATH%\l10n\Default\dictionary'" +powershell -Command "(gc '%MISSION_PATH%\l10n\Default\dictionary') -replace 'return(\s*[^\s]+\s*)-- config', 'return false -- config' | sc '%MISSION_PATH%\l10n\Default\dictionary'" rem removing unwanted elements echo removing unwanted elements diff --git a/src/mission/mission b/src/mission/mission index be3b108..f6a3c9d 100644 --- a/src/mission/mission +++ b/src/mission/mission @@ -48853,6 +48853,2710 @@ mission = { ["x"] = -66267.650782986, ["y"] = 213725.24679657, }, -- end of [15] + [16] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1272, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig21-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig21-Fox1", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 31684.704947593, + ["y"] = -8458.7521921596, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 174, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Bare Metal", + ["name"] = "Pilot #130", + ["onboard_num"] = "1043", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{R-3R}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{R-3R}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{R-60 2R}", + }, -- end of [5] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 2841, + ["x"] = 31684.704947593, + ["y"] = -8458.7521921596, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 175, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Bare Metal", + ["name"] = "Pilot #131", + ["onboard_num"] = "1060", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{R-3R}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{R-3R}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{R-60 2R}", + }, -- end of [5] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 2842, + ["x"] = 31644.704947593, + ["y"] = -8418.7521921596, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 31684.704947593, + ["y"] = -8458.7521921596, + }, -- end of [16] + [17] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1524, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su33-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su33-Fox1", + ["speed"] = 169.58333333333, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 25206.641180688, + ["y"] = -8412.4803081103, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 128, + ["hardpoint_racks"] = true, + ["heading"] = -1.0998362338761, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "Pilot #008", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [7] + [8] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [8] + [9] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [9] + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [10] + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [11] + [12] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, -- end of [12] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 1.0998362338761, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3351, + ["x"] = 25206.641180688, + ["y"] = -8412.4803081103, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 129, + ["hardpoint_racks"] = true, + ["heading"] = -1.0998362338761, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "Pilot #020", + ["onboard_num"] = "1060", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [7] + [8] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [8] + [9] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [9] + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [10] + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [11] + [12] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, -- end of [12] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 1.0998362338761, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3352, + ["x"] = 25166.641180688, + ["y"] = -8372.4803081103, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 25206.641180688, + ["y"] = -8412.4803081103, + }, -- end of [17] + [18] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1526, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su33-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su33-Fox2", + ["speed"] = 169.58333333333, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 22152.696833432, + ["y"] = -8273.6646559623, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 128, + ["hardpoint_racks"] = true, + ["heading"] = -1.0998362338761, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "Pilot #096", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [3] + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [10] + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [11] + [12] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [12] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 1.0998362338761, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3356, + ["x"] = 22152.696833432, + ["y"] = -8273.6646559623, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 121, + ["heading"] = 0, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "veafSpawn-Su33-Fox2-1", + ["onboard_num"] = "1159", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [3] + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [10] + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [11] + [12] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [12] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3358, + ["x"] = 22112.696833432, + ["y"] = -8233.6646559623, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 22152.696833432, + ["y"] = -8273.6646559623, + }, -- end of [18] + [19] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1530, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29S-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29S-Fox1", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 8132.3159664879, + ["y"] = -7903.4895835678, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 182, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #123", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3366, + ["x"] = 8132.3159664879, + ["y"] = -7903.4895835678, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 183, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29S-Fox1-1", + ["onboard_num"] = "1161", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3368, + ["x"] = 8092.3159664879, + ["y"] = -7863.4895835678, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 8132.3159664879, + ["y"] = -7903.4895835678, + }, -- end of [19] + [20] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1538, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig31-Fox3", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig31-Fox3", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -12359.10944732, + ["y"] = -7450.9250942353, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 193, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "Pilot #213", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3391, + ["x"] = -12359.10944732, + ["y"] = -7450.9250942353, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 195, + ["heading"] = 0, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "veafSpawn-Mig31-Fox3-1", + ["onboard_num"] = "1170", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3393, + ["x"] = -12399.10944732, + ["y"] = -7410.9250942353, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -12359.10944732, + ["y"] = -7450.9250942353, + }, -- end of [20] + [21] = { + ["communication"] = false, + ["frequency"] = 243, + ["groupId"] = 1539, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-JF17-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "JF17-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + [2] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "WrappedAction", + ["number"] = 2, + ["params"] = { + ["action"] = { + ["id"] = "EPLRS", + ["params"] = { + ["groupId"] = 39, + ["value"] = true, + }, -- end of ["params"] + }, -- end of ["action"] + }, -- end of ["params"] + }, -- end of [2] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -15752.299691857, + ["y"] = -7272.2841548691, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["AddPropAircraft"] = { + }, -- end of ["AddPropAircraft"] + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 196, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "Pilot #215", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [1] + [4] = { + ["CLSID"] = "DIS_TANK800", + }, -- end of [4] + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3394, + ["x"] = -15752.299691857, + ["y"] = -7272.2841548691, + }, -- end of [1] + [2] = { + ["AddPropAircraft"] = { + }, -- end of ["AddPropAircraft"] + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 197, + ["heading"] = 0, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "veafSpawn-JF17-Fox2-1", + ["onboard_num"] = "1171", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [1] + [4] = { + ["CLSID"] = "DIS_TANK800", + }, -- end of [4] + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3396, + ["x"] = -15792.299691857, + ["y"] = -7232.2841548691, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -15752.299691857, + ["y"] = -7272.2841548691, + }, -- end of [21] + [22] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1531, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29S-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29S-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 5402.2748075779, + ["y"] = -7857.2176995184, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 182, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #124", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3370, + ["x"] = 5402.2748075779, + ["y"] = -7857.2176995184, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 185, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29S-Fox2-1", + ["onboard_num"] = "1163", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3372, + ["x"] = 5362.2748075779, + ["y"] = -7817.2176995184, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 5402.2748075779, + ["y"] = -7857.2176995184, + }, -- end of [22] + [23] = { + ["communication"] = false, + ["frequency"] = 243, + ["groupId"] = 1540, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-JF17-Fox3", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "JF17-Fox3", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + [2] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "WrappedAction", + ["number"] = 2, + ["params"] = { + ["action"] = { + ["id"] = "EPLRS", + ["params"] = { + ["groupId"] = 45, + ["value"] = true, + }, -- end of ["params"] + }, -- end of ["action"] + }, -- end of ["params"] + }, -- end of [2] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -19069.923022895, + ["y"] = -7272.2841548691, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["AddPropAircraft"] = { + }, -- end of ["AddPropAircraft"] + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 196, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "Pilot #216", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [1] + [2] = { + ["CLSID"] = "DIS_SD-10_DUAL_L", + }, -- end of [2] + [3] = { + ["CLSID"] = "DIS_TANK1100", + }, -- end of [3] + [4] = { + ["CLSID"] = "DIS_TANK800", + }, -- end of [4] + [5] = { + ["CLSID"] = "DIS_TANK1100", + }, -- end of [5] + [6] = { + ["CLSID"] = "DIS_SD-10_DUAL_R", + }, -- end of [6] + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3397, + ["x"] = -19069.923022895, + ["y"] = -7272.2841548691, + }, -- end of [1] + [2] = { + ["AddPropAircraft"] = { + }, -- end of ["AddPropAircraft"] + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 198, + ["heading"] = 0, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "veafSpawn-JF17-Fox3-1", + ["onboard_num"] = "1172", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [1] + [2] = { + ["CLSID"] = "DIS_SD-10_DUAL_L", + }, -- end of [2] + [3] = { + ["CLSID"] = "DIS_TANK1100", + }, -- end of [3] + [4] = { + ["CLSID"] = "DIS_TANK800", + }, -- end of [4] + [5] = { + ["CLSID"] = "DIS_TANK1100", + }, -- end of [5] + [6] = { + ["CLSID"] = "DIS_SD-10_DUAL_R", + }, -- end of [6] + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3399, + ["x"] = -19109.923022895, + ["y"] = -7232.2841548691, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -19069.923022895, + ["y"] = -7272.2841548691, + }, -- end of [23] + [24] = { + ["communication"] = false, + ["frequency"] = 127.5, + ["groupId"] = 1527, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su27-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su27-Fox2", + ["speed"] = 253.75313988205, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 15952.264370823, + ["y"] = -8134.8490038144, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 152, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "Pilot #097", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [3] + [8] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [8] + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [9] + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, -- end of [10] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 3359, + ["x"] = 15952.264370823, + ["y"] = -8134.8490038144, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 122, + ["heading"] = 0, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "veafSpawn-Su27-Fox2-1", + ["onboard_num"] = "1160", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [3] + [8] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [8] + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [9] + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, -- end of [10] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 3361, + ["x"] = 15912.264370823, + ["y"] = -8094.8490038144, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 15952.264370823, + ["y"] = -8134.8490038144, + }, -- end of [24] + [25] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1532, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29S-Fox3", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29S-Fox3", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 2348.3304603227, + ["y"] = -7857.2176995184, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 182, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #133", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3373, + ["x"] = 2348.3304603227, + ["y"] = -7857.2176995184, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 186, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29S-Fox3-1", + ["onboard_num"] = "1164", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3375, + ["x"] = 2308.3304603227, + ["y"] = -7817.2176995184, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 2348.3304603227, + ["y"] = -7857.2176995184, + }, -- end of [25] + [26] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1533, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig23S-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig23-Fox1", + ["speed"] = 210.69444444444, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -316.13151061829, + ["y"] = -7847.0756842584, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 187, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #142", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3376, + ["x"] = -316.13151061829, + ["y"] = -7847.0756842584, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 188, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig23S-Fox1-1", + ["onboard_num"] = "1165", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3378, + ["x"] = -356.13151061829, + ["y"] = -7807.0756842584, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -316.13151061829, + ["y"] = -7847.0756842584, + }, -- end of [26] + [27] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1525, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig21-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig21-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 28445.67306414, + ["y"] = -8458.7521921596, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 174, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Bare Metal", + ["name"] = "Pilot #090", + ["onboard_num"] = "1043", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, -- end of [1] + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, -- end of [3] + [5] = { + ["CLSID"] = "{R-60 2R}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{ASO-2}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 3353, + ["x"] = 28445.67306414, + ["y"] = -8458.7521921596, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 112, + ["heading"] = 0, + ["livery_id"] = "Bare Metal", + ["name"] = "veafSpawn-Mig21-Fox2-1", + ["onboard_num"] = "1158", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, -- end of [1] + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, -- end of [3] + [5] = { + ["CLSID"] = "{R-60 2R}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{ASO-2}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 3355, + ["x"] = 28405.67306414, + ["y"] = -8418.7521921596, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 28445.67306414, + ["y"] = -8458.7521921596, + }, -- end of [27] + [28] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1528, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29A-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29A-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 10769.813357299, + ["y"] = -7903.4895835678, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 131, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #105", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3362, + ["x"] = 10769.813357299, + ["y"] = -7903.4895835678, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 173, + ["hardpoint_racks"] = true, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Su27-Fox2-1-1", + ["onboard_num"] = "1160", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3363, + ["x"] = 10729.813357299, + ["y"] = -7863.4895835678, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 10769.813357299, + ["y"] = -7903.4895835678, + }, -- end of [28] + [29] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1534, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig23S-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig23-Fox2", + ["speed"] = 210.69444444444, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -2811.8802277638, + ["y"] = -7767.8455662538, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 187, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #153", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3379, + ["x"] = -2811.8802277638, + ["y"] = -7767.8455662538, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 189, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig23S-Fox2-1", + ["onboard_num"] = "1166", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3381, + ["x"] = -2851.8802277638, + ["y"] = -7727.8455662538, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -2811.8802277638, + ["y"] = -7767.8455662538, + }, -- end of [29] + [30] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1535, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig25-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig25-Fox1", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -5069.9385908954, + ["y"] = -7609.3853302445, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 190, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #164", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [4] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3382, + ["x"] = -5069.9385908954, + ["y"] = -7609.3853302445, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 191, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig25-Fox1-1", + ["onboard_num"] = "1167", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, -- end of [4] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3384, + ["x"] = -5109.9385908954, + ["y"] = -7569.3853302445, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -5069.9385908954, + ["y"] = -7609.3853302445, + }, -- end of [30] + [31] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1529, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29A-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29A-Fox1", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 13499.854516209, + ["y"] = -8042.3052357157, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 131, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #106", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3364, + ["x"] = 13499.854516209, + ["y"] = -8042.3052357157, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 184, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29A-Fox1-1", + ["onboard_num"] = "1162", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [7] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3369, + ["x"] = 13459.854516209, + ["y"] = -8002.3052357157, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 13499.854516209, + ["y"] = -8042.3052357157, + }, -- end of [31] + [32] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1536, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig25-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig25-Fox2", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -7209.1517770201, + ["y"] = -7649.0003892469, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 190, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #211", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, -- end of [4] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3385, + ["x"] = -7209.1517770201, + ["y"] = -7649.0003892469, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 192, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig25-Fox2-1", + ["onboard_num"] = "1168", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, -- end of [4] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3387, + ["x"] = -7249.1517770201, + ["y"] = -7609.0003892469, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -7209.1517770201, + ["y"] = -7649.0003892469, + }, -- end of [32] + [33] = { + ["communication"] = false, + ["frequency"] = 127.5, + ["groupId"] = 1186, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su27-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su27-Fox1", + ["speed"] = 253.75313988205, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = 18867.39306593, + ["y"] = -8227.392771913, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 152, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "Pilot #283", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [7] + [8] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [8] + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [9] + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, -- end of [10] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 2627, + ["x"] = 18867.39306593, + ["y"] = -8227.392771913, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 151, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "Pilot #284", + ["onboard_num"] = "1060", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, -- end of [1] + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [2] + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [3] + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [4] + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [5] + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [6] + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, -- end of [7] + [8] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, -- end of [8] + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, -- end of [9] + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, -- end of [10] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 2628, + ["x"] = 18827.39306593, + ["y"] = -8187.392771913, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = 18867.39306593, + ["y"] = -8227.392771913, + }, -- end of [33] + [34] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1537, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig31-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig31-Fox2", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, -- end of ["targetTypes"] + }, -- end of ["params"] + }, -- end of [1] + }, -- end of ["tasks"] + }, -- end of ["params"] + }, -- end of ["task"] + ["type"] = "Turning Point", + ["x"] = -9744.5155531678, + ["y"] = -7490.5401532376, + }, -- end of [1] + }, -- end of ["points"] + ["routeRelativeTOT"] = true, + }, -- end of ["route"] + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, -- end of ["tasks"] + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 193, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "Pilot #212", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, -- end of [1] + [6] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3388, + ["x"] = -9744.5155531678, + ["y"] = -7490.5401532376, + }, -- end of [1] + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 194, + ["hardpoint_racks"] = true, + ["heading"] = 0, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "veafSpawn-Mig31-Fox2-1", + ["onboard_num"] = "1169", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, -- end of [1] + [6] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, -- end of [6] + }, -- end of ["pylons"] + }, -- end of ["payload"] + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3390, + ["x"] = -9784.5155531678, + ["y"] = -7450.5401532376, + }, -- end of [2] + }, -- end of ["units"] + ["x"] = -9744.5155531678, + ["y"] = -7490.5401532376, + }, -- end of [34] }, -- end of ["group"] }, -- end of ["plane"] ["ship"] = { @@ -71633,7 +74337,6 @@ mission = { ["pictureFileNameR"] = { }, -- end of ["pictureFileNameR"] ["requiredModules"] = { - ["T-45"] = "T-45", }, -- end of ["requiredModules"] ["result"] = { ["blue"] = { @@ -71667,7 +74370,7 @@ mission = { ["theatre"] = "Syria", ["trig"] = { ["actions"] = { - [1] = "a_do_script(\"VEAF_DYNAMIC_PATH = [[D:\\\\dev\\\\_VEAF\\\\VEAF-Open-Training-Mission-Syria\\\\node_modules\\\\veaf-mission-creation-tools\\\\]]\");a_do_script(\"VEAF_DYNAMIC_MISSIONPATH = [[D:\\\\dev\\\\_VEAF\\\\VEAF-Open-Training-Mission-Syria\\\\]]\");", + [1] = "a_do_script(\"VEAF_DYNAMIC_PATH = [[d:\\dev\\_VEAF\\VEAF-Mission-Creation-Tools]]\");", [2] = "a_do_script(\"env.info(\\\"DYNAMIC LOADING\\\")\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/mist.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/DCS-SimpleTextToSpeech.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/CTLD.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/WeatherMark.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/skynet-iads-compiled.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/Hercules_Cargo.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/community/HoundElint.lua\\\"))()\");a_do_script(\"assert(loadfile(VEAF_DYNAMIC_PATH .. \\\"/src/scripts/VeafDynamicLoader.lua\\\"))()\");", [3] = "a_do_script(\"env.info(\\\"STATIC LOADING\\\")\");a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10202\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10204\"));a_do_script_file(getValueResourceByKey(\"ResKey_Action_1916\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10205\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10206\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10207\"));a_do_script_file(getValueResourceByKey(\"ResKey_Action_1918\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10208\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10209\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10210\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10211\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10212\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10213\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10214\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10215\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10216\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10217\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10218\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10219\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10220\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10221\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10222\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10223\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10224\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10225\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10226\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10227\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10228\"));a_do_script_file(getValueResourceByKey(\"DictKey_ActionText_10229\"));a_do_script_file(getValueResourceByKey(\"ResKey_Action_1919\"));", [4] = "a_do_script(\"assert(loadfile(VEAF_DYNAMIC_MISSIONPATH .. \\\"/src/scripts/missionConfig.lua\\\"))()\");", @@ -71958,11 +74661,11 @@ mission = { ["actions"] = { [1] = { ["predicate"] = "a_do_script", - ["text"] = "VEAF_DYNAMIC_PATH = [[D:\\dev\\_VEAF\\VEAF-Open-Training-Mission-Syria\\node_modules\\veaf-mission-creation-tools\\]]", + ["text"] = "VEAF_DYNAMIC_PATH = [[d:\\dev\\_VEAF\\VEAF-Mission-Creation-Tools]]", }, -- end of [1] [2] = { ["predicate"] = "a_do_script", - ["text"] = "VEAF_DYNAMIC_MISSIONPATH = [[D:\\dev\\_VEAF\\VEAF-Open-Training-Mission-Syria\\]]", + ["text"] = "VEAF_DYNAMIC_MISSIONPATH = [[d:\\dev\\_VEAF\\VEAF-Open-Training-Mission-Syria\\]]", }, -- end of [2] }, -- end of ["actions"] ["colorItem"] = "0x00ffffff", diff --git a/src/scripts/missionConfig.lua b/src/scripts/missionConfig.lua index eb3ec97..9a0b3b7 100644 --- a/src/scripts/missionConfig.lua +++ b/src/scripts/missionConfig.lua @@ -22,6 +22,7 @@ if veaf then :setRadius(30000) :setCoalition(coalition.side.RED) :addEnnemyCoalition(coalition.side.BLUE) + :setReactOnHelicopters() :start() VeafQRA.new() @@ -30,6 +31,7 @@ if veaf then :setRadius(30000) :setCoalition(coalition.side.RED) :addEnnemyCoalition(coalition.side.BLUE) + :setReactOnHelicopters() :start() end @@ -37,7 +39,7 @@ end -- initialize all the scripts ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafRadio then - veaf.logInfo("init - veafRadio") + veaf.loggers.get(veaf.Id):info("init - veafRadio") veafRadio.initialize(true) if veafBeacons then @@ -46,19 +48,19 @@ if veafRadio then end end if veafSpawn then - veaf.logInfo("init - veafSpawn") + veaf.loggers.get(veaf.Id):info("init - veafSpawn") veafSpawn.initialize() end if veafGrass then - veaf.logInfo("init - veafGrass") + veaf.loggers.get(veaf.Id):info("init - veafGrass") veafGrass.initialize() end if veafCasMission then - veaf.logInfo("init - veafCasMission") + veaf.loggers.get(veaf.Id):info("init - veafCasMission") veafCasMission.initialize() end if veafTransportMission then - veaf.logInfo("init - veafTransportMission") + veaf.loggers.get(veaf.Id):info("init - veafTransportMission") veafTransportMission.initialize() end @@ -71,7 +73,7 @@ veaf.DEFAULT_GROUND_SPEED_KPH = 25 -- initialize SHORTCUTS ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafShortcuts then - veaf.logInfo("init - veafShortcuts") + veaf.loggers.get(veaf.Id):info("init - veafShortcuts") veafShortcuts.initialize() -- you can add all the shortcuts you want here. Shortcuts can be any VEAF command, as entered in a map marker. @@ -92,7 +94,7 @@ end ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafAssets then - veafAssets.logInfo("Loading configuration") + veaf.loggers.get(veaf.Id):info("Loading configuration") veafAssets.Assets = { -- list the assets in the mission below {sort=1, name="A1-Magic", description="Magic (E-2D)", information="U282.20 (15)", linked="A1-Magic-escort"}, @@ -114,7 +116,7 @@ if veafAssets then {sort=13, name="P1-Petrolsky", description="900 (IL-78M, RED)", information="U267", linked="P1-Petrolsky-escort"}, } - veaf.logInfo("init - veafAssets") + veaf.loggers.get(veaf.Id):info("init - veafAssets") veafAssets.initialize() end @@ -122,9 +124,9 @@ end -- configure MOVE ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafMove then - veafMove.logInfo("Setting move tanker radio menus") + veaf.loggers.get(veaf.Id):info("Setting move tanker radio menus") -- keeping the veafMove.Tankers table empty will force veafMove.initialize() to browse the units, and find the tankers - veaf.logInfo("init - veafMove") + veaf.loggers.get(veaf.Id):info("init - veafMove") veafMove.initialize() end @@ -133,7 +135,7 @@ end ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafCombatMission then - veafCombatMission.logInfo("Loading configuration") + veaf.loggers.get(veaf.Id):info("Loading configuration") -- veafCombatMission.addCapMission("CAP-DEF-Kuznetsov-Easy", "CAP over Kuznetzov", "Kill the fighters defending the russian fleet.", true, true) veafCombatMission.addCapMission("CAP-Aleppo-Mig21-Fox1", "CAP from Aleppo over Hatay Fox1", "Kill all the ennemy fighters.", true, true) @@ -188,7 +190,7 @@ Don't let them be destroyed by the enemy !]]) :initialize() ) - veaf.logInfo("init - veafCombatMission") + veaf.loggers.get(veaf.Id):info("init - veafCombatMission") veafCombatMission.initialize() end @@ -196,7 +198,7 @@ end -- configure COMBAT ZONE ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafCombatZone then - veafCombatZone.logInfo("Loading configuration") + veaf.loggers.get(veaf.Id):info("Loading configuration") veafCombatZone.AddZone( VeafCombatZone.new() @@ -248,7 +250,7 @@ Les photos prises par les Mirages F1 de la ER 2/33 montre quelques ZU-23, mais i ) - veaf.logInfo("init - veafCombatZone") + veaf.loggers.get(veaf.Id):info("init - veafCombatZone") veafCombatZone.initialize() end @@ -257,7 +259,7 @@ end -- configure WW2 settings based on loaded theatre ------------------------------------------------------------------------------------------------------------------------------------------------------------- local theatre = string.lower(env.mission.theatre) -veafNamedPoints.logInfo(string.format("theatre is %s", theatre)) +veaf.loggers.get(veaf.Id):info(string.format("theatre is %s", theatre)) veaf.config.ww2 = false if theatre == "thechannel" then veaf.config.ww2 = true @@ -324,9 +326,9 @@ if veafNamedPoints then {name="RANGE KhalKhalah",point=coord.LLtoLO("33.036180", "37.196608")}, } - veafNamedPoints.logInfo("Loading configuration") + veaf.loggers.get(veaf.Id):info("Loading configuration") - veafNamedPoints.logInfo("init - veafNamedPoints") + veaf.loggers.get(veaf.Id):info("init - veafNamedPoints") veafNamedPoints.initialize() if theatre == "syria" then @@ -337,8 +339,10 @@ if veafNamedPoints then veafNamedPoints.addAllPersianGulfCities() elseif theatre == "thechannel" then veafNamedPoints.addAllTheChannelCities() + elseif theatre == "marianaislands" then + veafNamedPoints.addAllMarianasIslandsCities() else - veafNamedPoints.logWarning(string.format("theatre %s is not yet supported by veafNamedPoints", theatre)) + veaf.loggers.get(veaf.Id):warn(string.format("theatre %s is not yet supported by veafNamedPoints", theatre)) end end @@ -347,8 +351,8 @@ end ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafSecurity then veafSecurity.password_L9["6ade6629f9219d87a011e7b8fbf8ef9584f2786d"] = true -- set the L9 password (the lowest possible security) - veafSecurity.logInfo("Loading configuration") - veaf.logInfo("init - veafSecurity") + veaf.loggers.get(veaf.Id):info("Loading configuration") + veaf.loggers.get(veaf.Id):info("init - veafSecurity") veafSecurity.initialize() -- force security in order to test it when dynamic loading is in place (change to TRUE) @@ -362,8 +366,7 @@ end -- configure CARRIER OPERATIONS ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafCarrierOperations then - veaf.logInfo("init - veafCarrierOperations") - -- the carriers will be automatically found + veaf.loggers.get(veaf.Id):info("init - veafCarrierOperations") veafCarrierOperations.initialize(true) end @@ -403,15 +406,15 @@ if ctld then ctld.transportPilotNames = {} for i = 1, 24 do - table.insert(ctld.transportPilotNames, "yak"..i) + table.insert(ctld.transportPilotNames, string.format("yak #%03d",i)) end for i = 1, 10 do - table.insert(ctld.transportPilotNames, "transport"..i) + table.insert(ctld.transportPilotNames, string.format("transport #%03d",i)) end for i = 1, 79 do - table.insert(ctld.transportPilotNames, "helicargo"..i) + table.insert(ctld.transportPilotNames, string.format("helicargo #%03d",i)) end -- ************** Logistics UNITS FOR CRATE SPAWNING ****************** @@ -450,7 +453,7 @@ if ctld then veafTransportMission.initializeAllLogisticInCTLD() end - veaf.logInfo("init - ctld") + veaf.loggers.get(veaf.Id):info("init - ctld") ctld.initialize() end @@ -458,7 +461,7 @@ end -- initialize the remote interface ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafRemote then - veaf.logInfo("init - veafRemote") + veaf.loggers.get(veaf.Id):info("init - veafRemote") veafRemote.initialize() end @@ -467,7 +470,7 @@ end -- initialize the interpreter ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafInterpreter then - veaf.logInfo("init - veafInterpreter") + veaf.loggers.get(veaf.Id):info("init - veafInterpreter") veafInterpreter.initialize() end @@ -475,7 +478,7 @@ end -- initialize Skynet-IADS ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafSkynet then - veaf.logInfo("init - veafSkynet") + veaf.loggers.get(veaf.Id):info("init - veafSkynet") veafSkynet.initialize( false, --includeRedInRadio=true false, --debugRed @@ -495,7 +498,7 @@ end -- initialize Hound Elint ------------------------------------------------------------------------------------------------------------------------------------------------------------- if veafHoundElint then - veaf.logInfo("init - veafHoundElint") + veaf.loggers.get(veaf.Id):info("init - veafHoundElint") veafHoundElint.initialize( "ELINT", -- prefix { -- red diff --git a/src/spawnableAircrafts/settings.lua b/src/spawnableAircrafts/settings.lua new file mode 100644 index 0000000..231105d --- /dev/null +++ b/src/spawnableAircrafts/settings.lua @@ -0,0 +1,2727 @@ +settings = +{ + ["red planes"] = + { + coalition = "red", + country = "russia", + category = "plane", + groups = { + [01] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1272, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig21-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig21-Fox1", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 31684.704947593, + ["y"] = -8458.7521921596, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 174, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Bare Metal", + ["name"] = "Pilot #130", + ["onboard_num"] = "1043", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, + [2] = { + ["CLSID"] = "{R-3R}", + }, + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, + [4] = { + ["CLSID"] = "{R-3R}", + }, + [5] = { + ["CLSID"] = "{R-60 2R}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 2841, + ["x"] = 31684.704947593, + ["y"] = -8458.7521921596, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 175, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Bare Metal", + ["name"] = "Pilot #131", + ["onboard_num"] = "1060", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, + [2] = { + ["CLSID"] = "{R-3R}", + }, + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, + [4] = { + ["CLSID"] = "{R-3R}", + }, + [5] = { + ["CLSID"] = "{R-60 2R}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 2842, + ["x"] = 31644.704947593, + ["y"] = -8418.7521921596, + }, + }, + ["x"] = 31684.704947593, + ["y"] = -8458.7521921596, + }, + [02] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1524, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su33-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su33-Fox1", + ["speed"] = 169.58333333333, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 25206.641180688, + ["y"] = -8412.4803081103, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 128, + ["hardpoint_racks"] = true, + ["heading"] = -1.0998362338761, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "Pilot #008", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [8] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [9] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [12] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, + }, + }, + ["psi"] = 1.0998362338761, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3351, + ["x"] = 25206.641180688, + ["y"] = -8412.4803081103, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 129, + ["hardpoint_racks"] = true, + ["heading"] = -1.0998362338761, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "Pilot #020", + ["onboard_num"] = "1060", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [8] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [9] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [12] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, + }, + }, + ["psi"] = 1.0998362338761, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3352, + ["x"] = 25166.641180688, + ["y"] = -8372.4803081103, + }, + }, + ["x"] = 25206.641180688, + ["y"] = -8412.4803081103, + }, + [03] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1525, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig21-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig21-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 28445.67306414, + ["y"] = -8458.7521921596, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 174, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Bare Metal", + ["name"] = "Pilot #090", + ["onboard_num"] = "1043", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, + [5] = { + ["CLSID"] = "{R-60 2R}", + }, + [6] = { + ["CLSID"] = "{ASO-2}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 3353, + ["x"] = 28445.67306414, + ["y"] = -8458.7521921596, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 112, + ["heading"] = 0, + ["livery_id"] = "Bare Metal", + ["name"] = "veafSpawn-Mig21-Fox2-1", + ["onboard_num"] = "1158", + ["payload"] = { + ["ammo_type"] = 1, + ["chaff"] = 18, + ["flare"] = 40, + ["fuel"] = 2280, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{R-60 2L}", + }, + [3] = { + ["CLSID"] = "{PTB_490C_MIG21}", + }, + [5] = { + ["CLSID"] = "{R-60 2R}", + }, + [6] = { + ["CLSID"] = "{ASO-2}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-21Bis", + ["unitId"] = 3355, + ["x"] = 28405.67306414, + ["y"] = -8418.7521921596, + }, + }, + ["x"] = 28445.67306414, + ["y"] = -8458.7521921596, + }, + [04] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1526, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su33-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su33-Fox2", + ["speed"] = 169.58333333333, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 22152.696833432, + ["y"] = -8273.6646559623, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 128, + ["hardpoint_racks"] = true, + ["heading"] = -1.0998362338761, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "Pilot #096", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [12] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 1.0998362338761, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3356, + ["x"] = 22152.696833432, + ["y"] = -8273.6646559623, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 121, + ["heading"] = 0, + ["livery_id"] = "279th kiap 1st squad navy", + ["name"] = "veafSpawn-Su33-Fox2-1", + ["onboard_num"] = "1159", + ["payload"] = { + ["chaff"] = 48, + ["flare"] = 48, + ["fuel"] = 4750, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [10] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [11] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [12] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 169.58333333333, + ["type"] = "Su-33", + ["unitId"] = 3358, + ["x"] = 22112.696833432, + ["y"] = -8233.6646559623, + }, + }, + ["x"] = 22152.696833432, + ["y"] = -8273.6646559623, + }, + [05] = { + ["communication"] = false, + ["frequency"] = 127.5, + ["groupId"] = 1527, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su27-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su27-Fox2", + ["speed"] = 253.75313988205, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 15952.264370823, + ["y"] = -8134.8490038144, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 152, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "Pilot #097", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [8] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 3359, + ["x"] = 15952.264370823, + ["y"] = -8134.8490038144, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 122, + ["heading"] = 0, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "veafSpawn-Su27-Fox2-1", + ["onboard_num"] = "1160", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [8] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 3361, + ["x"] = 15912.264370823, + ["y"] = -8094.8490038144, + }, + }, + ["x"] = 15952.264370823, + ["y"] = -8134.8490038144, + }, + [06] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1528, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29A-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29A-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 10769.813357299, + ["y"] = -7903.4895835678, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 131, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #105", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3362, + ["x"] = 10769.813357299, + ["y"] = -7903.4895835678, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 173, + ["hardpoint_racks"] = true, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Su27-Fox2-1-1", + ["onboard_num"] = "1160", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3363, + ["x"] = 10729.813357299, + ["y"] = -7863.4895835678, + }, + }, + ["x"] = 10769.813357299, + ["y"] = -7903.4895835678, + }, + [07] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1529, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29A-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29A-Fox1", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 13499.854516209, + ["y"] = -8042.3052357157, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 131, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #106", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3364, + ["x"] = 13499.854516209, + ["y"] = -8042.3052357157, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 184, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29A-Fox1-1", + ["onboard_num"] = "1162", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3376", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29A", + ["unitId"] = 3369, + ["x"] = 13459.854516209, + ["y"] = -8002.3052357157, + }, + }, + ["x"] = 13499.854516209, + ["y"] = -8042.3052357157, + }, + [08] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1530, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29S-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29S-Fox1", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 8132.3159664879, + ["y"] = -7903.4895835678, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 182, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #123", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3366, + ["x"] = 8132.3159664879, + ["y"] = -7903.4895835678, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 183, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29S-Fox1-1", + ["onboard_num"] = "1161", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{9B25D316-0434-4954-868F-D51DB1A38DF0}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3368, + ["x"] = 8092.3159664879, + ["y"] = -7863.4895835678, + }, + }, + ["x"] = 8132.3159664879, + ["y"] = -7903.4895835678, + }, + [09] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1531, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29S-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29S-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 5402.2748075779, + ["y"] = -7857.2176995184, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 182, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #124", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3370, + ["x"] = 5402.2748075779, + ["y"] = -7857.2176995184, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 185, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29S-Fox2-1", + ["onboard_num"] = "1163", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [6] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3372, + ["x"] = 5362.2748075779, + ["y"] = -7817.2176995184, + }, + }, + ["x"] = 5402.2748075779, + ["y"] = -7857.2176995184, + }, + [10] = { + ["communication"] = false, + ["frequency"] = 124, + ["groupId"] = 1532, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig29S-Fox3", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig29S-Fox3", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 2348.3304603227, + ["y"] = -7857.2176995184, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 182, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "air force standard", + ["name"] = "Pilot #133", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [3] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [6] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3373, + ["x"] = 2348.3304603227, + ["y"] = -7857.2176995184, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 186, + ["heading"] = 0, + ["livery_id"] = "air force standard", + ["name"] = "veafSpawn-Mig29S-Fox3-1", + ["onboard_num"] = "1164", + ["payload"] = { + ["chaff"] = 30, + ["flare"] = 30, + ["fuel"] = "3493", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [2] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [3] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [4] = { + ["CLSID"] = "{2BEC576B-CDF5-4B7F-961F-B0FA4312B841}", + }, + [5] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [6] = { + ["CLSID"] = "{B4C01D60-A8A3-4237-BD72-CA7655BC0FE9}", + }, + [7] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "MiG-29S", + ["unitId"] = 3375, + ["x"] = 2308.3304603227, + ["y"] = -7817.2176995184, + }, + }, + ["x"] = 2348.3304603227, + ["y"] = -7857.2176995184, + }, + [11] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1533, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig23S-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig23-Fox1", + ["speed"] = 210.69444444444, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -316.13151061829, + ["y"] = -7847.0756842584, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 187, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #142", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, + [6] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3376, + ["x"] = -316.13151061829, + ["y"] = -7847.0756842584, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 188, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig23S-Fox1-1", + ["onboard_num"] = "1165", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, + [6] = { + ["CLSID"] = "{CCF898C9-5BC7-49A4-9D1E-C3ED3D5166A1}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3378, + ["x"] = -356.13151061829, + ["y"] = -7807.0756842584, + }, + }, + ["x"] = -316.13151061829, + ["y"] = -7847.0756842584, + }, + [12] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1534, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig23S-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig23-Fox2", + ["speed"] = 210.69444444444, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -2811.8802277638, + ["y"] = -7767.8455662538, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 187, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #153", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, + [6] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3379, + ["x"] = -2811.8802277638, + ["y"] = -7767.8455662538, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 189, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig23S-Fox2-1", + ["onboard_num"] = "1166", + ["payload"] = { + ["chaff"] = 60, + ["flare"] = 60, + ["fuel"] = "3800", + ["gun"] = 100, + ["pylons"] = { + [2] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, + [3] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, + [4] = { + ["CLSID"] = "{A5BAEAB7-6FAF-4236-AF72-0FD900F493F9}", + }, + [5] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, + [6] = { + ["CLSID"] = "{6980735A-44CC-4BB9-A1B5-591532F1DC69}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 210.69444444444, + ["type"] = "MiG-23MLD", + ["unitId"] = 3381, + ["x"] = -2851.8802277638, + ["y"] = -7727.8455662538, + }, + }, + ["x"] = -2811.8802277638, + ["y"] = -7767.8455662538, + }, + [13] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1535, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig25-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig25-Fox1", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -5069.9385908954, + ["y"] = -7609.3853302445, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 190, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #164", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [2] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [3] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [4] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3382, + ["x"] = -5069.9385908954, + ["y"] = -7609.3853302445, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 191, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig25-Fox1-1", + ["onboard_num"] = "1167", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [2] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [3] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [4] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3384, + ["x"] = -5109.9385908954, + ["y"] = -7569.3853302445, + }, + }, + ["x"] = -5069.9385908954, + ["y"] = -7609.3853302445, + }, + [14] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1536, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig25-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig25-Fox2", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -7209.1517770201, + ["y"] = -7649.0003892469, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 190, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "af standard", + ["name"] = "Pilot #211", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, + [2] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, + [3] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, + [4] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3385, + ["x"] = -7209.1517770201, + ["y"] = -7649.0003892469, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 192, + ["heading"] = 0, + ["livery_id"] = "af standard", + ["name"] = "veafSpawn-Mig25-Fox2-1", + ["onboard_num"] = "1168", + ["payload"] = { + ["chaff"] = 64, + ["flare"] = 64, + ["fuel"] = "15245", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, + [2] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, + [3] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, + [4] = { + ["CLSID"] = "{682A481F-0CB5-4693-A382-D00DD4A156D7}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-25PD", + ["unitId"] = 3387, + ["x"] = -7249.1517770201, + ["y"] = -7609.0003892469, + }, + }, + ["x"] = -7209.1517770201, + ["y"] = -7649.0003892469, + }, + [15] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1537, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig31-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig31-Fox2", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -9744.5155531678, + ["y"] = -7490.5401532376, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 193, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "Pilot #212", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, + [6] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3388, + ["x"] = -9744.5155531678, + ["y"] = -7490.5401532376, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 194, + ["hardpoint_racks"] = true, + ["heading"] = 0, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "veafSpawn-Mig31-Fox2-1", + ["onboard_num"] = "1169", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{B0DBC591-0F52-4F7D-AD7B-51E67725FB81}", + }, + [6] = { + ["CLSID"] = "{275A2855-4A79-4B2D-B082-91EA2ADF4691}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3390, + ["x"] = -9784.5155531678, + ["y"] = -7450.5401532376, + }, + }, + ["x"] = -9744.5155531678, + ["y"] = -7490.5401532376, + }, + [16] = { + ["communication"] = false, + ["frequency"] = 251, + ["groupId"] = 1538, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Mig31-Fox3", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Mig31-Fox3", + ["speed"] = 277.5, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -12359.10944732, + ["y"] = -7450.9250942353, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 193, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "Pilot #213", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [2] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [3] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [4] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [5] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [6] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3391, + ["x"] = -12359.10944732, + ["y"] = -7450.9250942353, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 195, + ["heading"] = 0, + ["livery_id"] = "174 GvIAP_Boris Safonov", + ["name"] = "veafSpawn-Mig31-Fox3-1", + ["onboard_num"] = "1170", + ["payload"] = { + ["chaff"] = 0, + ["flare"] = 0, + ["fuel"] = "15500", + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{4EDBA993-2E34-444C-95FB-549300BF7CAF}", + }, + [2] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [3] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [4] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [5] = { + ["CLSID"] = "{F1243568-8EF0-49D4-9CB5-4DA90D92BC1D}", + }, + [6] = { + ["CLSID"] = "{5F26DBC2-FB43-4153-92DE-6BBCE26CB0FF}", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 277.5, + ["type"] = "MiG-31", + ["unitId"] = 3393, + ["x"] = -12399.10944732, + ["y"] = -7410.9250942353, + }, + }, + ["x"] = -12359.10944732, + ["y"] = -7450.9250942353, + }, + [17] = { + ["communication"] = false, + ["frequency"] = 243, + ["groupId"] = 1539, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-JF17-Fox2", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "JF17-Fox2", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + [2] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "WrappedAction", + ["number"] = 2, + ["params"] = { + ["action"] = { + ["id"] = "EPLRS", + ["params"] = { + ["groupId"] = 39, + ["value"] = true, + }, + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -15752.299691857, + ["y"] = -7272.2841548691, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["AddPropAircraft"] = { + }, + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 196, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "Pilot #215", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, + [4] = { + ["CLSID"] = "DIS_TANK800", + }, + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3394, + ["x"] = -15752.299691857, + ["y"] = -7272.2841548691, + }, + [2] = { + ["AddPropAircraft"] = { + }, + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 197, + ["heading"] = 0, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "veafSpawn-JF17-Fox2-1", + ["onboard_num"] = "1171", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, + [4] = { + ["CLSID"] = "DIS_TANK800", + }, + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3396, + ["x"] = -15792.299691857, + ["y"] = -7232.2841548691, + }, + }, + ["x"] = -15752.299691857, + ["y"] = -7272.2841548691, + }, + [18] = { + ["communication"] = false, + ["frequency"] = 243, + ["groupId"] = 1540, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-JF17-Fox3", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "JF17-Fox3", + ["speed"] = 220.97222222222, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + [1] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "EngageTargets", + ["key"] = "CAP", + ["number"] = 1, + ["params"] = { + ["priority"] = 0, + ["targetTypes"] = { + [1] = "Air", + }, + }, + }, + [2] = { + ["auto"] = true, + ["enabled"] = true, + ["id"] = "WrappedAction", + ["number"] = 2, + ["params"] = { + ["action"] = { + ["id"] = "EPLRS", + ["params"] = { + ["groupId"] = 45, + ["value"] = true, + }, + }, + }, + }, + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = -19069.923022895, + ["y"] = -7272.2841548691, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["AddPropAircraft"] = { + }, + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 196, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "Pilot #216", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, + [2] = { + ["CLSID"] = "DIS_SD-10_DUAL_L", + }, + [3] = { + ["CLSID"] = "DIS_TANK1100", + }, + [4] = { + ["CLSID"] = "DIS_TANK800", + }, + [5] = { + ["CLSID"] = "DIS_TANK1100", + }, + [6] = { + ["CLSID"] = "DIS_SD-10_DUAL_R", + }, + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3397, + ["x"] = -19069.923022895, + ["y"] = -7272.2841548691, + }, + [2] = { + ["AddPropAircraft"] = { + }, + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 198, + ["heading"] = 0, + ["livery_id"] = "'Splinter' Camo for Blue Side (Fictional)", + ["name"] = "veafSpawn-JF17-Fox3-1", + ["onboard_num"] = "1172", + ["payload"] = { + ["chaff"] = 36, + ["flare"] = 32, + ["fuel"] = 2325, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "DIS_PL-5EII", + }, + [2] = { + ["CLSID"] = "DIS_SD-10_DUAL_L", + }, + [3] = { + ["CLSID"] = "DIS_TANK1100", + }, + [4] = { + ["CLSID"] = "DIS_TANK800", + }, + [5] = { + ["CLSID"] = "DIS_TANK1100", + }, + [6] = { + ["CLSID"] = "DIS_SD-10_DUAL_R", + }, + [7] = { + ["CLSID"] = "DIS_PL-5EII", + }, + }, + }, + ["psi"] = 0, + ["skill"] = "Excellent", + ["speed"] = 220.97222222222, + ["type"] = "JF-17", + ["unitId"] = 3399, + ["x"] = -19109.923022895, + ["y"] = -7232.2841548691, + }, + }, + ["x"] = -19069.923022895, + ["y"] = -7272.2841548691, + }, + [19] = { + ["communication"] = false, + ["frequency"] = 127.5, + ["groupId"] = 1186, + ["hidden"] = true, + ["lateActivation"] = true, + ["modulation"] = 0, + ["name"] = "veafSpawn-Su27-Fox1", + ["radioSet"] = false, + ["route"] = { + ["points"] = { + [1] = { + ["action"] = "Turning Point", + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["ETA"] = 0, + ["ETA_locked"] = true, + ["formation_template"] = "", + ["name"] = "Su27-Fox1", + ["speed"] = 253.75313988205, + ["speed_locked"] = true, + ["task"] = { + ["id"] = "ComboTask", + ["params"] = { + ["tasks"] = { + }, + }, + }, + ["type"] = "Turning Point", + ["x"] = 18867.39306593, + ["y"] = -8227.392771913, + }, + }, + ["routeRelativeTOT"] = true, + }, + ["start_time"] = 0, + ["task"] = "CAP", + ["tasks"] = { + }, + ["taskSelected"] = true, + ["uncontrolled"] = false, + ["units"] = { + [1] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 152, + ["hardpoint_racks"] = true, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "Pilot #283", + ["onboard_num"] = "1043", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [8] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 2627, + ["x"] = 18867.39306593, + ["y"] = -8227.392771913, + }, + [2] = { + ["alt"] = 6096, + ["alt_type"] = "BARO", + ["callsign"] = 151, + ["heading"] = 2.7233683240106, + ["livery_id"] = "Air Force Standard Early", + ["name"] = "Pilot #284", + ["onboard_num"] = "1060", + ["payload"] = { + ["chaff"] = 96, + ["flare"] = 96, + ["fuel"] = 9400, + ["gun"] = 100, + ["pylons"] = { + [1] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82F}", + }, + [2] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [3] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [4] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [5] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [6] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [7] = { + ["CLSID"] = "{E8069896-8435-4B90-95C0-01A03AE6E400}", + }, + [8] = { + ["CLSID"] = "{B79C379A-9E87-4E50-A1EE-7F7E29C2E87A}", + }, + [9] = { + ["CLSID"] = "{FBC29BFE-3D24-4C64-B81D-941239D12249}", + }, + [10] = { + ["CLSID"] = "{44EE8698-89F9-48EE-AF36-5FD31896A82A}", + }, + }, + }, + ["psi"] = -2.7233683240106, + ["skill"] = "Excellent", + ["speed"] = 253.75313988205, + ["type"] = "Su-27", + ["unitId"] = 2628, + ["x"] = 18827.39306593, + ["y"] = -8187.392771913, + }, + }, + ["x"] = 18867.39306593, + ["y"] = -8227.392771913, + }, + + } + }, + + ["red helicopters"] = + { + coalition = "red", + country = "russia", + category = "helicopter", + groups = { + + } + }, +} +