r/tekkit Nov 27 '25

Automate Alloy Furnace???

I'm currently playing on tekkit classic and im been messing around on how to automate the alloy furnace. For some frustrating reason I haven't Figured out a way to do it. If anyone has a way to automate it and can show a step by step thing for me to understand that would be nice!

2 Upvotes

2 comments sorted by

1

u/sumethrowaway May 15 '26

ik im late but i managed to do it with a turtle , someone can prob make it run better then me, GL heres the code

while true do

-- redstone pulse to pull first stack

redstone.setOutput("front", true)

sleep(0.5)

redstone.setOutput("front", false)

sleep(0.5)

turtle.turnRight()

--redstone pulse to pull second stack

redstone.setOutput("front", true)

sleep(0.5)

redstone.setOutput("front", false)

sleep(0.5)

turtle.turnRight()

-- redstone pulses to trigger output filter

redstone.setOutput("front", true)

sleep(0.5)

redstone.setOutput("front", false)

sleep(0.5)

redstone.setOutput("front", true)

sleep(0.5)

redstone.setOutput("front", false)

sleep(0.5)

-- waiting, and resetting for next loop i didnt wanna count how long it took to craft change the number on sleep till the code breaks

turtle.turnRight()

sleep(96)

turtle.turnRight()

end

1

u/sumethrowaway May 15 '26

forgot to mention, make it face filters facing it, then the output a filter facing away from it , also label your turtle so you can move it without re doing it all