Advertisement
Neopherus

Box

Apr 19th, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. tArgs={...}
  2. area=tonumber(tArgs[1])
  3. height=tonumber(tArgs[2])
  4. --
  5.  
  6. function checkInv()
  7.     if turtle.getItemCount(1) <1 then
  8.     turtle.select(16)
  9.     turtle.placeUp()
  10.     turtle.select(1)
  11.     turtle.suckUp()
  12.     turtle.select(16)
  13.     turtle.digUp()
  14.     turtle.select(1)
  15.     end
  16. end
  17.  
  18. for h=1,height do
  19. turtle.up()
  20. checkInv()
  21.     for a=1,4 do
  22.         for i=1,area do
  23.         checkInv()
  24.         sleep(0.025)
  25.         turtle.placeDown()
  26.         turtle.forward()
  27.         end
  28.         turtle.turnRight()
  29.     end
  30. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement