Advertisement
Spatzenhirn123

armor-craft

Jan 15th, 2015
210
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.27 KB | None | 0 0
  1. function Item()
  2.     for i=1,16,1 do
  3.         turtle.select(i)
  4.         turtle.dropUp()
  5.     end
  6. end
  7. while redstone.getInput("top")==false do
  8.     Item()
  9.     for i=1,2,1 do
  10.         turtle.suckUp(1)
  11.     end
  12.     if turtle.craft()==true then
  13.         Item()
  14.         sleep(0.5)
  15.     else
  16.         Item()
  17.         sleep(50)
  18.     end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement