Jump to content

[1.11.x] Endurance (from Interstellar) Continued... (V1.13) 20th Feb 2021


JPLRepo

Recommended Posts

33 minutes ago, namreK haidebeJ said:

Is there a way to make the Ranger RCS less responsive? Turning on SAS will cause it to oscillate back and forth and lose control, and I can't dock it as the slightest button press sends it flying.

RCS and SAS (which mainly uses the reaction wheels) are separate things. But yes, both could be OP on that craft. You have these options to choose from:

  1. Throttle limit the RCS and turn down the wheel torque amount. There are sliders for these in the part's PAW.
  2. Press Caps Lock for fine control. This will make SAS and RCS ease in/out with their strengths. Applies to whatever the active vessel is. The steering input needles in the staging area turn from orange to cyan color.
  3. Write a quick and easy MM patch to nerf these so you have less need to remember to do 1 and 2.
Link to comment
Share on other sites

13 hours ago, JadeOfMaar said:

RCS and SAS (which mainly uses the reaction wheels) are separate things. But yes, both could be OP on that craft. You have these options to choose from:

  1. Throttle limit the RCS and turn down the wheel torque amount. There are sliders for these in the part's PAW.
  2. Press Caps Lock for fine control. This will make SAS and RCS ease in/out with their strengths. Applies to whatever the active vessel is. The steering input needles in the staging area turn from orange to cyan color.
  3. Write a quick and easy MM patch to nerf these so you have less need to remember to do 1 and 2.

I think the second option is closer to what I needed. Thanks!

Link to comment
Share on other sites

1 hour ago, VASMIR said:

Love your mod!  But whenever I take off with the Ranger or Viper, I run out of electric charge a few seconds after liftoff.  Any tips?

The main ship's fuel tanks and all the shuttles have two power source converters in them: A fuel cell and a Tokamak fusion. Use the tokamak fusion, don't use full throttle in atmosphere, make sure you have a FusionPellets supply, make sure you have fuel and oxidizer on the shuttle for the fuel cell (in case you do need to use full throttle in atmosphere).

Link to comment
Share on other sites

  • 2 months later...
  • 1 month later...
  • 3 weeks later...
  • 1 month later...
  • 4 months later...
On 12/17/2021 at 10:59 PM, JadeOfMaar said:

The main ship's fuel tanks and all the shuttles have two power source converters in them: A fuel cell and a Tokamak fusion. Use the tokamak fusion, don't use full throttle in atmosphere, make sure you have a FusionPellets supply, make sure you have fuel and oxidizer on the shuttle for the fuel cell (in case you do need to use full throttle in atmosphere).

Hey I've tried to use RTGs but it clearly dosen't work. I can only see Fuel Cell option but don't know how to increase flight time, can you either guide how to use tokamak fusion or  alternative option that I can try. Thanks in advance!

Edited by Dhruv
Link to comment
Share on other sites

12 hours ago, Dhruv said:

Hey I've tried to use RTGs but it clearly dosen't work. I can only see Fuel Cell option but don't know how to increase flight time, can you either guide how to use tokamak fusion or  alternative option that I can try. Thanks in advance!

RTGs only produce enough power to keep probe cores alive (and keep the vehicle from becoming uncontrollable when the batteries are emptied).

Consider an RTG only as strong as a laptop charger but you want to use that same charger to top up a capacitor to power every home appliance you have. It's incredibly impractical.

I don't think I need to give you a guide but I must assume you're having a problem that I've had to try to resolve before: The vehicles must be having their FusionPellets resource removed by some mod. According to one person it's (misbehavior of) B9 Part Switch but the problem revolves around that, Kerbalism and WBI Classic Stock Resources. WBI DSEV might also be involved as its presence is a factor in the power source patches. Let me know what your combination of these four mods is so I can try to reproduce  the problem.

Link to comment
Share on other sites

4 hours ago, JadeOfMaar said:

RTGs only produce enough power to keep probe cores alive (and keep the vehicle from becoming uncontrollable when the batteries are emptied).

Consider an RTG only as strong as a laptop charger but you want to use that same charger to top up a capacitor to power every home appliance you have. It's incredibly impractical.

I don't think I need to give you a guide but I must assume you're having a problem that I've had to try to resolve before: The vehicles must be having their FusionPellets resource removed by some mod. According to one person it's (misbehavior of) B9 Part Switch but the problem revolves around that, Kerbalism and WBI Classic Stock Resources. WBI DSEV might also be involved as its presence is a factor in the power source patches. Let me know what your combination of these four mods is so I can try to reproduce  the problem.

Right!

So I have a Good News and a Bad News

The Bad News is none of the mods that you mentioned will work, it only makes the experience more complicated and worse.  First let's get this clear: FusionPellets option is seen when using WBI Classic stock and Tokamak Fusion reactor option is seen when using B9 Part Switch. Using combination of the mods mentioned does not seem to work in any case!

The Good News is that I got the fix on how to increase the flight time WITHOUT USING MODS! The trick is that you need to mess with config files.

I'd suggest remove the mods that you are using already for FusionPellets and Tokamak Fusion Reactor. (your wish, if you don't want to)

First go to: GameData > Endurance > Patches > Power.cfg

Delete Power.cfg and If you don't want to delete mods for fusion pellets, Delete Power2.cfg 

Now Copy the following in NotePad and rename it Power.cfg and paste it where the original file was!

Quote

// Fuel Cells Only

// DSPS x300 Fuel Assembly
@PART[ENmountEndurance]
{
    MODULE
    {
        name = ModuleResourceConverter
        ConverterName = Fuel Cell
        StartActionName = Start Fuel Cell
        StopActionName = Stop Fuel Cell
        ToggleActionName = Toggle Fuel Cell
        FillAmount = 100
        AutoShutdown = false
        GeneratesHeat = false
        UseSpecialistBonus = false
        INPUT_RESOURCE
        {
            ResourceName = LiquidFuel
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        INPUT_RESOURCE
        {
            ResourceName = Oxidizer
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        OUTPUT_RESOURCE
        {
            ResourceName = ElectricCharge
            Ratio = 500
            DumpExcess = false
        }
    }
}
// Ranger
@PART[ENrangerBody]
{
    MODULE
    {
        name = ModuleResourceConverter
        ConverterName = Fuel Cell
        StartActionName = Start Fuel Cell
        StopActionName = Stop Fuel Cell
        ToggleActionName = Toggle Fuel Cell
        FillAmount = 100
        AutoShutdown = false
        GeneratesHeat = false
        UseSpecialistBonus = false
        INPUT_RESOURCE
        {
            ResourceName = LiquidFuel
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        INPUT_RESOURCE
        {
            ResourceName = Oxidizer
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        OUTPUT_RESOURCE
        {
            ResourceName = ElectricCharge
            Ratio = 500
            DumpExcess = false
        }
    }
}
// Lander
@PART[ENlanderBody]
{
    MODULE
    {
        name = ModuleResourceConverter
        ConverterName = Fuel Cell
        StartActionName = Start Fuel Cell
        StopActionName = Stop Fuel Cell
        ToggleActionName = Toggle Fuel Cell
        FillAmount = 100
        AutoShutdown = false
        GeneratesHeat = false
        UseSpecialistBonus = false
        INPUT_RESOURCE
        {
            ResourceName = LiquidFuel
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        INPUT_RESOURCE
        {
            ResourceName = Oxidizer
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        OUTPUT_RESOURCE
        {
            ResourceName = ElectricCharge
            Ratio = 500
            DumpExcess = false
        }
    }
}
// Mini-Ranger / Viper
@PART[ENminiRanger]
{
    MODULE
    {
        name = ModuleResourceConverter
        ConverterName = Fuel Cell
        StartActionName = Start Fuel Cell
        StopActionName = Stop Fuel Cell
        ToggleActionName = Toggle Fuel Cell
        FillAmount = 100
        AutoShutdown = false
        GeneratesHeat = false
        UseSpecialistBonus = false
        INPUT_RESOURCE
        {
            ResourceName = LiquidFuel
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        INPUT_RESOURCE
        {
            ResourceName = Oxidizer
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        OUTPUT_RESOURCE
        {
            ResourceName = ElectricCharge
            Ratio = 500
            DumpExcess = false
        }
    }
}

// MB-30 Experiment Cluster Package
@PART[ENcargoScience]
{
    MODULE
    {
        name = ModuleResourceConverter
        ConverterName = Fuel Cell
        StartActionName = Start Fuel Cell
        StopActionName = Stop Fuel Cell
        ToggleActionName = Toggle Fuel Cell
        FillAmount = 100
        AutoShutdown = false
        GeneratesHeat = false
        UseSpecialistBonus = false
        INPUT_RESOURCE
        {
            ResourceName = LiquidFuel
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        INPUT_RESOURCE
        {
            ResourceName = Oxidizer
            Ratio = 0.1
            FlowMode = STAGE_PRIORITY_FLOW
        }
        OUTPUT_RESOURCE
        {
            ResourceName = ElectricCharge
            Ratio = 500
            DumpExcess = false
        }
    }
}

For Power2.cfg  I will leave it for you. All you need to do is change FillAmount = 100 & Ratio's for Liquid Fuel = 0.1 and Oxidizer = 0.1 and Electric Charge = 500 and some extras! 

However you can keep the desired amount as per your wish to make missions more realistic

In order to remove fusionPellets completely you have to manually do some work and sadly I cannot guide you since I have no experience in it

 

But, If you need file for Power2.cfg let me know, I will edit and post it here

 

HAVE FUN & DON'T GO GENTLE INTO THAT GOOD NIGHT

Edited by Dhruv
Link to comment
Share on other sites

Amazing mod, i am thrilled. Is there a manual how to fly Ranger ?? I dont seem to get it, there is probably need to know TAC? But also how to manage electric charge. I am trying to fly on Kerbin but power goes off in a few seconds 

 

Alright, reading a few posts higher, there is the problem.

Also i think that game is removing parts from the ship, my rear engines in Ranger were missing and i had to place them manually.. weird.

Edited by papuchalk
Link to comment
Share on other sites

1 hour ago, papuchalk said:

Amazing mod, i am thrilled. Is there a manual how to fly Ranger ?? I dont seem to get it, there is probably need to know TAC? But also how to manage electric charge. I am trying to fly on Kerbin but power goes off in a few seconds 

 

Alright, reading a few posts higher, there is the problem.

Also i think that game is removing parts from the ship, my rear engines in Ranger were missing and i had to place them manually.. weird.

Flying Ranger is simple, make diffrent action groups for VTOL and Cooper engines, also don't forget to activate Fuel cells before firing up engines. Use SAS for stability. For power check out the fix I mentioned before your post

Link to comment
Share on other sites

The ship file must be corrupted, or the game is changing the Cooper engines somehow. I have to manually remove them from ship, and place new ones. Then i can active them in game.

Then i tried a flight, but oxidizer is gone very quickly, somehow the ratio 0,1 is not correct. Should i change it to 0,01 in order to make the oxidizer disappear less quickly??

 

Link to comment
Share on other sites

18 hours ago, papuchalk said:

The ship file must be corrupted, or the game is changing the Cooper engines somehow. I have to manually remove them from ship, and place new ones. Then i can active them in game.

Then i tried a flight, but oxidizer is gone very quickly, somehow the ratio 0,1 is not correct. Should i change it to 0,01 in order to make the oxidizer disappear less quickly??

 

I got your point on engine part. So basically, one of the engines flame out when electric charge is empty and the other keeps runnung, well i guess that is issue with the part

I found the fix to that as well. all you need to do is go to Power.cfg and find ""//  Ranger""

Below that change both ratios of liquid fuel and oxidizer to 0.01 like you said and electric charge to 1000. Now you will not run out of electric charge but your fuel and oxidizer will decrease slowly

Basically, what we are doing is producing more electric charge with less propellent consumption. It's all about trial and error and messing with .cfg file

Link to comment
Share on other sites

@JadeOfMaar the issue regarding flight time has been resolved although Ranger seems to be a bit difficult to control?! Its like even after solving issue regarding propellent one of the engines (Right one in particular) seems to give up and the ship starts spinning

Any idea why is it doing so....?

Link to comment
Share on other sites

  • 2 months later...

I bit of an issue I've been having for a while is poor performance I get from the Landers and Rangers. I can put together and fly the entire Endurance with a great framerate (40+), but the second I put on one Lander or Ranger, it drops into the 20s and 10s.
Please help, this nearly ruins my experience with this mod :(

Link to comment
Share on other sites

  • 2 months later...

Hi everyone, some of you may or may not know that I am a senior dev on KSP1 and now also on KSP2.
Unfortunately I am finding it harder and harder to find time to invest in my KSP1 mods as I would like to. Almost all of my efforts and time now go into KSP2.
That is not to say that I am giving up on my KSP1 mods, just that it is unlikely I am going to have much time to invest in looking at or fixing problems with them. I will find the time to fix some things but it is going to be a very slow road I'm afraid.
I will try my best, but cannot gaurantee anything. Instead - I am sinking all my time into KSP2 development in order to deliver all the exciting new stuff we can for KSP2 and opening up modding in KSP2 for everyone as well.
I hope you all understand. Thanks for your patience and support.

Link to comment
Share on other sites

Do what you must. Though I wanted to say that your mod is always on my list whenever I reinstall KSP and I tend to spend hours flying around Kerbin in the ranger. It's a great way for me to practice my vertical landing skills. :) 

Thanks for your hard-work and I wish you luck in continued development for KSP2!

Link to comment
Share on other sites

  • 4 months later...
  • 4 weeks later...

Can anyone help me fix the issue of my Tokamak just saying zero efficiency for no reason? I just tried to turn it on for the first time and it is just stuck like that. (Im also not sure how to post my log on the forum) 

Link to comment
Share on other sites

  • 3 weeks later...

Hello, I absolutely love this mod but I have one small issue with it, I do not understand the electric charge part of it. My engines arent on for 30 seconds before the electric charge depletes and im left stranded(this also occurred to me that this happens on all ships). Thanks for the help.

Edited by whytho
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...