start

-- ARGUMENTS
-- callback:    function (result)
-- count:       number   (optional)
-- speed:       number   (optional)
-- duration:    number   (optional)
-- label:       string   (optional)

-- RETURNS
-- nil

ti.lockPicking.start(function(res)
  print( ("You %s the lockpicking challenge."):format(res and "beat" or "failed") )
end,5,0.5,"Lockpicking...")

Last updated