Jump to content

KSP Interstellar Extended Continued Development Thread


FreeThinker

Recommended Posts

5 minutes ago, Nansuchao said:

I had the issue with the previous version of TweakScale.

Damn, I hoped it was working for both versions. Perhaps I still can, but for now I will recomment 2.2.10 as a minimum requirement

Link to comment
Share on other sites

10 hours ago, Nansuchao said:

it's really easy. In SPH/VAB select a probe as root part, scale the thermal generator to 1.250, attach a same size reactor and launch. You'll have correct mass in editor and negative mass in flight.

I can't seem to reproduce with Tweakscale 2.2.9. What version were you using?

Edited by FreeThinker
Link to comment
Share on other sites

6 minutes ago, FreeThinker said:

I can't seem to reproduce with Tweakscale 2.2.9. What version were you using?

As I said, with a previous version I had this issue, that is fixe with the developement one AND with the last version too.

Link to comment
Share on other sites

Just now, FreeThinker said:

well, I now tried Tweakscale v2.2.10, 2.2.9  and v2.2.7.2. In all cases KSPI-E appears to scale the part correctly. Could you make a screen dump where the problem occurs . It allows me to see what is wrong

I would like to help you, but now KSPI, Interstellar Fuel Switch and TweakScale have been updated and really I don't remember which combination had the issue ;.;

 

Link to comment
Share on other sites

9 minutes ago, Nansuchao said:

I would like to help you, but now KSPI, Interstellar Fuel Switch and TweakScale have been updated and really I don't remember which combination had the issue ;.;

 

Most likely you used an older version of KSPI-E in which it was not fully fixed. THis is good news, as it would have mend IFS had the same problem

Edited by FreeThinker
Link to comment
Share on other sites

1 minute ago, FreeThinker said:

Most likely you used an older version of KSPI-E in which it was not fully fixed. THis is good news, as it would have mend IFS had the same problem

I think that probably IFS wasn't updated at the moment, with the previous version of TweakScale. Just guessing, cause usually I have the last version of KSPI all the time. I still have the last one installed where every SSTO isn't working cause TTJ doesn't use air. :D

Link to comment
Share on other sites

@FreeThinker

While building a spaceplane, I realized that the Mk2 Expansion mod now includes a pre-cooler part, but KSPI-E doesn't have the required patches to make the pre-cooler or that mod's engines use the "FNModulePreecooler" or "ModuleSabreHeating" part modules.

I know that area would usually be the responsibility of @ABZB, however they're busy with RL stuff at the moment.

I took the opportunity to fix it myself, so I'll share my fixes here:

@PART[M2X_Precooler]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}

	!MODULE[ModuleResourceIntake]{}

	!RESOURCE[IntakeAir]{}
	!RESOURCE[LiquidFuel]{}
}

@PART[M2X_AugmentedRocket]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_ESTOC]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Jumpjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_MATTOCK]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Ramjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_AtomicJet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_SCRamjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Turbojet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Turboprop]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_HeavyVTOL]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}
}

While I was looking at the KSPI-E patch that does a similar thing for the stock engines and pre-cooler parts (WarpPlugin/Patches/rapier.cfg), I noticed an easily-corrected error on one of the lines in that file.

Instead of this:

@PART[turboFanEngine]
{
	MODULE
	{
		name = ModuleSabreHeating
	}		
}

It should look like this:

@PART[turboFanEngine]:FOR[WarpPlugin]
{
	MODULE
	{
		name = ModuleSabreHeating
	}		
}
Link to comment
Share on other sites

14 minutes ago, SciMan said:

@FreeThinker

While building a spaceplane, I realized that the Mk2 Expansion mod now includes a pre-cooler part, but KSPI-E doesn't have the required patches to make the pre-cooler or that mod's engines use the "FNModulePreecooler" or "ModuleSabreHeating" part modules.

I know that area would usually be the responsibility of @ABZB, however they're busy with RL stuff at the moment.

I took the opportunity to fix it myself, so I'll share my fixes here:


@PART[M2X_Precooler]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}

	!MODULE[ModuleResourceIntake]{}

	!RESOURCE[IntakeAir]{}
	!RESOURCE[LiquidFuel]{}
}

@PART[M2X_AugmentedRocket]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_ESTOC]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Jumpjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_MATTOCK]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Ramjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_AtomicJet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_SCRamjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Turbojet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_Turboprop]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}
}

@PART[M2X_HeavyVTOL]:FOR[WarpPlugin]:HAS[Mk2Expansion]
{
	MODULE
	{
		name = FNModulePreecooler
	}

	MODULE
	{
		name = ModuleSabreHeating
	}
}

While I was looking at the KSPI-E patch that does a similar thing for the stock engines and pre-cooler parts (WarpPlugin/Patches/rapier.cfg), I noticed an easily-corrected error on one of the lines in that file.

Instead of this:


@PART[turboFanEngine]
{
	MODULE
	{
		name = ModuleSabreHeating
	}		
}

It should look like this:


@PART[turboFanEngine]:FOR[WarpPlugin]
{
	MODULE
	{
		name = ModuleSabreHeating
	}		
}

Thanks, I will include it in the next fix

Link to comment
Share on other sites

Version 1.8.17 for Kerbal Space Program 1.1.2

Released on 2016-05-11

  • Fixed ability of Thermal Turbo Jet and Nuclear Turbojet to function with Atmsphere
  • Included fixes for Mk3 Expansion Precoolers (credits go to SciMan)
  • Added KSPI-E support for Thermal Control Radiators (Credits Dante Montana)
Link to comment
Share on other sites

10 hours ago, FreeThinker said:

Mmm, so It doesn't work anymore? That too bad but I do not intend to fix it as there is another mod SolarSailNavigator , which has replaced it with an improved version also introduced a  Navigation tool, something KSPI never had.

 

Alright, at what version of Tweakscale did you have the weird floating problems?

Btw, could anyone confirm KSPI-E work on CKAN again?

I am using the latest version of tweak-scale. i downloaded it last night. v2.2.10
if you find a different version works for you, could you provide a link so i can test it out?

I REALLY NEED THESE OMEGA REACTORS TO WORK.

Link to comment
Share on other sites

1 hour ago, FreeThinker said:

Version 1.8.17 for Kerbal Space Program 1.1.2

Released on 2016-05-11

  • Fixed ability of Thermal Turbo Jet and Nuclear Turbojet to function with Atmsphere
  • Included fixes for Mk3 Expansion Precoolers (credits go to SciMan)
  • Added KSPI-E support for Thermal Control Radiators (Credits Dante Montana)

Just came here to say the thermal jet/rocket more or less seem to ignore your thrust selection entirely and kind of do what they want. So, all the stuff in interstellar is based on sound math right? I've been wanting to do a 'realistic' enterprise-style warp ship for a while and this is kinda inspiring me to do it. :D
Wanted to be able to SSTO in a realistic ship that i could take with me around the cosmos. Thermal jets and thrusters are like magic man. :)
My SSTO building skills are still a bit lacking but it looks like its entirely possible, even if I'm having issues making a orbit.

Link to comment
Share on other sites

Hello and thanks for the mod. Just a small request: By default, pressing the I key anywhere in the editor cause the Interstellar Thermal Mechanic Helper window to pop. Could this behavior be changed or the key made adjustable?

Link to comment
Share on other sites

Hello everyone, I have several questions about this mod:

1. What is the difference between stock LV-N and interstellar nuclear engines(candle and solid ntr nerva)? It seems that LV-N has better ISP, thrust and is cheaper if downscaled to the same mass in addition to producing less heat.

2. I can not use tweakscale with these engines or change mode/fuel type for these engines, only type of propellant. Is this the intended behaviour?

3. What is the point of using interstellar cryostats if I can use stock fuel tanks for the same fuel type, which do not require power in order to prevent propellant boiling off?

4. Would it be possible to upgrade thermal helper to work with stock heat system and components? It is not very clear how many radiators I need if I use stock LV-N engine. Also this engine(as well as other stock sources of heat) heat internal components directly without producing any waste heat, so again it is impossible to tell how to cool this thing.

I would appreciate if anyone can help me.

Link to comment
Share on other sites

39 minutes ago, Mine_Turtle said:

Hello everyone, I have several questions about this mod:

1. What is the difference between stock LV-N and interstellar nuclear engines(candle and solid ntr nerva)? It seems that LV-N has better ISP, thrust and is cheaper if downscaled to the same mass in addition to producing less heat.

2. I can not use tweakscale with these engines or change mode/fuel type for these engines, only type of propellant. Is this the intended behaviour?

3. What is the point of using interstellar cryostats if I can use stock fuel tanks for the same fuel type, which do not require power in order to prevent propellant boiling off?

4. Would it be possible to upgrade thermal helper to work with stock heat system and components? It is not very clear how many radiators I need if I use stock LV-N engine. Also this engine(as well as other stock sources of heat) heat internal components directly without producing any waste heat, so again it is impossible to tell how to cool this thing.

I would appreciate if anyone can help me.

1- the Interstellar candle and Nerva are lighter than the stock one, they have an actual reactor inside so they provide EC too and can use many different fuels with better ISP/Thrust than the stock one.

2- you can use TweakScale with most of these engines, in case you can't, there's something wrong on your side. 

