SondreNL

Untitled

Mar 5th, 2021 (edited)
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.38 KB | None | 0 0
  1. while true do
  2.     turtle.select(1)
  3.     turtle.place()
  4.     turtle.place()
  5.     turtle.place()
  6.     turtle.dig()
  7.     turtle.suck()
  8.     if turtle.getItemCount(1) == 0 then
  9.         turtle.turnRight()
  10.         if turtle.suck() == false then
  11.             print("No Bonemeal available!")
  12.             turtle.turnLeft()
  13.             return
  14.         end
  15.         turtle.turnLeft()
  16.     end
  17.    
  18. end
Add Comment
Please, Sign In to add comment