-
|
Versions:
Setup: Code: What I'm trying to do is automate steel production. This is by no means comprehensive yet (creosote is not handled at all yet). During my testing, I can't seem to get the factory manager to take coal coke out of the coke oven. Nor can I get it to input steel into the blast furnace. Am I doing something wrong in my code or with the labels? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
|
Can you confirm that a hopper is able to insert to that location? I'm not familiar if the coke oven and blast furnace permit input from the top or if you need to do it from the side. My immediate hypothesis is that your program is inputting the items and immediately taking them out; you have no filter on the extraction logic. here's something that may inspire EVERY 20 TICKS DO
-- input ingredients
INPUT FROM coal
OUTPUT RETAIN 8 TO EACH coke_oven TOP SIDE
FORGET
-- move coke
INPUT *coke* FROM coke_oven TOP SIDE
OUTPUT TO blast_furnace TOP SIDE
FORGET
-- move iron
INPUT FROM iron
OUTPUT RETAIN 8 TO EACH blast_furnace TOP SIDE
FORGET
-- move results
INPUT *steel* FROM blast_furnace TOP SIDE
OUTPUT TO results
FORGET
ENDyou can select code and hit ctrl+/ to toggle comments on it to try and isolate problems |
Beta Was this translation helpful? Give feedback.



Ah, nice to see my vscode keybinds work here :)
Tested the following inputs with a hopper:
So actually, I think just the Crude Blast Furnace is not allowed to be automated at all. You have to build the improved one. I'm still not able to get the steel and slag out of the improved blast furnace without using chests as intermediate storage on the outputs in the front and back, which is a little…