ApproachRunway

Approach runway for landing

Usage: Used in 6 task(s)

Lua Implementation

-- Approach Runway
function execute(params)
    local runway = params.runway_location
    local airfield = params.airfield

    this:addTask("DtLand", {
        location = runway or airfield,
        approachType = params.approach_type or "straight-in"
    })
    return true
end