Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local robot = require("robot")
- local computer = require("computer")
- local sides = require("sides")
- local component = require("component")
- local ser = require("serialization")
- local c = component.crafting
- local inventory = component.inventory_controller
- local passable, state = robot.detect() -- return values for robot.detect()
- print(robot.detect())
- local function goUp()
- if robot.detectUp() == true then
- repeat
- robot.swingUp()
- os.sleep(2)
- until robot.detectUp() == false
- robot.up()
- end
- end
- print(goUp())
- goUp()
Add Comment
Please, Sign In to add comment