Land

Execute landing at airfield

Usage: Used in 6 task(s)

Lua Implementation

-- Land
function execute(params)
    local landingLoc = params.location

    this:addTask("DtLand", {
        location = landingLoc,
        taxi = params.taxi or true
    })
    return true
end