Advertisement
FruitFusion

Untitled

Jul 19th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1. local function log()
  2.     turtle.dig()
  3.     turtle.forward()
  4.  
  5.     turtle.digUp()
  6.     turtle.up()
  7.     turtle.digUp()
  8.     turtle.up()
  9.     turtle.digUp()
  10.     turtle.up()
  11.     turtle.digUp()
  12.     turtle.up()
  13.     turtle.digUp()
  14.     turtle.up()
  15.     turtle.digUp()
  16.  
  17.     turtle.down()
  18.     turtle.down()
  19.     turtle.down()
  20.     turtle.down()
  21.     turtle.down()
  22.     turtle.back()
  23. end
  24.  
  25. local function plant()
  26.     turtle.select(1)
  27.     turtle.place()
  28. end
  29.  
  30. while true do
  31.  turtle.select(1)
  32.  while turtle.compare() do
  33.   os.sleep(5)
  34.  end
  35.  if turtle.getFuelLevel() < 500 then       --fuel check
  36.     turtle.select(2)
  37.     turtle.refuel();
  38.  end
  39.  log()
  40.  plant()
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement