Advertisement
EnderReaper64

Draconic Evolution Fusion Crafter Automation (Computercraft)

Dec 3rd, 2021 (edited)
1,396
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.42 KB | None | 0 0
  1. while true do
  2.     local first = true
  3.     if turtle.getItemCount(1) >= 1 then
  4.         for a = 16, 2, -2 do
  5.             turtle.select(a)
  6.             if turtle.getItemCount(a) >= 1 then
  7.                 if first == true then
  8.                     turtle.drop(64)
  9.                 else
  10.                     turtle.dropDown(64)
  11.                 end
  12.             end
  13.         end
  14.         turtle.select(1)
  15.     end
  16.     os.sleep(1)
  17. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement