Jump to content

Umbilicals/Stage 0


kfsone

Recommended Posts

"5... 4... 3... 2... 1... ... ... Oh, the batteries went flat on the pad"

Would it be possible for a mod to make the launch holders/clamps/gantries have infinite power to share with the vehicle?

Link to comment
Share on other sites

there are several module manager patches that do this:

not infinite - but as much as you need/want; along with any other resources you want it to dispense:

@PART[*]:HAS[@MODULE[LaunchClamp]]:FOR[Me]
{
	@MODULE[ModuleGenerator]
	{
		@OUTPUT_RESOURCE[ElectricCharge]
		{
			@rate = 100
		}
	}
	MODULE
	{
		name = ModuleGenerator
		isAlwaysActive = true
		OUTPUT_RESOURCE
		{
			name = LiquidFuel
			rate = 9
		}
	}
	MODULE
	{
		name = ModuleGenerator
		isAlwaysActive = true
		OUTPUT_RESOURCE
		{
			name = Oxidizer
			rate = 11
		}
	}
	RESOURCE
	{
		name = ElectricCharge
		amount = 500
		maxAmount = 500
	}
	RESOURCE
	{
		name = LiquidFuel
		amount = 9000
		maxAmount = 90000
	}
	RESOURCE
	{
		name = Oxidizer
		amount = 11000
		maxAmount = 110000
	}
}
}

 

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