I belive some people on here do play reactorcraft, and use the pebble bed reactors. Now when they overheat, the entire reactor turns into lava and you loose all the pellets in there (up to 47). That's annoying.
If you also have computercraft installed, along with openperipherals, there's a solution. Put a dropper on top of the chamber, a computer to the front, and a block or wire on top of the computer.
then add
and it'll drop each pellet in individually when the reactor is empty (reduce the delays if you're really really OCD about efficiency). If the reactor goes lava, it'll only destroy the pellet currently in the reactor.
This is part of a larger pebble bed based design i'm working on right now, but it's a nice little trick, and saving up to 46 pellets in the event of disaster should be worth the little bit redstone and glass you require for a computer and a dropper.
If you also have computercraft installed, along with openperipherals, there's a solution. Put a dropper on top of the chamber, a computer to the front, and a block or wire on top of the computer.
then add
Code:
reactor = peripheral.wrap("back")
while true do
while rs.getInput("front") do
if next(reactor.getAllStacks()) == nil then
rs.setOutput("top",true)
sleep(2)
rs.setOutput("top",false)
sleep(2)
end
sleep(2)
end
sleep(10)
end
and it'll drop each pellet in individually when the reactor is empty (reduce the delays if you're really really OCD about efficiency). If the reactor goes lava, it'll only destroy the pellet currently in the reactor.
This is part of a larger pebble bed based design i'm working on right now, but it's a nice little trick, and saving up to 46 pellets in the event of disaster should be worth the little bit redstone and glass you require for a computer and a dropper.