Guest User

new.lua

a guest
May 8th, 2020
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.53 KB | None | 0 0
  1. local robot = require("robot")
  2. local computer = require("computer")
  3. local sides = require("sides")
  4. local component = require("component")
  5. local ser = require("serialization")
  6.  
  7. local c = component.crafting
  8. local inventory = component.inventory_controller
  9.  
  10.  
  11.  
  12.  
  13. local passable, state = robot.detect() -- return values for robot.detect()
  14.  
  15. print(robot.detect())
  16.  
  17. local function goUp()
  18.   if robot.detectUp() == true then
  19.   repeat
  20.     robot.swingUp()
  21.     os.sleep(2)
  22.    until robot.detectUp() == false
  23.     robot.up()
  24.   end
  25. end
  26.  
  27.  
  28.  
  29. print(goUp())
  30. goUp()
Add Comment
Please, Sign In to add comment