Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function craft()
  2. turtle.craft(1)
  3. end
  4.  
  5. function drop()
  6. turtle.select(2)
  7. turtle.dropUp(2)
  8. turtle.select(1)
  9. end
  10.  
  11. while (true) do
  12. craft()
  13. drop()
  14.  
  15.  
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement