Advertisement
Gl33p

trtl_log

Apr 24th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.36 KB | None | 0 0
  1. ------ ( Functions ) ------
  2.  
  3. function checkFuel()
  4.   if turtle.getFuelLevel() == 0 then
  5.     turtle.refuel()
  6.   end
  7. end
  8.  
  9. ------ ( Program Start ) ------
  10.  
  11. turtle.dig()
  12. turtle.forward()
  13.  
  14. while turtle.detectUp() == true do
  15.   checkFuel()
  16.   turtle.digUp()
  17.   turtle.up()
  18. end  
  19.  
  20. while turtle.detectDown() == false do
  21.   checkFuel()
  22.   turtle.down()
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement