Advertisement
denvys5

SapPlace

Dec 20th, 2013
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. function refuel()
  2.  turtle.select(16)
  3.  while turtle.getFuelLevel()<100 do
  4.     if not turtle.refuel(1) then
  5.       print("Put fuel in slot 16")
  6.       os.sleep(5)
  7.     end
  8.    end
  9.  end
  10. turtle.select(1)
  11. turtle.suckDown()
  12. turtle.forward()
  13. turtle.forward()
  14.  
  15. for i =1,14 do
  16.  turtle.select(1)
  17.  turtle.placeDown()
  18.  turtle.forward()
  19.  turtle.forward()
  20.  turtle.forward()
  21. end
  22.  
  23. turtle.placeDown()
  24. shell.run("go","back","44")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement