If this discussion is already ocurring, do you added LH2 to the elements on the mod? I really wanted this fuel to mix with LOXY and make a rocket!
hmm , might look into it
biodiesel, if i remember properly, produces lest carbon dioxide and its production doesn't give off as much resisdues(excluding soap). diesel, I think also contain sulfates that when burnt, it makes fumes that condensate into sulfuric acid(nice acid rain). so ya don't think hippies like acid rain... and theres where biodiesel is useful
I wish to script LUA, writting these mods looks like so cool!
Anyways how to do it? And how to refine OILC (crude oil)?
how to script?... well making new elements is easy, the functions like reactions and the interface panel thing require actual lua knowlege... if your looking to learn just get a script and start changing numbers and values, I find mucking around is it the best way to learn
heat it up, and cool it down in stages for separation of products.
thx
my only question now about the fuel mod is how to make biodiesel?
Hey, i found a way to make nitrogen gas into ln2 and vice versa without breaking saves or needing an anti-save breaking button, just using a script. I can post it here if you want.
It's basic, just ln2 made from cooling nitrogen can become into gaseous nitrogen.
Ntrg = elements.allocate("Ntrg", "NTRG")
elements.element(Ntrg, elements.element(elements.DEFAULT_PT_HYGN))
elements.property(Ntrg, "Name", "NTRG")
elements.property(Ntrg, "Description", "Nitrogen.")
elements.property(Ntrg, "Colour", 0xFF1BB38E)
elements.property(Ntrg, "Properties", 0x0208)
elements.property(Ntrg, "LowTemperature", 78)
elements.property(Ntrg, "LowTemperatureTransition", tpt.element('ln2'))
local function Ntrg(i,x,y,s,nt)
if tpt.get_property("tmp2", i) == 0 then
tpt.set_property("tmp2", 1, i)
end
end
tpt.element_func(Ntrg, tpt.element('ntrg'))
elements.property(tpt.element('ln2'), "HighTemperature", 10000)
local function LN2(i,x,y,s,nt)
if tpt.get_property("tmp2", i) == 1 then
if tpt.get_property("temp", i) >= 77 then
tpt.set_property("type","ntrg",i)
end
end
if tpt.get_property("tmp2", i) == 0 then
if tpt.get_property("temp", i) >= 77 then
tpt.set_property("type","none",i)
end
end
end
tpt.element_func(LN2, tpt.element('ln2'))