FireDemonite icon

Basic Autocrafter

FireDemonite | PRO | 03/14/20 10:26:49 AM UTC | 0 ⭐ | 154 👁️ | Never ⏰ | []
Lua |

470 B

|

None

|

0 👍

/

0 👎

turtle.select(1)
turtle.drop()
while true do
    turtle.select(1)
    turtle.suckUp()
    turtle.dropUp(turtle.getItemCount() % 8)
    craftValue = turtle.getItemCount() / 8
    turtle.transferTo(2,craftValue)
    turtle.transferTo(3,craftValue)
    turtle.transferTo(5,craftValue)
    turtle.transferTo(7,craftValue)
    turtle.transferTo(9,craftValue)
    turtle.transferTo(10,craftValue)
    turtle.transferTo(11,craftValue)
    turtle.craft()
    turtle.drop()
end

Comments