Advertisement
Florian86

cobblecompress

Apr 5th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.29 KB | None | 0 0
  1. while true do
  2.     for i=1,3 do
  3.         turtle.select(i)
  4.         turtle.suck()
  5.     end
  6.    
  7.     for i=5,7 do
  8.         turtle.select(i)
  9.         turtle.suck()
  10.     end
  11.    
  12.     for i=9,11 do
  13.         turtle.select(i)
  14.         turtle.suck()
  15.     end
  16.    
  17.     turtle.select(16)
  18.     turtle.craft()
  19.     turtle.turnLeft()
  20.     turtle.drop()
  21.     turtle.turnRight()
  22. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement