BreachDoor

Breach door for entry

Usage: Used in 7 task(s)

Lua Implementation

-- Breach Door
function execute(params)
    local doorLoc = params.door_location
    local method = params.breach_method or "explosive"

    this:addTask("DtBreach", {
        location = doorLoc,
        breachMethod = method,
        delay = params.delay or 0
    })

    return true
end