diff --git a/README.md b/README.md index a6ef6d7..0c1b53f 100644 --- a/README.md +++ b/README.md @@ -75,6 +75,7 @@ Please also note that PvP is not supported at the moment and that the mission wi - Additional content - [ ] More objectives types + - [ ] Helicopter-specific tasking (land and pick up units, suppress infantry...) - [x] Helicopter hunt - [ ] Offensive counter-air - Balance improvements diff --git a/Script/DCS extensions/Enums.lua b/Script/DCS extensions/Enums.lua index e8ab633..fcf30bf 100644 --- a/Script/DCS extensions/Enums.lua +++ b/Script/DCS extensions/Enums.lua @@ -43,12 +43,12 @@ DCSEx.enums.taskFamily = { -- CAP = XXX, -- CAS = XXX, GROUND_ATTACK = 2, - -- HELICOPTER = XXX, - HELO_HUNT = 3, - INTERCEPTION = 4, - OCA = 5, - SEAD = 6, - STRIKE = 7, + HELICOPTER = 3, + HELO_HUNT = 4, + INTERCEPTION = 5, + OCA = 6, + SEAD = 7, + STRIKE = 8, } ------------------------------------- diff --git a/Script/The Universal Mission/Settings.lua b/Script/The Universal Mission/Settings.lua index bea91ef..69a7c5b 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", "Helicopter hunt", "Interception", "Offensive counter-air", "SEAD", "Strike" }, -- Must match values in the DCSEx.enums.taskFamily enum + [TUM.settings.id.TASKING] = { "Antiship strike", "Ground attack", "Helicopter tasks", "Helo hunt", "Interception", "Offensive counter-air", "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" } }