From 085172f0331d32b9437a7f3136da56a91f8e53c3 Mon Sep 17 00:00:00 2001 From: Ambroise Garel <47314805+akaAgar@users.noreply.github.com> Date: Thu, 18 Sep 2025 21:49:20 +0200 Subject: [PATCH] Added (disabled) helicopterPickUpInfantry task --- Database/Tasks/HelicopterPickUpInfantry.lua | 22 +++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 Database/Tasks/HelicopterPickUpInfantry.lua diff --git a/Database/Tasks/HelicopterPickUpInfantry.lua b/Database/Tasks/HelicopterPickUpInfantry.lua new file mode 100644 index 0000000..c59591c --- /dev/null +++ b/Database/Tasks/HelicopterPickUpInfantry.lua @@ -0,0 +1,22 @@ +-- Library.tasks.helicopterPickUpInfantry = { +-- taskFamily = DCSEx.enums.taskFamily.HELICOPTER, +-- description = +-- { +-- briefing = { +-- "", +-- }, +-- short = "Land and pick up friendly infantry", +-- }, +-- conditions = { +-- difficultyMinimum = 0, +-- eras = {}, +-- }, +-- completionEvent = DCSEx.enums.taskEvent.LAND, +-- flags = { DCSEx.enums.taskFlag.FRIENDLY_TARGET }, +-- minimumDistance = DCSEx.converter.nmToMeters(5.0), +-- safeRadius = 100, +-- surfaceType = nil, +-- targetCount = { 6, 8 }, +-- targetFamilies = { DCSEx.enums.unitFamily.GROUND_INFANTRY }, +-- waypointInaccuracy = DCSEx.converter.nmToMeters(1.5) +-- }