From 655b5bc6aa22daa50b88fd02df78fdd3d0eca13b Mon Sep 17 00:00:00 2001 From: Ambroise Garel <47314805+akaAgar@users.noreply.github.com> Date: Tue, 16 Sep 2025 19:49:35 +0200 Subject: [PATCH] Added "Helicopter hunt" mission objective --- README.md | 2 ++ Script/DCS extensions/Enums.lua | 10 +++++----- Script/The Universal Mission/Settings.lua | 2 +- 3 files changed, 8 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 8244045..b93b14f 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,8 @@ Please also note that PvP is not supported at the moment and that the mission wi - Additional content - [ ] More objectives types + - [x] Helicopter hunt + - [ ] Offensive counter-air - Balance improvements - [ ] Tweaked XP requirements for medals/promotions - Bug fixes diff --git a/Script/DCS extensions/Enums.lua b/Script/DCS extensions/Enums.lua index 412206c..dacdd42 100644 --- a/Script/DCS extensions/Enums.lua +++ b/Script/DCS extensions/Enums.lua @@ -43,11 +43,11 @@ DCSEx.enums.taskFamily = { -- CAS = XXX, GROUND_ATTACK = 2, -- HELICOPTER = XXX, - -- HELO_HUNT = XXX, - INTERCEPTION = 3, - OCA = 4, - SEAD = 5, - STRIKE = 6, + HELO_HUNT = 3, + INTERCEPTION = 4, + OCA = 5, + SEAD = 6, + STRIKE = 7, } ------------------------------------- diff --git a/Script/The Universal Mission/Settings.lua b/Script/The Universal Mission/Settings.lua index ca73dae..e61750a 100644 --- a/Script/The Universal Mission/Settings.lua +++ b/Script/The Universal Mission/Settings.lua @@ -52,7 +52,7 @@ do [TUM.settings.id.PLAYER_COALITION] = { "Red", "Blue" }, -- Must match values in the coalition.side enum [TUM.settings.id.TARGET_COUNT] = { "1", "2", "3", "4" }, [TUM.settings.id.TARGET_LOCATION] = { }, - [TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Interception", "OCA", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum + [TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Helicopter hunt", "Interception", "OCA", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum [TUM.settings.id.TIME_PERIOD] = { "World War 2", "Korea War", "Vietnam War", "Late Cold War", "Modern" }, -- Must match values in the DCSEx.enums.timePeriod enum [TUM.settings.id.WINGMEN] = { "None", "1", "2", "3" } }