Advertisement
Guest User

startup.lua

a guest
Jun 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. turtle.select(1)
  2.  
  3. while true do
  4.  
  5.  for y = 1, 3, 1 do
  6.  
  7.   for x = 1, 3, 1 do
  8.    
  9.    turtle.select(4*(y-1) + x)
  10.  
  11.    while turtle.getItemSpace() > 0 do
  12.  
  13.     turtle.suck(turtle.getItemSpace())
  14.    end
  15.   end
  16.  end
  17.  
  18.  turtle.craft()
  19.  turtle.dropUp()
  20.  
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement