Added DCSEx.enums.taskFamily.HELICOPTER

This commit is contained in:
Ambroise Garel 2025-09-17 16:19:37 +02:00
parent 1c6b06a1a6
commit 6b52970520
3 changed files with 8 additions and 7 deletions

View File

@ -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

View File

@ -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,
}
-------------------------------------

View File

@ -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" }
}