-oOo-more fuel mod-oOo-

  • TNTNUCLEAR
    5th Dec 2014 Member 1 Permalink

    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!

  • Klus
    5th Dec 2014 Member 0 Permalink

    What do hippies have to do with this?

  • jward212
    6th Dec 2014 Member 0 Permalink

    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

  • Gustavo6046
    12th Feb 2015 Member 0 Permalink

    I wish to script LUA, writting these mods looks like so cool!

    Anyways how to do it? And how to refine OILC (crude oil)?

  • jward212
    12th Feb 2015 Member 0 Permalink

    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.

  • Gustavo6046
    12th Feb 2015 Member 0 Permalink

    thx

    my only question now about the fuel mod is how to make biodiesel?

  • jward212
    12th Feb 2015 Member 0 Permalink

    mix afrz(methnol ), plye(potash lye)and coil(cooking oil)

  • DanielGalrito
    12th Feb 2015 Member 0 Permalink

    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.

  • jward212
    12th Feb 2015 Member 0 Permalink

    sure!!! sounds great

  • DanielGalrito
    13th Feb 2015 Member 0 Permalink

    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'))