3- once you install Interstellar Fuel Switch also the stock fuel tanks require EC with cryogenic propellant in order to avoid boil-off

4- for now the Thermal Helper just works with Waste Heat, so you don't need it for the stock Nerva. Also it needs some tweaking, it doesn't show the right amount of radiators every time.

Link to comment
Share on other sites

24 minutes ago, Nansuchao said:

1- the Interstellar candle and Nerva are lighter than the stock one, they have an actual reactor inside so they provide EC too and can use many different fuels with better ISP/Thrust than the stock one.

2- you can use TweakScale with most of these engines, in case you can't, there's something wrong on your side. 

3- once you install Interstellar Fuel Switch also the stock fuel tanks require EC with cryogenic propellant in order to avoid boil-off

4- for now the Thermal Helper just works with Waste Heat, so you don't need it for the stock Nerva. Also it needs some tweaking, it doesn't show the right amount of radiators every time.

Thank you for the quick reply.

1 - After a quick test in sandbox it seems using hydrogen as propellant nets greater isp than stock LV-N. So these engines can be more efficient(though harder to handle) than stock variant.

2 - Candle is not scalable at all, while nerva can be. However, there is still a problem with swap fuel/switch mode buttons as they do not work properly. By default those engines work on enriched uranium and I can change that by clicking on switch mode so that they work on plutonium. But the fuel slider stays the same - uranium and clicking on switch mode button again does not do anything. Changing modes and fuels on reactors works fine, the problem is only with these engines. I have the latest version of KSP-I and Fuel switch installed from CKAN.

3. I have fuel switch installed, and while I can change propellants for stock fuel tanks(oscar-b fuel tank to be specific) it does not show EC consumption to avoid boil off. I assume its is the problem with part description.

4. I have not played KSP for long time(since 0.23) so with the new heat system Thermal Helper is the only way for me to calculate amount of radiators to use. Stock LV-N does produce heat when firing however it is not possible to tell how much heat exactly without raw experiment.

Link to comment
Share on other sites

So when I build a rocket without any RCS port at all (but a Salyut 6 on top which got some) then the log is spammed with

Spoiler

RcsSounds Error OnUpdate: Argument is out of range.

Parameter name: index
 
(Filename: C:/buildslave/unity/build/artifacts/generated/common/runtime/UnityEngineDebugBindings.gen.cpp Line: 64)

 

Link to comment
Share on other sites

1 hour ago, Mine_Turtle said:

Thank you for the quick reply.

1 - After a quick test in sandbox it seems using hydrogen as propellant nets greater isp than stock LV-N. So these engines can be more efficient(though harder to handle) than stock variant.

2 - Candle is not scalable at all, while nerva can be. However, there is still a problem with swap fuel/switch mode buttons as they do not work properly. By default those engines work on enriched uranium and I can change that by clicking on switch mode so that they work on plutonium. But the fuel slider stays the same - uranium and clicking on switch mode button again does not do anything. Changing modes and fuels on reactors works fine, the problem is only with these engines. I have the latest version of KSP-I and Fuel switch installed from CKAN.

3. I have fuel switch installed, and while I can change propellants for stock fuel tanks(oscar-b fuel tank to be specific) it does not show EC consumption to avoid boil off. I assume its is the problem with part description.

4. I have not played KSP for long time(since 0.23) so with the new heat system Thermal Helper is the only way for me to calculate amount of radiators to use. Stock LV-N does produce heat when firing however it is not possible to tell how much heat exactly without raw experiment.

1- yes, Hydrogen has a beautiful ISP, but usually low thrust. You can have fun testing all the different performances of every different propellants.

2- candle is not intended to be scalable and you can't change the mode of reactors inside the engines, the error is that you can see the buttons, but they wouldn't be there.

3- usually you can see the EC requirements in editor on the right side of the selected part, right-clicking on it. Do you use some different fuel switch? That could be a problem

4- if you unlocked the Interstellar Nerva, trust me, you don't need the stock one no more... You can achieve better ISP/Thrust with the Onterstellar one. About radiators, the heat production of the stock one has been nerfed in the last two release, so unless you're using it on a small tiny probe for very very long burns you don't need radiators at all.

Link to comment
Share on other sites

Seems a lot of part .CFG definition files are empty which cause some error in the log:
 

Spoiler

 

[WRN 00:42:00.410] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Command\scienceModule\partAdvanced.cfg'.
[ERR 00:42:00.416] Error: Empty part config file

[WRN 00:42:00.416] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FlatRadiator\part.cfg'.
[ERR 00:42:00.416] Error: Empty part config file

[WRN 00:42:00.416] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FoldingRadiators\foldingRadLarge.cfg'.
[ERR 00:42:00.416] Error: Empty part config file

[WRN 00:42:00.416] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FoldingRadiators\foldingRadMed.cfg'.
[ERR 00:42:00.422] Error: Empty part config file

[WRN 00:42:00.422] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FoldingRadiators\foldingRadSmall.cfg'.
[ERR 00:42:00.422] Error: Empty part config file

[WRN 00:42:00.422] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\HeatRadiator\radiator1.cfg'.
[ERR 00:42:00.423] Error: Empty part config file

[WRN 00:42:00.423] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\LargeFlatRadiator\radiator.cfg'.
[ERR 00:42:00.425] Error: Empty part config file

[WRN 00:42:00.425] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\MoltenSaltReactor\MoltenSaltReactorMk2.cfg'.
[WRN 00:42:00.426] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\MoltenSaltReactor\MoltenSaltReactorMk3.cfg'.
[ERR 00:42:00.426] Error: Empty part config file

[WRN 00:42:00.426] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\NuclearReactor1Sphere\GascoreReactorMk2.cfg'.
[ERR 00:42:00.427] Error: Empty part config file

[WRN 00:42:00.427] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\NuclearReactor1Sphere\GascoreReactorMk3.cfg'.
[ERR 00:42:00.428] Error: Empty part config file

[WRN 00:42:00.428] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\PebbleBed\LargeParticleBed.cfg'.
[ERR 00:42:00.428] Error: Empty part config file

[WRN 00:42:00.428] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\PebbleBed\LargeParticleBedUpgradeA.cfg'.
[ERR 00:42:00.428] Error: Empty part config file

[WRN 00:42:00.428] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\PebbleBed\LargeParticleBedUpgradeB.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadialHeatRadiator\radial.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadiatorPanels\radPanelEdge.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadiatorPanels\radPanelLg.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadiatorPanels\radPanelSm.cfg'.
[ERR 00:42:00.430] Error: Empty part config file

[WRN 00:42:00.430] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SmallFusionReactor\SmallFusionReactorUpgraded.cfg'.
[ERR 00:42:00.430] Error: Empty part config file

[WRN 00:42:00.430] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SmallFusionReactor\SmallFusionReactorUpgraded2.cfg'.
[ERR 00:42:00.430] Error: Empty part config file

[WRN 00:42:00.430] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SurfaceRadiator\radiator-surface-125-1.cfg'.
[ERR 00:42:00.431] Error: Empty part config file

[WRN 00:42:00.431] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SurfaceRadiator\radiator-surface-25-1.cfg'.
[ERR 00:42:00.431] Error: Empty part config file

[WRN 00:42:00.431] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\UmbrellaRadiator\part.cfg'.
[ERR 00:42:00.432] Error: Empty part config file

[WRN 00:42:00.432] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\WrapAroundRadiator\WrapAroundRadiator.cfg'.
[ERR 00:42:00.432] Error: Empty part config file

[WRN 00:42:00.432] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\WrapAroundRadiator\WrapAroundRadiatorHalf.cfg'.
[ERR 00:42:00.436] Error: Empty part config file

[WRN 00:42:00.436] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Engines\LightBulb\LightBulbMk2.cfg'.
[ERR 00:42:00.436] Error: Empty part config file

[WRN 00:42:00.436] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Engines\LightBulb\LightBulbMk3.cfg'.
[ERR 00:42:00.469] Error: Empty part config file

[WRN 00:42:00.469] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\microwaveReceiver\part_micro.cfg'.
[ERR 00:42:00.469] Error: Empty part config file

[WRN 00:42:00.469] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\MicrowaveThermalPowerReceiver\MTER-L.cfg'.
[ERR 00:42:00.470] Error: Empty part config file

[WRN 00:42:00.470] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\MicrowaveThermalPowerReceiver\MTER-S.cfg'.
[ERR 00:42:00.471] Error: Empty part config file

[WRN 00:42:00.471] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\radialAtmosphericScoop\scoop1.cfg'.
[ERR 00:42:00.472] Error: Empty part config file

[WRN 00:42:00.472] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Patches\FilterExtensions.cfg'.

 

 

Link to comment
Share on other sites

22 minutes ago, Galenmacil said:

Seems a lot of part .CFG definition files are empty which cause some error in the log:
 

  Reveal hidden contents

 

[WRN 00:42:00.410] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Command\scienceModule\partAdvanced.cfg'.
[ERR 00:42:00.416] Error: Empty part config file

[WRN 00:42:00.416] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FlatRadiator\part.cfg'.
[ERR 00:42:00.416] Error: Empty part config file

[WRN 00:42:00.416] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FoldingRadiators\foldingRadLarge.cfg'.
[ERR 00:42:00.416] Error: Empty part config file

[WRN 00:42:00.416] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FoldingRadiators\foldingRadMed.cfg'.
[ERR 00:42:00.422] Error: Empty part config file

[WRN 00:42:00.422] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\FoldingRadiators\foldingRadSmall.cfg'.
[ERR 00:42:00.422] Error: Empty part config file

[WRN 00:42:00.422] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\HeatRadiator\radiator1.cfg'.
[ERR 00:42:00.423] Error: Empty part config file

[WRN 00:42:00.423] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\LargeFlatRadiator\radiator.cfg'.
[ERR 00:42:00.425] Error: Empty part config file

[WRN 00:42:00.425] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\MoltenSaltReactor\MoltenSaltReactorMk2.cfg'.
[WRN 00:42:00.426] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\MoltenSaltReactor\MoltenSaltReactorMk3.cfg'.
[ERR 00:42:00.426] Error: Empty part config file

[WRN 00:42:00.426] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\NuclearReactor1Sphere\GascoreReactorMk2.cfg'.
[ERR 00:42:00.427] Error: Empty part config file

[WRN 00:42:00.427] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\NuclearReactor1Sphere\GascoreReactorMk3.cfg'.
[ERR 00:42:00.428] Error: Empty part config file

[WRN 00:42:00.428] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\PebbleBed\LargeParticleBed.cfg'.
[ERR 00:42:00.428] Error: Empty part config file

[WRN 00:42:00.428] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\PebbleBed\LargeParticleBedUpgradeA.cfg'.
[ERR 00:42:00.428] Error: Empty part config file

[WRN 00:42:00.428] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\PebbleBed\LargeParticleBedUpgradeB.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadialHeatRadiator\radial.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadiatorPanels\radPanelEdge.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadiatorPanels\radPanelLg.cfg'.
[ERR 00:42:00.429] Error: Empty part config file

[WRN 00:42:00.429] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\RadiatorPanels\radPanelSm.cfg'.
[ERR 00:42:00.430] Error: Empty part config file

[WRN 00:42:00.430] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SmallFusionReactor\SmallFusionReactorUpgraded.cfg'.
[ERR 00:42:00.430] Error: Empty part config file

[WRN 00:42:00.430] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SmallFusionReactor\SmallFusionReactorUpgraded2.cfg'.
[ERR 00:42:00.430] Error: Empty part config file

[WRN 00:42:00.430] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SurfaceRadiator\radiator-surface-125-1.cfg'.
[ERR 00:42:00.431] Error: Empty part config file

[WRN 00:42:00.431] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\SurfaceRadiator\radiator-surface-25-1.cfg'.
[ERR 00:42:00.431] Error: Empty part config file

[WRN 00:42:00.431] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\UmbrellaRadiator\part.cfg'.
[ERR 00:42:00.432] Error: Empty part config file

[WRN 00:42:00.432] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\WrapAroundRadiator\WrapAroundRadiator.cfg'.
[ERR 00:42:00.432] Error: Empty part config file

[WRN 00:42:00.432] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Electrical\WrapAroundRadiator\WrapAroundRadiatorHalf.cfg'.
[ERR 00:42:00.436] Error: Empty part config file

[WRN 00:42:00.436] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Engines\LightBulb\LightBulbMk2.cfg'.
[ERR 00:42:00.436] Error: Empty part config file

[WRN 00:42:00.436] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Engines\LightBulb\LightBulbMk3.cfg'.
[ERR 00:42:00.469] Error: Empty part config file

[WRN 00:42:00.469] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\microwaveReceiver\part_micro.cfg'.
[ERR 00:42:00.469] Error: Empty part config file

[WRN 00:42:00.469] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\MicrowaveThermalPowerReceiver\MTER-L.cfg'.
[ERR 00:42:00.470] Error: Empty part config file

[WRN 00:42:00.470] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\MicrowaveThermalPowerReceiver\MTER-S.cfg'.
[ERR 00:42:00.471] Error: Empty part config file

[WRN 00:42:00.471] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Parts\Utility\radialAtmosphericScoop\scoop1.cfg'.
[ERR 00:42:00.472] Error: Empty part config file

[WRN 00:42:00.472] Cannot create config from file 'G:\Kerbal Space Program 1.1.2\GameData\WarpPlugin\Patches\FilterExtensions.cfg'.

 

 

They are not realy a problem. I left them intentional empty to override the old files. This prevents the problem that parts would not work correctly. Eventually I remove them

Edited by FreeThinker
Link to comment
Share on other sites

OK. I see. Here a few other errors related to models and textures:

Spoiler

 

[ERR 00:42:31.293] Texture 'WarpPlugin/PlasmaMedGlow' not found!

[ERR 00:42:31.737] Texture 'WarpPlugin/Parts/Engines/MagneticNozzle3/pulsejete' not found!

[ERR 00:42:31.844] Texture 'WarpPlugin/Parts/Engines/RCSTank/cstSolar' not found!

[LOG 00:42:31.849] Load(Model): WarpPlugin/Parts/Engines/RetractablerRcsBlock/model
[LOG 00:42:31.856] Load(Model): WarpPlugin/Parts/Engines/RetractablerRcsCurved/modelCurved
[LOG 00:42:31.865] Load(Model): WarpPlugin/Parts/Engines/solarSail/Model
[LOG 00:42:31.876] Load(Model): WarpPlugin/Parts/Engines/ThermalLaunchNozzle/SSME
[LOG 00:42:31.884] Load(Model): WarpPlugin/Parts/Engines/ThermalRocketNozzle/model
[LOG 00:42:31.890] Load(Model): WarpPlugin/Parts/Engines/ThermalTurbojet/jet
[LOG 00:42:31.899] Load(Model): WarpPlugin/Parts/Engines/Tokamak/Supernova
[LOG 00:42:31.928] Load(Model): WarpPlugin/Parts/Engines/Vasimr/model
[LOG 00:42:31.936] Load(Model): WarpPlugin/Parts/Engines/vista/model
[LOG 00:42:31.946] Load(Model): WarpPlugin/Parts/FuelTank/AntimatterTanks1/smalltank
[LOG 00:42:31.952] Load(Model): WarpPlugin/Parts/FuelTank/AntimatterTanks2/bigtank
[LOG 00:42:31.960] Load(Model): WarpPlugin/Parts/FuelTank/DeuteriumCryostat/model
[LOG 00:42:31.973] Load(Model): WarpPlugin/Parts/FuelTank/HeliumCryostat/model
[LOG 00:42:31.984] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarFuelTank/TPcone2m-White
[LOG 00:42:31.992] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarFuelTank/TPtank2mL00469-White
[LOG 00:42:32.000] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarFuelTank/TPtank2mL01875-Nuke
[LOG 00:42:32.007] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarFuelTank/TPtank2mL03750-Nuke
[LOG 00:42:32.015] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarFuelTank/TPtank2mL05625-White
[LOG 00:42:32.024] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarFuelTank/TPtank2mL11250-White
[LOG 00:42:32.034] Load(Model): WarpPlugin/Parts/FuelTank/InterstellarSphereTank/sphere
[LOG 00:42:32.041] Load(Model): WarpPlugin/Parts/FuelTank/LiquidOnlyFuelTanks/model
[LOG 00:42:32.047] Load(Model): WarpPlugin/Parts/FuelTank/LongWaterTank/tank
[LOG 00:42:32.053] Load(Model): WarpPlugin/Parts/FuelTank/NBconeTank3m/model
[LOG 00:42:32.059] Load(Model): WarpPlugin/Parts/FuelTank/NitrogenCryostat/model
[LOG 00:42:32.072] Load(Model): WarpPlugin/Parts/FuelTank/RVAntimatter/model
[LOG 00:42:32.081] Load(Model): WarpPlugin/Parts/FuelTank/RVDeutTrit/model
[LOG 00:42:32.091] Load(Model): WarpPlugin/Parts/FuelTank/RVHe3/model
[LOG 00:42:32.100] Load(Model): WarpPlugin/Parts/FuelTank/RVHexbor/model
[LOG 00:42:32.110] Load(Model): WarpPlugin/Parts/FuelTank/RVLithium/model
[LOG 00:42:32.119] Load(Model): WarpPlugin/Parts/FuelTank/RVThorium/model
[LOG 00:42:32.129] Load(Model): WarpPlugin/Parts/FuelTank/RVUranium/model
[LOG 00:42:32.138] Load(Model): WarpPlugin/Parts/FuelTank/RVUranium2/model
[LOG 00:42:32.148] Load(Model): WarpPlugin/Parts/FuelTank/RVUraniumTetFl/model
[LOG 00:42:32.158] Load(Model): WarpPlugin/Parts/FuelTank/WrapperTank/WrapperTank
[LOG 00:42:32.164] Load(Model): WarpPlugin/Parts/Radiators/ConformalRadiator/radiator-conformal-3
[LOG 00:42:32.174] Load(Model): WarpPlugin/Parts/Radiators/FlatRadiator/model
[LOG 00:42:32.181] Load(Model): WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadLarge
[LOG 00:42:32.199] Load(Model): WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadMed
[LOG 00:42:32.209] Load(Model): WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadSmall
[LOG 00:42:32.219] Load(Model): WarpPlugin/Parts/Radiators/LargeFlatRadiator/model
[LOG 00:42:32.224] Load(Model): WarpPlugin/Parts/Radiators/LongFixedRadiator/radiator-fixed-4
[LOG 00:42:32.240] Load(Model): WarpPlugin/Parts/Radiators/RadialHeatRadiator/rheat
[LOG 00:42:32.245] Load(Model): WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelEdge
[LOG 00:42:32.250] Load(Model): WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelLg
[LOG 00:42:32.261] Load(Model): WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelSm
[LOG 00:42:32.267] Load(Model): WarpPlugin/Parts/Radiators/SemiFoldingRadiator/Model
[LOG 00:42:32.273] Load(Model): WarpPlugin/Parts/Radiators/SurfaceRadiator/radiator-surface-125-1
[LOG 00:42:32.279] Load(Model): WarpPlugin/Parts/Radiators/SurfaceRadiator/radiator-surface-25-1
[LOG 00:42:32.285] Load(Model): WarpPlugin/Parts/Radiators/UmbrellaRadiator/model
[LOG 00:42:32.324] Load(Model): WarpPlugin/Parts/Radiators/WideFixedRadiator/radiator-fixed-3
[LOG 00:42:32.333] Load(Model): WarpPlugin/Parts/Radiators/WrapAroundRadiator/RadialLarge
[LOG 00:42:32.341] Load(Model): WarpPlugin/Parts/Radiators/WrapAroundRadiator/RadialSmall
[LOG 00:42:32.348] Load(Model): WarpPlugin/Parts/Science/ParticleAcceleratorexperiment/model
[ERR 00:42:32.427] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[ERR 00:42:32.486] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[LOG 00:42:32.486] Load(Model): WarpPlugin/Parts/Science/Telescope/model

 

 

And others related to Module Manager patches:

Spoiler

 

[LOG 00:42:47.490] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_Precooler]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_Precooler]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_Precooler]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_Precooler]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = FNModulePreecooler
    }
    MODULE
    {
      name = ModuleSabreHeating
    }
    !MODULE[ModuleResourceIntake]
    {
    }
    !RESOURCE[IntakeAir]
    {
    }
    !RESOURCE[LiquidFuel]
    {
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_AugmentedRocket]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_AugmentedRocket]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_AugmentedRocket]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_AugmentedRocket]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_ESTOC]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_ESTOC]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_ESTOC]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_ESTOC]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_Jumpjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_Jumpjet]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_Jumpjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_Jumpjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = FNModulePreecooler
    }
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_MATTOCK]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_MATTOCK]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_MATTOCK]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_MATTOCK]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_Ramjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_Ramjet]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_Ramjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_Ramjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_AtomicJet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_AtomicJet]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_AtomicJet]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_AtomicJet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_SCRamjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_SCRamjet]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_SCRamjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_SCRamjet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_Turbojet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_Turbojet]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_Turbojet]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_Turbojet]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_Turboprop]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0
[LOG 00:42:47.491] [ModuleManager] @PART[M2X_Turboprop]:FOR[WarpPlugin]:HAS[Mk2Expansion][@PART[M2X_Turboprop]:FOR[WarpPlugin]:HAS[Mk2Expansion]]
  @PART[M2X_Turboprop]:FOR[WarpPlugin]:HAS[Mk2Expansion]
  {
    MODULE
    {
      name = FNModulePreecooler
    }
    MODULE
    {
      name = ModuleSabreHeating
    }
  }


[LOG 00:42:47.491] [ModuleManager] Exception while processing node : WarpPlugin/Patches/Mk2Expansion/@PART[M2X_HeavyVTOL]:FOR[WarpPlugin]:HAS[Mk2Expansion]
System.ArgumentOutOfRangeException: Cannot be negative.
Parameter name: length
  at System.String.Substring (Int32 startIndex, Int32 length) [0x00000] in <filename unknown>:0
  at ModuleManager.MMPatchLoader+<ApplyPatch>d__62.MoveNext () [0x00000] in <filename unknown>:0

 

[LOG 00:43:43.533] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/InlineRCS/InlineRCS/ArcjetInlineRcs'
[ERR 00:43:43.543] Cannot find a PartModule of typename 'ModuleCrossFeed'

[LOG 00:43:43.578] PartLoader: Part 'WarpPlugin/Parts/Engines/InlineRCS/InlineRCS/ArcjetInlineRcs' has no database record. Creating.
[LOG 00:43:43.596] DragCubeSystem: Creating drag cubes for part 'ArcjetInlineRcs'
[LOG 00:43:43.624] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/KANDL/KANDL/KspiNuclearCandle'
[LOG 00:43:43.671] PartLoader: Part 'WarpPlugin/Parts/Engines/KANDL/KANDL/KspiNuclearCandle' has no database record. Creating.
[LOG 00:43:43.691] DragCubeSystem: Creating drag cubes for part 'KspiNuclearCandle'
[LOG 00:43:43.884] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/LANTR/LANTR/KspiLANTRUpgrade'
[LOG 00:43:43.928] PartLoader: Part 'WarpPlugin/Parts/Engines/LANTR/LANTR/KspiLANTRUpgrade' has no database record. Creating.
[LOG 00:43:43.947] DragCubeSystem: Creating drag cubes for part 'KspiLANTRUpgrade'
[LOG 00:43:44.015] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/LANTR/NERVA/KspiLANTR'
[LOG 00:43:44.062] PartLoader: Part 'WarpPlugin/Parts/Engines/LANTR/NERVA/KspiLANTR' has no database record. Creating.
[LOG 00:43:44.082] DragCubeSystem: Creating drag cubes for part 'KspiLANTR'
[LOG 00:43:44.152] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/LightBulb/LightBulb/KspiLightbulb'
[LOG 00:43:44.205] PartLoader: Part 'WarpPlugin/Parts/Engines/LightBulb/LightBulb/KspiLightbulb' has no database record. Creating.
[LOG 00:43:44.228] DragCubeSystem: Part 'KspiLightbulb' has defined a procedural drag cube setup
[LOG 00:43:44.239] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/LinearRCS/linearRCS/ArcjetLinearRcs'
[LOG 00:43:44.262] PartLoader: Part 'WarpPlugin/Parts/Engines/LinearRCS/linearRCS/ArcjetLinearRcs' has no database record. Creating.
[LOG 00:43:44.271] DragCubeSystem: Creating drag cubes for part 'ArcjetLinearRcs'
[LOG 00:43:44.315] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MagneticNozzle/MagneticNoozle/TweakableMagneticNozzle'
[LOG 00:43:44.339] PartLoader: Part 'WarpPlugin/Parts/Engines/MagneticNozzle/MagneticNoozle/TweakableMagneticNozzle' has no database record. Creating.
[LOG 00:43:44.348] DragCubeSystem: Creating drag cubes for part 'TweakableMagneticNozzle'
[LOG 00:43:44.388] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MagneticNozzle2/MagneticNozzle2/KspiMagneticNozzle'
[LOG 00:43:44.417] PartLoader: Part 'WarpPlugin/Parts/Engines/MagneticNozzle2/MagneticNozzle2/KspiMagneticNozzle' has no database record. Creating.
[LOG 00:43:44.429] DragCubeSystem: Creating drag cubes for part 'KspiMagneticNozzle'
[LOG 00:43:44.485] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MagneticNozzle3/MagneticNozzle3/KspiMagneticNozzle3'
[LOG 00:43:44.515] PartLoader: Part 'WarpPlugin/Parts/Engines/MagneticNozzle3/MagneticNozzle3/KspiMagneticNozzle3' has no database record. Creating.
[LOG 00:43:44.528] DragCubeSystem: Part 'KspiMagneticNozzle3' has defined a procedural drag cube setup
[LOG 00:43:44.537] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MethaneEngine/part/FNMethaneEngine'
[LOG 00:43:44.562] PartLoader: Part 'WarpPlugin/Parts/Engines/MethaneEngine/part/FNMethaneEngine' has no database record. Creating.
[LOG 00:43:44.573] DragCubeSystem: Creating drag cubes for part 'FNMethaneEngine'
[LOG 00:43:44.601] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MIFEngine/MIFEngine/KspiMIFEngine'
[LOG 00:43:44.648] PartLoader: Part 'WarpPlugin/Parts/Engines/MIFEngine/MIFEngine/KspiMIFEngine' has no database record. Creating.
[LOG 00:43:44.668] DragCubeSystem: Part 'KspiMIFEngine' has defined a procedural drag cube setup
[LOG 00:43:44.680] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MPD/InterstellarPlasmaThruster/InterstellarPlasmaThruster'
[LOG 00:43:44.811] PartLoader: Part 'WarpPlugin/Parts/Engines/MPD/InterstellarPlasmaThruster/InterstellarPlasmaThruster' has no database record. Creating.
[LOG 00:43:44.823] DragCubeSystem: Creating drag cubes for part 'InterstellarPlasmaThruster'
[LOG 00:43:44.857] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/MPD/InterstellarPlasmaThrusterVacuum/InterstellarPlasmaThrusterUpgraded'
[ERR 00:43:44.863] Cannot find a PartModule of typename 'ModuleEngineFX'

[LOG 00:43:44.882] PartLoader: Part 'WarpPlugin/Parts/Engines/MPD/InterstellarPlasmaThrusterVacuum/InterstellarPlasmaThrusterUpgraded' has no database record. Creating.
[LOG 00:43:44.892] DragCubeSystem: Creating drag cubes for part 'InterstellarPlasmaThrusterUpgraded'
[LOG 00:43:44.954] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/NBrcs5block/part/InterstellarRcs5block'
[LOG 00:43:44.976] PartLoader: Part 'WarpPlugin/Parts/Engines/NBrcs5block/part/InterstellarRcs5block' has no database record. Creating.
[LOG 00:43:44.986] DragCubeSystem: Creating drag cubes for part 'InterstellarRcs5block'
[LOG 00:43:45.011] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/NBrcsCorner/part/InterstellarRcsCorner'
[LOG 00:43:45.034] PartLoader: Part 'WarpPlugin/Parts/Engines/NBrcsCorner/part/InterstellarRcsCorner' has no database record. Creating.
[LOG 00:43:45.043] DragCubeSystem: Creating drag cubes for part 'InterstellarRcsCorner'
[LOG 00:43:45.068] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/NuclearRamJet/NuclearRamJet/KspiNuclearRamjet'
[ERR 00:43:45.082] Invalid float value! Field skinInternalConductionMult, value 4; on object of type FNPlugin.ThermalNozzleController

[ERR 00:43:45.082] Invalid float value! Field skinThermalMassModifier, value 1; on object of type FNPlugin.ThermalNozzleController

[LOG 00:43:45.114] PartLoader: Part 'WarpPlugin/Parts/Engines/NuclearRamJet/NuclearRamJet/KspiNuclearRamjet' has no database record. Creating.
[LOG 00:43:45.132] DragCubeSystem: Creating drag cubes for part 'KspiNuclearRamjet'
[LOG 00:43:45.159] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/NuclearTurbojet/NuclearTurboJet/KspiNuclearJetEngine'
[ERR 00:43:45.173] Invalid float value! Field skinInternalConductionMult, value 4; on object of type FNPlugin.ThermalNozzleController

[ERR 00:43:45.173] Invalid float value! Field skinThermalMassModifier, value 1; on object of type FNPlugin.ThermalNozzleController

[ERR 00:43:45.173] Invalid float value! Field thermalMassModifier, value 1; on object of type FNPlugin.ThermalNozzleController

[LOG 00:43:45.209] PartLoader: Part 'WarpPlugin/Parts/Engines/NuclearTurbojet/NuclearTurboJet/KspiNuclearJetEngine' has no database record. Creating.
[LOG 00:43:45.229] DragCubeSystem: Creating drag cubes for part 'KspiNuclearJetEngine'
[LOG 00:43:45.260] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/NuclearTurbojet/NuclearTurboJetUpgraded/KspiNuclearJetEngineUpgraded'
[WRN 00:43:45.263] [ShipConstruct for KspiNuclearJetEngineUpgraded]: part cost (12500.0) is less than the cost of its resources (21933.7)
[LOG 00:43:45.305] PartLoader: Part 'WarpPlugin/Parts/Engines/NuclearTurbojet/NuclearTurboJetUpgraded/KspiNuclearJetEngineUpgraded' has no database record. Creating.
[LOG 00:43:45.325] DragCubeSystem: Creating drag cubes for part 'KspiNuclearJetEngineUpgraded'
[LOG 00:43:45.353] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/RCSTank/serviceModule/Interstellar_RCS_Tank'
[LOG 00:43:45.402] PartLoader: Part 'WarpPlugin/Parts/Engines/RCSTank/serviceModule/Interstellar_RCS_Tank' has no database record. Creating.
[LOG 00:43:45.424] DragCubeSystem: Creating drag cubes for part 'Interstellar.RCS.Tank'
[LOG 00:43:45.483] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/RCSTank/serviceModule2/InterstellarRcsTank'
[LOG 00:43:45.531] PartLoader: Part 'WarpPlugin/Parts/Engines/RCSTank/serviceModule2/InterstellarRcsTank' has no database record. Creating.
[LOG 00:43:45.552] DragCubeSystem: Creating drag cubes for part 'InterstellarRcsTank'
[LOG 00:43:45.578] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/RetractablerRcsBlock/part/InterstellarRetractableRcsBlockCurvedFlat'
[LOG 00:43:45.703] PartLoader: Part 'WarpPlugin/Parts/Engines/RetractablerRcsBlock/part/InterstellarRetractableRcsBlockCurvedFlat' has no database record. Creating.
[LOG 00:43:45.712] DragCubeSystem: Creating drag cubes for part 'InterstellarRetractableRcsBlockCurvedFlat'
[LOG 00:43:45.739] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/RetractablerRcsCurved/partCurved/InterstellarRetractableRcsBlockCurved'
[LOG 00:43:45.761] PartLoader: Part 'WarpPlugin/Parts/Engines/RetractablerRcsCurved/partCurved/InterstellarRetractableRcsBlockCurved' has no database record. Creating.
[LOG 00:43:45.771] DragCubeSystem: Creating drag cubes for part 'InterstellarRetractableRcsBlockCurved'
[LOG 00:43:45.820] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/solarSail/part/SM-Solar-Sail'
[LOG 00:43:45.836] PartLoader: Part 'WarpPlugin/Parts/Engines/solarSail/part/SM-Solar-Sail' has no database record. Creating.
[LOG 00:43:45.842] DragCubeSystem: Creating drag cubes for part 'SM-Solar-Sail'
[LOG 00:43:45.874] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/ThermalLaunchNozzle/ThermalLaunchNozzle/ThermalLaunchNozzle'
[LOG 00:43:45.913] PartLoader: Part 'WarpPlugin/Parts/Engines/ThermalLaunchNozzle/ThermalLaunchNozzle/ThermalLaunchNozzle' has no database record. Creating.
[LOG 00:43:45.929] DragCubeSystem: Creating drag cubes for part 'ThermalLaunchNozzle'
[LOG 00:43:46.004] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/ThermalRocketNozzle/ThermalRocketNozzle/TweakableThermalRocketNozzle'
[LOG 00:43:46.037] PartLoader: Part 'WarpPlugin/Parts/Engines/ThermalRocketNozzle/ThermalRocketNozzle/TweakableThermalRocketNozzle' has no database record. Creating.
[LOG 00:43:46.052] DragCubeSystem: Creating drag cubes for part 'TweakableThermalRocketNozzle'
[LOG 00:43:46.109] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/ThermalRocketNozzle/ThermalRocketRamjet/Kspi_ThermalRocketNozzle'
[LOG 00:43:46.143] PartLoader: Part 'WarpPlugin/Parts/Engines/ThermalRocketNozzle/ThermalRocketRamjet/Kspi_ThermalRocketNozzle' has no database record. Creating.
[LOG 00:43:46.157] DragCubeSystem: Creating drag cubes for part 'Kspi.ThermalRocketNozzle'
[LOG 00:43:46.215] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/ThermalTurbojet/ThermalTurboJet/TweakableThermalTurbojet'
[LOG 00:43:46.247] PartLoader: Part 'WarpPlugin/Parts/Engines/ThermalTurbojet/ThermalTurboJet/TweakableThermalTurbojet' has no database record. Creating.
[LOG 00:43:46.261] DragCubeSystem: Creating drag cubes for part 'TweakableThermalTurbojet'
[LOG 00:43:46.289] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/ThermalTurbojet/ThermalTurboJetUpgraded/TweakableThermalTurbojetUpgraded'
[LOG 00:43:46.320] PartLoader: Part 'WarpPlugin/Parts/Engines/ThermalTurbojet/ThermalTurboJetUpgraded/TweakableThermalTurbojetUpgraded' has no database record. Creating.
[LOG 00:43:46.333] DragCubeSystem: Creating drag cubes for part 'TweakableThermalTurbojetUpgraded'
[LOG 00:43:46.360] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/Tokamak/Tokamak/KspiSupernova'
[ERR 00:43:46.361] PartCompiler: Cannot replace texture as cannot find texture 'Diffuse' to replace

[LOG 00:43:46.409] PartLoader: Part 'WarpPlugin/Parts/Engines/Tokamak/Tokamak/KspiSupernova' has no database record. Creating.
[LOG 00:43:46.430] DragCubeSystem: Part 'KspiSupernova' has defined a procedural drag cube setup
[LOG 00:43:46.442] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/Vasimr/Vasimr/KSPIE-VASIMR'
[LOG 00:43:46.471] PartLoader: Part 'WarpPlugin/Parts/Engines/Vasimr/Vasimr/KSPIE-VASIMR' has no database record. Creating.
[LOG 00:43:46.482] DragCubeSystem: Creating drag cubes for part 'KSPIE-VASIMR'
[LOG 00:43:46.521] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/vista/part/vista'
[LOG 00:43:46.549] PartLoader: Part 'WarpPlugin/Parts/Engines/vista/part/vista' has no database record. Creating.
[LOG 00:43:46.665] DragCubeSystem: Creating drag cubes for part 'vista'
[LOG 00:43:46.761] PartLoader: Compiling Part 'WarpPlugin/Parts/Engines/vista/Vista/VISTAEngine'
[LOG 00:43:46.795] PartLoader: Part 'WarpPlugin/Parts/Engines/vista/Vista/VISTAEngine' has no database record. Creating.
[LOG 00:43:46.808] DragCubeSystem: Creating drag cubes for part 'VISTAEngine'
[LOG 00:43:46.854] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/AntimatterTanks1/125/AntimatterTank125'
[LOG 00:43:46.872] PartLoader: Part 'WarpPlugin/Parts/FuelTank/AntimatterTanks1/125/AntimatterTank125' has no database record. Creating.
[LOG 00:43:46.878] DragCubeSystem: Creating drag cubes for part 'AntimatterTank125'
[LOG 00:43:46.909] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/AntimatterTanks2/250/AntimatterTank250'
[LOG 00:43:46.926] PartLoader: Part 'WarpPlugin/Parts/FuelTank/AntimatterTanks2/250/AntimatterTank250' has no database record. Creating.
[LOG 00:43:46.933] DragCubeSystem: Creating drag cubes for part 'AntimatterTank250'
[LOG 00:43:46.960] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/DeuteriumCryostat/part/FNDeuteriumCryostat'
[LOG 00:43:46.986] PartLoader: Part 'WarpPlugin/Parts/FuelTank/DeuteriumCryostat/part/FNDeuteriumCryostat' has no database record. Creating.
[LOG 00:43:46.998] DragCubeSystem: Creating drag cubes for part 'FNDeuteriumCryostat'
[LOG 00:43:47.040] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/HeliumCryostat/part/FNHeliumCryostat'
[LOG 00:43:47.073] PartLoader: Part 'WarpPlugin/Parts/FuelTank/HeliumCryostat/part/FNHeliumCryostat' has no database record. Creating.
[LOG 00:43:47.087] DragCubeSystem: Creating drag cubes for part 'FNHeliumCryostat'
[LOG 00:43:47.120] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-NoseCone/InterstellarFuelTank-NoseCone'
[LOG 00:43:47.151] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-NoseCone/InterstellarFuelTank-NoseCone' has no database record. Creating.
[LOG 00:43:47.164] DragCubeSystem: Creating drag cubes for part 'InterstellarFuelTank-NoseCone'
[LOG 00:43:47.195] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-Wedge/InterstellarFuelTank_Wedge'
[ERR 00:43:47.200] Cannot find a PartModule of typename 'KASModuleGrab'

[ERR 00:43:47.213] Cannot find a PartModule of typename 'FNPropellantControl'

[LOG 00:43:47.236] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-Wedge/InterstellarFuelTank_Wedge' has no database record. Creating.
[LOG 00:43:47.255] DragCubeSystem: Creating drag cubes for part 'InterstellarFuelTank.Wedge'
[LOG 00:43:47.282] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-16/InterstellarFuelTank-X200-16'
[LOG 00:43:47.321] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-16/InterstellarFuelTank-X200-16' has no database record. Creating.
[LOG 00:43:47.338] DragCubeSystem: Part 'InterstellarFuelTank-X200-16' has defined a procedural drag cube setup
[LOG 00:43:47.347] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-32/InterstellarFuelTank-X200-32'
[LOG 00:43:47.385] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-32/InterstellarFuelTank-X200-32' has no database record. Creating.
[LOG 00:43:47.402] DragCubeSystem: Part 'InterstellarFuelTank-X200-32' has defined a procedural drag cube setup
[LOG 00:43:47.411] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-4/InterstellarFuelTank-X200-4'
[LOG 00:43:47.451] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-4/InterstellarFuelTank-X200-4' has no database record. Creating.
[LOG 00:43:47.574] DragCubeSystem: Part 'InterstellarFuelTank-X200-4' has defined a procedural drag cube setup
[LOG 00:43:47.591] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-48/InterstellarFuelTank-X200-48'
[LOG 00:43:47.630] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-48/InterstellarFuelTank-X200-48' has no database record. Creating.
[LOG 00:43:47.647] DragCubeSystem: Part 'InterstellarFuelTank-X200-48' has defined a procedural drag cube setup
[LOG 00:43:47.665] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-96/InterstellarFuelTank-X200-96'
[LOG 00:43:47.703] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarFuelTank/InterstellarFuelTank-X200-96/InterstellarFuelTank-X200-96' has no database record. Creating.
[LOG 00:43:47.720] DragCubeSystem: Part 'InterstellarFuelTank-X200-96' has defined a procedural drag cube setup
[LOG 00:43:47.729] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/InterstellarSphereTank/InterstellarSphereTank/InterstellarSphereTank'
[LOG 00:43:47.764] PartLoader: Part 'WarpPlugin/Parts/FuelTank/InterstellarSphereTank/InterstellarSphereTank/InterstellarSphereTank' has no database record. Creating.
[LOG 00:43:47.779] DragCubeSystem: Creating drag cubes for part 'InterstellarSphereTank'
[LOG 00:43:47.811] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/LiquidOnlyFuelTanks/25PureLiquidTank/25PureLiquidTank'
[LOG 00:43:47.829] PartLoader: Part 'WarpPlugin/Parts/FuelTank/LiquidOnlyFuelTanks/25PureLiquidTank/25PureLiquidTank' has no database record. Creating.
[LOG 00:43:47.835] DragCubeSystem: Creating drag cubes for part '25PureLiquidTank'
[LOG 00:43:47.866] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/LongWaterTank/part/FNLiquidWaterTank'
[LOG 00:43:47.884] PartLoader: Part 'WarpPlugin/Parts/FuelTank/LongWaterTank/part/FNLiquidWaterTank' has no database record. Creating.
[LOG 00:43:47.891] DragCubeSystem: Creating drag cubes for part 'FNLiquidWaterTank'
[LOG 00:43:47.921] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/NBconeTank3m/kopieOld/KSPI_NBconeTank3m'
[ERR 00:43:47.927] Cannot find a PartModule of typename 'ModuleCrossFeed'

[LOG 00:43:47.952] PartLoader: Part 'WarpPlugin/Parts/FuelTank/NBconeTank3m/kopieOld/KSPI_NBconeTank3m' has no database record. Creating.
[LOG 00:43:47.965] DragCubeSystem: Creating drag cubes for part 'KSPI.NBconeTank3m'
[LOG 00:43:47.997] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/NBconeTank3m/part/KspiNBconeTank3m'
[ERR 00:43:48.004] Cannot find a PartModule of typename 'ModuleCrossFeed'

[LOG 00:43:48.029] PartLoader: Part 'WarpPlugin/Parts/FuelTank/NBconeTank3m/part/KspiNBconeTank3m' has no database record. Creating.
[LOG 00:43:48.042] DragCubeSystem: Creating drag cubes for part 'KspiNBconeTank3m'
[LOG 00:43:48.074] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/NitrogenCryostat/part/FNNitrogenCryostat'
[LOG 00:43:48.109] PartLoader: Part 'WarpPlugin/Parts/FuelTank/NitrogenCryostat/part/FNNitrogenCryostat' has no database record. Creating.
[LOG 00:43:48.124] DragCubeSystem: Creating drag cubes for part 'FNNitrogenCryostat'
[LOG 00:43:48.173] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVAntimatter/Part/FNAntimatterBottle'
[WRN 00:43:48.176] [ShipConstruct for FNAntimatterBottle]: part cost (812000.0) is less than the cost of its resources (0.0)
[LOG 00:43:48.194] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVAntimatter/Part/FNAntimatterBottle' has no database record. Creating.
[LOG 00:43:48.202] DragCubeSystem: Creating drag cubes for part 'FNAntimatterBottle'
[LOG 00:43:48.229] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVDeutTrit/part/HexCanDeutTritLarge'
[LOG 00:43:48.253] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVDeutTrit/part/HexCanDeutTritLarge' has no database record. Creating.
[LOG 00:43:48.263] DragCubeSystem: Creating drag cubes for part 'HexCanDeutTritLarge'
[LOG 00:43:48.290] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVHe3/Part/HexCanHe3Large'
[WRN 00:43:48.292] [ShipConstruct for HexCanHe3Large]: part cost (3400.0) is less than the cost of its resources (0.0)
[LOG 00:43:48.311] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVHe3/Part/HexCanHe3Large' has no database record. Creating.
[LOG 00:43:48.319] DragCubeSystem: Creating drag cubes for part 'HexCanHe3Large'
[LOG 00:43:48.345] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVHexbor/Part/HexaboraneTank'
[WRN 00:43:48.348] [ShipConstruct for HexaboraneTank]: part cost (500.0) is less than the cost of its resources (14600.0)
[LOG 00:43:48.470] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVHexbor/Part/HexaboraneTank' has no database record. Creating.
[LOG 00:43:48.478] DragCubeSystem: Creating drag cubes for part 'HexaboraneTank'
[LOG 00:43:48.505] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVLithium/Part/HexCanLithium'
[LOG 00:43:48.527] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVLithium/Part/HexCanLithium' has no database record. Creating.
[LOG 00:43:48.535] DragCubeSystem: Creating drag cubes for part 'HexCanLithium'
[LOG 00:43:48.561] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVThorium/Part/HexCanThoriumFl4'
[LOG 00:43:48.581] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVThorium/Part/HexCanThoriumFl4' has no database record. Creating.
[LOG 00:43:48.588] DragCubeSystem: Creating drag cubes for part 'HexCanThoriumFl4'
[LOG 00:43:48.615] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVUranium/Part/HexCanUraniumFl6'
[LOG 00:43:48.634] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVUranium/Part/HexCanUraniumFl6' has no database record. Creating.
[LOG 00:43:48.642] DragCubeSystem: Creating drag cubes for part 'HexCanUraniumFl6'
[LOG 00:43:48.677] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVUranium2/Part/HexCanUraniumN'
[LOG 00:43:48.697] PartLoader: Part 'WarpPlugin/Parts/FuelTank/RVUranium2/Part/HexCanUraniumN' has no database record. Creating.
[LOG 00:43:48.704] DragCubeSystem: Creating drag cubes for part 'HexCanUraniumN'
[LOG 00:43:48.731] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/RVUraniumTetFl/Part/HexCanUraniumTetFl'
[ERR 00:43:48.731] PartCompiler: Cannot clone model '_Taleteller/Parts/RVUraniumTetFl/model' as model does not exist

[ERR 00:43:48.731] PartCompiler: Model was not compiled correctly

[ERR 00:43:48.731] PartCompiler: Cannot compile model

[ERR 00:43:48.731] PartCompiler: Cannot compile part

[LOG 00:43:48.731] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/WrapperTank/WrapperTank - X96/KspiWrapperTank96'
[LOG 00:43:48.772] PartLoader: Part 'WarpPlugin/Parts/FuelTank/WrapperTank/WrapperTank - X96/KspiWrapperTank96' has no database record. Creating.
[LOG 00:43:48.789] DragCubeSystem: Creating drag cubes for part 'KspiWrapperTank96'
[LOG 00:43:48.813] PartLoader: Compiling Part 'WarpPlugin/Parts/FuelTank/WrapperTank/WrapperTank X48/KspiWrapperTank48'
[LOG 00:43:48.856] PartLoader: Part 'WarpPlugin/Parts/FuelTank/WrapperTank/WrapperTank X48/KspiWrapperTank48' has no database record. Creating.
[LOG 00:43:48.874] DragCubeSystem: Creating drag cubes for part 'KspiWrapperTank48'
[LOG 00:43:48.900] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/ConformalRadiator/radiator-conformal-3/KspiRadiatorConformal'
[LOG 00:43:48.931] PartLoader: Part 'WarpPlugin/Parts/Radiators/ConformalRadiator/radiator-conformal-3/KspiRadiatorConformal' has no database record. Creating.
[LOG 00:43:48.943] DragCubeSystem: Creating drag cubes for part 'KspiRadiatorConformal'
[LOG 00:43:49.007] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/FlatRadiator/part/SmallFlatRadiator'
[LOG 00:43:49.028] PartLoader: Part 'WarpPlugin/Parts/Radiators/FlatRadiator/part/SmallFlatRadiator' has no database record. Creating.
[LOG 00:43:49.037] DragCubeSystem: Creating drag cubes for part 'SmallFlatRadiator'
[LOG 00:43:49.063] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadLarge/KspiFoldingRadLarge'
[LOG 00:43:49.090] PartLoader: Part 'WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadLarge/KspiFoldingRadLarge' has no database record. Creating.
[LOG 00:43:49.090] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadMed/KspiFoldingRadMed'
[LOG 00:43:49.115] PartLoader: Part 'WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadMed/KspiFoldingRadMed' has no database record. Creating.
[LOG 00:43:49.115] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadSmall/KspiFoldingRadSmall'
[LOG 00:43:49.140] PartLoader: Part 'WarpPlugin/Parts/Radiators/FoldingRadiators/foldingRadSmall/KspiFoldingRadSmall' has no database record. Creating.
[LOG 00:43:49.140] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/LargeFlatRadiator/radiator/LargeFlatRadiator'
[LOG 00:43:49.161] PartLoader: Part 'WarpPlugin/Parts/Radiators/LargeFlatRadiator/radiator/LargeFlatRadiator' has no database record. Creating.
[LOG 00:43:49.169] DragCubeSystem: Creating drag cubes for part 'LargeFlatRadiator'
[LOG 00:43:49.232] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/LongFixedRadiator/radiator-fixed-4/KspLongFixedRadiator'
[LOG 00:43:49.254] PartLoader: Part 'WarpPlugin/Parts/Radiators/LongFixedRadiator/radiator-fixed-4/KspLongFixedRadiator' has no database record. Creating.
[LOG 00:43:49.262] DragCubeSystem: Creating drag cubes for part 'KspLongFixedRadiator'
[LOG 00:43:49.288] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/RadialHeatRadiator/radial/RadialRadiatorzzz'
[LOG 00:43:49.417] PartLoader: Part 'WarpPlugin/Parts/Radiators/RadialHeatRadiator/radial/RadialRadiatorzzz' has no database record. Creating.
[LOG 00:43:49.426] DragCubeSystem: Creating drag cubes for part 'RadialRadiatorzzz'
[LOG 00:43:49.453] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelEdge/KspiRadPanelEdge'
[LOG 00:43:49.474] PartLoader: Part 'WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelEdge/KspiRadPanelEdge' has no database record. Creating.
[LOG 00:43:49.483] DragCubeSystem: Creating drag cubes for part 'KspiRadPanelEdge'
[LOG 00:43:49.517] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelLg/KspiRadPanelLg'
[LOG 00:43:49.539] PartLoader: Part 'WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelLg/KspiRadPanelLg' has no database record. Creating.
[LOG 00:43:49.548] DragCubeSystem: Creating drag cubes for part 'KspiRadPanelLg'
[LOG 00:43:49.571] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelSm/KspiRadPanelSm'
[LOG 00:43:49.592] PartLoader: Part 'WarpPlugin/Parts/Radiators/RadiatorPanels/radPanelSm/KspiRadPanelSm' has no database record. Creating.
[LOG 00:43:49.600] DragCubeSystem: Creating drag cubes for part 'KspiRadPanelSm'
[LOG 00:43:49.626] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/SemiFoldingRadiator/semifoldingradiator/radiator1'
[LOG 00:43:49.649] PartLoader: Part 'WarpPlugin/Parts/Radiators/SemiFoldingRadiator/semifoldingradiator/radiator1' has no database record. Creating.
[LOG 00:43:49.657] DragCubeSystem: Creating drag cubes for part 'radiator1'
[LOG 00:43:49.683] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/SurfaceRadiator/radiator-surface-125-1/KspiRadiatorSurfaceSquare'
[LOG 00:43:49.706] PartLoader: Part 'WarpPlugin/Parts/Radiators/SurfaceRadiator/radiator-surface-125-1/KspiRadiatorSurfaceSquare' has no database record. Creating.
[LOG 00:43:49.716] DragCubeSystem: Creating drag cubes for part 'KspiRadiatorSurfaceSquare'
[LOG 00:43:49.754] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/SurfaceRadiator/radiator-surface-25-1/KspiRadiatorSurfaceHalf'
[LOG 00:43:49.777] PartLoader: Part 'WarpPlugin/Parts/Radiators/SurfaceRadiator/radiator-surface-25-1/KspiRadiatorSurfaceHalf' has no database record. Creating.
[LOG 00:43:49.787] DragCubeSystem: Creating drag cubes for part 'KspiRadiatorSurfaceHalf'
[LOG 00:43:49.810] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/UmbrellaRadiator/part/UmbrellaRadiatorGE1600'
[LOG 00:43:49.833] PartLoader: Part 'WarpPlugin/Parts/Radiators/UmbrellaRadiator/part/UmbrellaRadiatorGE1600' has no database record. Creating.
[LOG 00:43:49.842] DragCubeSystem: Creating drag cubes for part 'UmbrellaRadiatorGE1600'
[LOG 00:43:49.869] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/WideFixedRadiator/radiator-fixed-3/KspiWideFixedRadiator'
[LOG 00:43:49.891] PartLoader: Part 'WarpPlugin/Parts/Radiators/WideFixedRadiator/radiator-fixed-3/KspiWideFixedRadiator' has no database record. Creating.
[LOG 00:43:49.900] DragCubeSystem: Creating drag cubes for part 'KspiWideFixedRadiator'
[LOG 00:43:49.924] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/WrapAroundRadiator/WrapAroundRadiator/KspiWrapAroundRadialRadiator'
[LOG 00:43:49.946] PartLoader: Part 'WarpPlugin/Parts/Radiators/WrapAroundRadiator/WrapAroundRadiator/KspiWrapAroundRadialRadiator' has no database record. Creating.
[LOG 00:43:49.954] DragCubeSystem: Creating drag cubes for part 'KspiWrapAroundRadialRadiator'
[LOG 00:43:49.980] PartLoader: Compiling Part 'WarpPlugin/Parts/Radiators/WrapAroundRadiator/WrapAroundRadiatorHalf/KspiWrapAroundRadialRadiatorHalf'
[LOG 00:43:50.002] PartLoader: Part 'WarpPlugin/Parts/Radiators/WrapAroundRadiator/WrapAroundRadiatorHalf/KspiWrapAroundRadialRadiatorHalf' has no database record. Creating.
[LOG 00:43:50.010] DragCubeSystem: Creating drag cubes for part 'KspiWrapAroundRadialRadiatorHalf'
[LOG 00:43:50.036] PartLoader: Compiling Part 'WarpPlugin/Parts/Science/ParticleAcceleratorexperiment/part/InterstellarParticleAccelerator'
[ERR 00:43:50.075] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[ERR 00:43:50.111] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[ERR 00:43:50.148] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[ERR 00:43:50.154] Action 'DeployExperiment' already defined.

