portablejim

compressedCobble.lua

Feb 28th, 2015
245
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.28 KB | None | 0 0
  1. function doRow(s, e)
  2.     turtle.select(s)
  3.     while turtle.getItemCount(e) < 64 do
  4.         turtle.suck(64 - turtle.getItemCount(e))
  5.     end
  6. end
  7.  
  8.  
  9. while 1 == 1 do
  10.     doRow(1,3)
  11.     doRow(5,7)
  12.     doRow(9,11)
  13.     turtle.select(16)
  14.     turtle.craft()
  15.     turtle.dropDown()
  16. end
Advertisement
Add Comment
Please, Sign In to add comment