InsertRescueForce

Insert rescue force

Usage: Used in 8 task(s)

Lua Implementation

-- Insert Rescue Force
function execute(params)
    local insertionPoint = params.insertion_point
    local rescueForce = params.rescue_force

    this:addTask("DtInsert", {
        location = insertionPoint,
        personnel = rescueForce,
        method = params.method or "fast_rope"
    })

    return true
end