CheeseLiker

Turtle Shapeless Crafter - ComputerCraft

Jan 13th, 2019 (edited)
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.45 KB | None | 0 0
  1. -- Computer Craft 1.8 Turtle Shapeless Unique Crafter --
  2. -- Crafter Version: 1.0
  3.  
  4. -- For Turtle to craft a shapeless recipe that only has unique ingredients
  5.  
  6. ingredients = 3 -- number of ingredients needed to craft the item
  7. while true do
  8.     local n = 0
  9.     for i = 1, 16 do
  10.         if turtle.getItemCount(i) ~= 0 then
  11.             n = n + 1
  12.         else
  13.             sleep(1)
  14.             break
  15.         end
  16.     end
  17.     if n == ingredients then
  18.         turtle.select(16)
  19.         turtle.craft()
  20.         sleep(1)
  21.     end
  22. end
Advertisement
Add Comment
Please, Sign In to add comment