ExtractPersonnel

Extract personnel from area

Usage: Used in 8 task(s)

Lua Implementation

-- Extract Personnel
function execute(params)
    local extractionPoint = params.extraction_point
    local personnel = params.personnel

    this:addTask("DtExtract", {
        location = extractionPoint,
        personnel = personnel,
        method = params.method or "hoist"
    })

    return true
end