Jump to content

redteddy23

Members
  • Posts

    78
  • Joined

  • Last visited

Reputation

10 Good

Profile Information

  • About me
    Rocketry Enthusiast

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Just like to thank you for this, jumping into and existing KSP mod and making a fix is never easy.
  2. With this excellent mod providing rockets that use liquid Hydrogen I have been using the DunaDirect and TACLS (modified by SETI balance) split water and sabatier process. The only drawback to all this ISRU fun is that I sometimes need hydrogen to be liquid and sometimes a gas. My solution was a gasifier/liquidifer! Here is a Module Manager patch to create a half sized ISRU unit and make it turn liquid hydrogen in to hydrogen and back. It also can turn oxygen into oxidizer and back but you can always strip that out if you want to. Hopefully anyone else who needs this feature can take this and modify it to suit them. I’m not a particularly seasoned MM patcher so it’s a good idea to double check everything and perhaps fiddle with the ratios to suit. +PART[ISRU]:NEEDS[Squad] { @name = TED_liquidgasifier @rescaleFactor = 0.5 @node_stack_top = 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 1 @node_stack_bottom = 0.0, -1.5, 0.0, 0.0, -1.0, 0.0, 1 @TechRequired = advScienceTech @entryCost = 12000 @cost = 4000 @title = Liquid-Gasifier @description = Developed to solve the age old problem of liquids being gases and gases being liquids. @mass = 2 @dragModelType = default @maximum_drag = 0.1 @minimum_drag = 0.1 @angularDrag = 1 @crashTolerance = 7 @maxTemp = 2000 -MODULE,* { } MODULE { name = ModuleResourceConverter ConverterName = HydrogenCompressor StartActionName = Start Hy Comp StopActionName = Stop Hy Comp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = Hydrogen Ratio = 10 FlowMode = STAGE_PRIORITY_FLOW } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = LqdHydrogen Ratio = 0.01269 DumpExcess = false FlowMode = STAGE_PRIORITY_FLOW } } MODULE { name = ModuleResourceConverter ConverterName = HydrogenDecompressor StartActionName = Start Hy Decomp StopActionName = Stop Hy Decomp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = LqdHydrogen Ratio = 10 } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = Hydrogen Ratio = 7880 DumpExcess = false } } MODULE { name = ModuleResourceConverter ConverterName = OxygenCompressor StartActionName = Start Ox Comp StopActionName = Stop Ox Comp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = Oxygen Ratio = 10 FlowMode = STAGE_PRIORITY_FLOW } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = Oxidizer Ratio = 0.00282 DumpExcess = false FlowMode = STAGE_PRIORITY_FLOW } } MODULE { name = ModuleResourceConverter ConverterName = OxygenDecompressor StartActionName = Start Ox Decomp StopActionName = Stop Ox Decomp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = Oxidizer Ratio = 10 } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = Oxygen Ratio = 35460 DumpExcess = false } } MODULE { name = ModuleAnimationGroup deployAnimationName = activeAnimationName = ProcessorLarge_running moduleType = Converter autoDeploy = true } }
  3. I have been using DunaDirect along with Cryogenic Engines and TAC LS and found a problem with my supply chain, sometimes I want to split water into oxygen and hydrogen and use the hydrogen in a liquid form to power rockets or fuel a Sabatier process! My solution was a gasifier/liquidifer! Here is a Module Manager patch to create a half sized ISRU unit and make it turn liquid hydrogen in to hydrogen and back. It also can turn oxygen into oxidizer and back but you can always strip that out if you want to. Hopefully anyone else who needs this feature can take this and modify it to suit them. I’m not a particularly seasoned MM patcher so it’s a good idea to double check everything. +PART[ISRU]:NEEDS[Squad] { @name = TED_liquidgasifier @rescaleFactor = 0.5 @node_stack_top = 0.0, 1.5, 0.0, 0.0, 1.0, 0.0, 1 @node_stack_bottom = 0.0, -1.5, 0.0, 0.0, -1.0, 0.0, 1 @TechRequired = advScienceTech @entryCost = 12000 @cost = 4000 @title = Liquid-Gasifier @description = Developed to solve the age old problem of liquids being gases and gases being liquids. @mass = 2 @dragModelType = default @maximum_drag = 0.1 @minimum_drag = 0.1 @angularDrag = 1 @crashTolerance = 7 @maxTemp = 2000 -MODULE,* { } MODULE { name = ModuleResourceConverter ConverterName = HydrogenCompressor StartActionName = Start Hy Comp StopActionName = Stop Hy Comp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = Hydrogen Ratio = 10 FlowMode = STAGE_PRIORITY_FLOW } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = LqdHydrogen Ratio = 0.01269 DumpExcess = false FlowMode = STAGE_PRIORITY_FLOW } } MODULE { name = ModuleResourceConverter ConverterName = HydrogenDecompressor StartActionName = Start Hy Decomp StopActionName = Stop Hy Decomp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = LqdHydrogen Ratio = 10 } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = Hydrogen Ratio = 7880 DumpExcess = false } } MODULE { name = ModuleResourceConverter ConverterName = OxygenCompressor StartActionName = Start Ox Comp StopActionName = Stop Ox Comp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = Oxygen Ratio = 10 FlowMode = STAGE_PRIORITY_FLOW } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = Oxidizer Ratio = 0.00282 DumpExcess = false FlowMode = STAGE_PRIORITY_FLOW } } MODULE { name = ModuleResourceConverter ConverterName = OxygenDecompressor StartActionName = Start Ox Decomp StopActionName = Stop Ox Decomp AutoShutdown = true GeneratesHeat = false UseSpecialistBonus = false INPUT_RESOURCE { ResourceName = Oxidizer Ratio = 10 } INPUT_RESOURCE { ResourceName = ElectricCharge Ratio = 10 } OUTPUT_RESOURCE { ResourceName = Oxygen Ratio = 35460 DumpExcess = false } } MODULE { name = ModuleAnimationGroup deployAnimationName = activeAnimationName = ProcessorLarge_running moduleType = Converter autoDeploy = true } }
  4. You have nothing to worry about permissions wise. Roughly a year ago I contacted SodiumEyes via twitter and they gave permission to update the mod but I never got round to it. Nice work, love those ion rcs.
  5. Just tested something practically identical and it's all working very nicely.
  6. Just a thought but do you have Kerbal Alarm Clock? Even the new v2.7.7.0 seems to cause my game to crash while toolbar seems to work fine with other toolbar mods. Not totally sure yet as I am double checking everything but it's worth a try. Edit: Scratch that seems to be x64 only error that occurs repeatedly even once all mods removed :-/
  7. No probs glad to help. I didn't do more stations as I thought you might still want to alter the locations.
  8. Yep that was a strange design choice, I wish it just copied the tech tree from the mod plugin folder.
  9. Having a look at RemoteTech_Settings.cfg it seems you add STATION nodes in the GroundStations node. The location of a station is Latitude = ... Longitude = ... So the best way to find them out would be to put a ship where you want them and use mechjeb or engineer to get the data and add them to the file. Should be relatively simple. The only problem is the like AlphaAsh says the location is hard coded and the file made when you first start, hopefully there is a check for if the settings file is already there. Will do some tests. Well did a simple test and starting a game with remote tech then quit and edit the RemoteTech_Settings.cfg by adding the following node after the first STATION node STATION { Guid = 5105f5a9-d628-41c6-ad4b-21154e8fc489 Name = KC East Latitude = -5.790278000000000 Longitude = -83.406667000000 Height = 23 Body = 1 Antennas { ANTENNA { Omni = 7.5E+07 } } } Then started it up again and there is a com station at the Kerbin City communications mast...
  10. I agree. Your mods live on in my installs, with slight updates. Not archiving the useful mods on Spaceport was a frustrating and senseless thing to do. Especially for someone like me that enjoys modifying classic mods for my own use. You have every right as the creator of your content to control it anyway you want to.
  11. Not sure if it's been fixed in the latest upload but I made a comment on curse as I didn't see your forum post. The faring on this is named so it conflicts with large decoupler. Need to rename GameData\Orbital Sciences\Fairing\part.cfg name = decoupler1-2
×
×
  • Create New...