[ERR 00:43:50.199] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[ERR 00:43:50.202] Action 'DeployExperiment' already defined.

[ERR 00:43:50.246] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[LOG 00:43:50.246] PartLoader: Part 'WarpPlugin/Parts/Science/ParticleAcceleratorexperiment/part/InterstellarParticleAccelerator' has no database record. Creating.
[ERR 00:43:50.284] Cooking::cookConvexMesh: user-provided hull must have less than 256 vertices!

[ERR 00:43:50.287] Action 'DeployExperiment' already defined.

[LOG 00:43:50.293] DragCubeSystem: Creating drag cubes for part 'InterstellarParticleAccelerator'
[LOG 00:43:50.351] PartLoader: Compiling Part 'WarpPlugin/Parts/Science/Telescope/part/FNIRTelescope'
[LOG 00:43:50.367] PartLoader: Part 'WarpPlugin/Parts/Science/Telescope/part/FNIRTelescope' has no database record. Creating.
[LOG 00:43:50.373] DragCubeSystem: Creating drag cubes for part 'FNIRTelescope'
[LOG 00:43:50.398] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/atmosphericScoop/part/atmosphericScoop'
[LOG 00:43:50.417] PartLoader: Part 'WarpPlugin/Parts/Utility/atmosphericScoop/part/atmosphericScoop' has no database record. Creating.
[LOG 00:43:50.424] DragCubeSystem: Creating drag cubes for part 'atmosphericScoop'
[LOG 00:43:50.455] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/DTMagnetometer/part/DTMagnetometer'
[LOG 00:43:50.473] PartLoader: Part 'WarpPlugin/Parts/Utility/DTMagnetometer/part/DTMagnetometer' has no database record. Creating.
[LOG 00:43:50.480] DragCubeSystem: Creating drag cubes for part 'DTMagnetometer'
[LOG 00:43:50.503] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/GammaRaySpectrometer/part/sensorGammaRaySpectrometer'
[LOG 00:43:50.631] PartLoader: Part 'WarpPlugin/Parts/Utility/GammaRaySpectrometer/part/sensorGammaRaySpectrometer' has no database record. Creating.
[LOG 00:43:50.639] DragCubeSystem: Creating drag cubes for part 'sensorGammaRaySpectrometer'
[LOG 00:43:50.669] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/GCMassSpectrometer/part/FNGCMS'
[LOG 00:43:50.687] PartLoader: Part 'WarpPlugin/Parts/Utility/GCMassSpectrometer/part/FNGCMS' has no database record. Creating.
[LOG 00:43:50.694] DragCubeSystem: Creating drag cubes for part 'FNGCMS'
[LOG 00:43:50.726] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/InlineRefinery/part/FNInlineRefinery'
[LOG 00:43:50.742] PartLoader: Part 'WarpPlugin/Parts/Utility/InlineRefinery/part/FNInlineRefinery' has no database record. Creating.
[LOG 00:43:50.748] DragCubeSystem: Creating drag cubes for part 'FNInlineRefinery'
[LOG 00:43:50.777] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/LargeRefinery/part/FNInlineRefineryLarge'
[ERR 00:43:50.788] Cannot find a PartModule of typename 'ModuleConnectedLivingSpace'

[LOG 00:43:50.803] PartLoader: Part 'WarpPlugin/Parts/Utility/LargeRefinery/part/FNInlineRefineryLarge' has no database record. Creating.
[LOG 00:43:50.813] DragCubeSystem: Creating drag cubes for part 'FNInlineRefineryLarge'
[LOG 00:43:50.855] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/LCMassSpectrometer/part/FNLCMS'
[LOG 00:43:50.871] PartLoader: Part 'WarpPlugin/Parts/Utility/LCMassSpectrometer/part/FNLCMS' has no database record. Creating.
[LOG 00:43:50.877] DragCubeSystem: Creating drag cubes for part 'FNLCMS'
[LOG 00:43:50.908] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/microwaveReceiver/part/microwaveReceiver'
[LOG 00:43:50.929] PartLoader: Part 'WarpPlugin/Parts/Utility/microwaveReceiver/part/microwaveReceiver' has no database record. Creating.
[LOG 00:43:50.937] DragCubeSystem: Creating drag cubes for part 'microwaveReceiver'
[LOG 00:43:50.960] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/microwaveSphereReceiver/microwaveSphereReceiver/microwaveSphereReceiver'
[LOG 00:43:50.980] PartLoader: Part 'WarpPlugin/Parts/Utility/microwaveSphereReceiver/microwaveSphereReceiver/microwaveSphereReceiver' has no database record. Creating.
[LOG 00:43:50.988] DragCubeSystem: Creating drag cubes for part 'microwaveSphereReceiver'
[LOG 00:43:51.020] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/MicrowaveThermalPowerReceiver/MTER-M/microwaveThermalEnergyReceiverM'
[LOG 00:43:51.038] PartLoader: Part 'WarpPlugin/Parts/Utility/MicrowaveThermalPowerReceiver/MTER-M/microwaveThermalEnergyReceiverM' has no database record. Creating.
[LOG 00:43:51.045] DragCubeSystem: Creating drag cubes for part 'microwaveThermalEnergyReceiverM'
[LOG 00:43:51.081] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/phasedArray1/receiver/phasedArray1'
[LOG 00:43:51.103] PartLoader: Part 'WarpPlugin/Parts/Utility/phasedArray1/receiver/phasedArray1' has no database record. Creating.
[LOG 00:43:51.111] DragCubeSystem: Creating drag cubes for part 'phasedArray1'
[LOG 00:43:51.138] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/phasedArray2/transmitter/microwaveTransmitter'
[LOG 00:43:51.158] PartLoader: Part 'WarpPlugin/Parts/Utility/phasedArray2/transmitter/microwaveTransmitter' has no database record. Creating.
[LOG 00:43:51.166] DragCubeSystem: Creating drag cubes for part 'microwaveTransmitter'
[LOG 00:43:51.193] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/radialAtmosphericScoop/scoop/RadialAtmosphericScoop'
[LOG 00:43:51.210] PartLoader: Part 'WarpPlugin/Parts/Utility/radialAtmosphericScoop/scoop/RadialAtmosphericScoop' has no database record. Creating.
[LOG 00:43:51.217] DragCubeSystem: Creating drag cubes for part 'RadialAtmosphericScoop'
[LOG 00:43:51.244] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/radialAtmosphericScoop/scoop2/radial_atmospheric_scoop2'
[LOG 00:43:51.261] PartLoader: Part 'WarpPlugin/Parts/Utility/radialAtmosphericScoop/scoop2/radial_atmospheric_scoop2' has no database record. Creating.
[LOG 00:43:51.268] DragCubeSystem: Creating drag cubes for part 'radial.atmospheric.scoop2'
[LOG 00:43:51.294] PartLoader: Compiling Part 'WarpPlugin/Parts/Utility/Refinery/part/FNRefinery'
[LOG 00:43:51.321] PartLoader: Part 'WarpPlugin/Parts/Utility/Refinery/part/FNRefinery' has no database record. Creating.
[LOG 00:43:51.332] DragCubeSystem: Creating drag cubes for part 'FNRefinery'

 

Edited by Galenmacil
Link to comment
Share on other sites

3 hours ago, Nansuchao said:

1- yes, Hydrogen has a beautiful ISP, but usually low thrust. You can have fun testing all the different performances of every different propellants.

2- candle is not intended to be scalable and you can't change the mode of reactors inside the engines, the error is that you can see the buttons, but they wouldn't be there.

3- usually you can see the EC requirements in editor on the right side of the selected part, right-clicking on it. Do you use some different fuel switch? That could be a problem

4- if you unlocked the Interstellar Nerva, trust me, you don't need the stock one no more... You can achieve better ISP/Thrust with the Onterstellar one. About radiators, the heat production of the stock one has been nerfed in the last two release, so unless you're using it on a small tiny probe for very very long burns you don't need radiators at all.

3 - I have checked stocked fuel tanks - none of them have EC requirements. Liquid hydrogen stays in the tank forever. I have interstellar fuel switch and interstellar fuel switch core installed via ckan. Also, the procedural tanks do not seem to work with fuel switch at all as they only have liquid fuel and oxidiser options available.

Link to comment
Share on other sites

25 minutes ago, Mine_Turtle said:

3 - I have checked stocked fuel tanks - none of them have EC requirements. Liquid hydrogen stays in the tank forever. I have interstellar fuel switch and interstellar fuel switch core installed via ckan. Also, the procedural tanks do not seem to work with fuel switch at all as they only have liquid fuel and oxidiser options available.

Yes, for the Procedular One IFS doesn't work yet. For the others, you can use the StarlionIndustries mod. It's a series of .cfg that adds the Interstellar Propllants to every (almost) tank in game.

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...