Install Steam
login
|
language
简体中文 (Simplified Chinese)
繁體中文 (Traditional Chinese)
日本語 (Japanese)
한국어 (Korean)
ไทย (Thai)
Български (Bulgarian)
Čeština (Czech)
Dansk (Danish)
Deutsch (German)
Español - España (Spanish - Spain)
Español - Latinoamérica (Spanish - Latin America)
Ελληνικά (Greek)
Français (French)
Italiano (Italian)
Bahasa Indonesia (Indonesian)
Magyar (Hungarian)
Nederlands (Dutch)
Norsk (Norwegian)
Polski (Polish)
Português (Portuguese - Portugal)
Português - Brasil (Portuguese - Brazil)
Română (Romanian)
Русский (Russian)
Suomi (Finnish)
Svenska (Swedish)
Türkçe (Turkish)
Tiếng Việt (Vietnamese)
Українська (Ukrainian)
Report a translation problem









can confirm changing line 2 in Furnace IC,
from: IC 2037291645
to: define IC -128473777
fixed my issues of temp/pressure.
Example issue I had, , Solder, temp and pressure where never correct. Changing the hash# for the IC housing fixed it. Solder is made and ejected automatically.
You can use tanks instead of analyzers but you have to edit the end of the Hash IC and replace the Analyzers Prefab Hash with the tanks and name the tanks as if they were the analyzers.
You could turn off power to the whole thing and walk away, it shouldn't be an issue.
Also what's the procedure for when we're not going to be using the furnace for a while, can we just turn off all the power to everything and it'll be fine? Or should we vent the furnace first?
In IC FURNACE, I removed lines 21 and 43.
I added to IC HASH
lbn r15 435685051 HASH("Fuel Analyzer") Pressure Sum
slt r16 r15 1000
sbn 2104106366 HASH("Fuel Mixer") On r16
but it doesn't work either, so I gave up and made a separate IC Housing, adding only a short simple script
like this
define Analyzer 435685051
define Mixer 2104106366
start:
lbn r0 Analyzer HASH("Fuel PA") Pressure Sum # read pressure from analyzer
# if pressure < 900 => turn on
slt r1 r0 35000
# if pressure > 1000 => turn off
sgt r2 r0 41000
# turn off has priority
sub r3 r1 r2
sbn Mixer HASH("GM") On r3
yield
j start