Advertisement
Guest User

grow

a guest
Nov 23rd, 2014
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. while true do
  2.   turtle.select(1)
  3.   for i = 1,13 do
  4.     turtle.suckDown()
  5.   end
  6.   for i = 1, 13 do
  7.     turtle.select(i)
  8.     if turtle.compareTo(14) then
  9.       turtle.dropUp()
  10.     else
  11.       if turtle.compareTo(15) then
  12.         turtle.dropUp()
  13.       else
  14.         if turtle.compareTo(16) then
  15.           turtle.dropUp()
  16.         else
  17.           turtle.dropDown()
  18.         end
  19.       end    
  20.     end
  21.   end
  22.   sleep(10)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement