Advertisement
gunny576

crafting turtle

Sep 19th, 2014
302
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.18 KB | None | 0 0
  1. turtle.select(11)
  2. while true do
  3.     if (turtle.getItemCount() > 1) then
  4.     turtle.select(4)
  5.     turtle.craft(turtle.getItemCount(11)-1)
  6.     turtle.select(11)
  7.     else
  8.     os.sleep(1)
  9.     end
  10. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement