Last active
August 29, 2015 14:27
-
-
Save Higgs1/a81855e4775b776bca7f to your computer and use it in GitHub Desktop.
Computer Craft Induction Smelter Turtle
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- 1. Label Computer | |
-- 2. Save file as "/startup" | |
while true do | |
for slot=1,16 do | |
if turtle.getItemCount(slot) > 0 then | |
turtle.select(slot) | |
for j=slot+1,16 do | |
if turtle.compareTo(j) then | |
turtle.select(j) | |
turtle.transferTo(slot) | |
turtle.select(slot) | |
end | |
end | |
local count = turtle.getItemCount() | |
if count >= 2 then | |
count = math.floor(count / 2) | |
turtle.drop(count * 2) | |
os.sleep(count + 0.05) | |
break | |
end | |
end | |
end | |
os.sleep(0) | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment