Advertisement
kamiakze

Livingwood

Jul 20th, 2017
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. while (true) do
  2.  
  3.     turtle.select(1)
  4.    
  5.     if (turtle.getItemCount(1) == 1) then
  6.         turtle.select(1)
  7.         turtle.suckDown(1)
  8.     end
  9.  
  10.         turtle.select(2)
  11.  
  12.     if (turtle.compare()) then
  13.         turtle.dig()
  14.         turtle.dropUp(1)
  15.     end
  16.  
  17.         turtle.select(1)
  18.         turtle.place()
  19.  
  20.     sleep(1)
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement