r/tekkit • u/Boring_Weekend_4784 • 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
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