Jump to content

[1.3.0] Community Database of Module Manager Patches for Stock KSP


Alshain

Recommended Posts

10 hours ago, Aelfhe1m said:

Didn't keep a link to the original post but:

I tried it but no change. Kerbals still have default chutes in the editor. I just followed the OP... saved in .CFG file in a folder under GameData. I'm using Texture Replacer too if that matters. KSP1.12.5

Edited by Krazy1
in editor
Link to comment
Share on other sites

1 hour ago, Krazy1 said:

I tried it but no change. Kerbals still have default chutes in the editor. I just followed the OP... saved in .CFG file in a folder under GameData. I'm using Texture Replacer too if that matters. KSP1.12.5

A couple of small typo in the patch I posted (KerbalEVA is case sensitive as a Module name and I should have included a ,* on the delete statement. Revised (and tested) patch:

// patch to remove eva chutes from the list of default kerbal inventories
// Author: canisin, slightly modified by Aelfhe1m
@PART:HAS[@MODULE[KerbalEVA]]:FINAL
{
    @MODULE[ModuleInventoryPart]
    {
        @DEFAULTPARTS
        {
            !name,* = deleteall
            name = evaJetpack
        }
    }
}

NOTE: if you have the persistent inventories option enabled in game settings then this will only apply to the initial inventory load out when a new kerbal is hired. Adding or removing items from each kerbal's inventory will be remembered in your save.

Link to comment
Share on other sites

  • 3 weeks later...

This patch seems to no longer be working in 1.12.5....the button does show up in the advanced tweakable portion of the PAW, but clicking it does not remove any of the engines from the staging sequence. I'm not the best with module manager, anyone have any suggestions? (Tested in a clean install with only module manager and this patch)

 

// Add staging control to engines
// Author: Alshain, Xyphos, sebi.zzr
@PART[*]:HAS[@MODULE[ModuleEngines*]]:FINAL
{
	@MODULE[ModuleEngines*],*
	{
		stagingEnableText = Engine: Enable Staging
		stagingDisableText = Engine: Disable Staging
		stagingToggleEnabledEditor = true
	}
	
	@MODULE[ModuleJettison],*
	{
		stagingEnabled = False
	}
}

 

Link to comment
Share on other sites

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