Jump to content

Recommended Posts

I was recently playing RP1  In science mode when I noticed the avionics limit. I have made numerous attempt to disable it, but its only disabled on crewed vessels.
Is there any way within the settings to disable it ENTIRELY?
If not within the settings, is there any way at all to do it?

Ps, Here is the code that i tryed to make but subsequently failed

@PART[*]:HAS[@MODULE[ModuleProceduralAvionics],@MODULE[ModuleCommand]
{
    MODULE
    {
        name = ModuleAvionics
        massLimit = 999999999999999999999999999999999999999999999999999999999.9
        interplanetary = True
    }
    MODULE:NEEDS[kOS]
    {
        name = kOSProcessor
        diskSpace = 1000
        diskSpaceCostFactor = 0.0000000000000000000000000000000000000001
        diskSpaceMassFactor = 0.0000000000000000000000000000000000000001
        ECPerInstruction = 0.0000000000000000000000000000000000000000001
     }
}
// Disable attitude control on non-control parts.
@PART[*]:HAS[@MODULE[ModuleCommand]:HAS[~minimumCrew[>0]],!MODULE[ModuleAvionics],!MODULE[ModuleProceduralAvionics],!MODULE[ModuleScienceCore]]:AFTER[RP-0]
{
    MODULE
    {
        name = ModuleScienceCore
    }
}

Link to comment
Share on other sites

For questions to a specific mod, I would recommend to ask in the mod thread directly. The people around there know the mod and may came across the same issue already.

Best I can offer are two MM patches you can try but no idea if the effect is exactly what you are looking for.

Little disclaimer: I've never used RP-1 and I came to the following results by looking at the source code and MM-patches of the mod.

 

@PART[*]:FINAL
{
	@MODULE[ModuleAvionics]
	{
		%toggleable = true
		%disabledkW = 0.1
	}
}

You can also try to remove the module at all but no idea if t hat will break anything:

@PART[*]:HAS[@MODULE[ModuleAvionics]]:FINAL
{
	!MODULE[ModuleAvionics] {}
}

 

 

(Your patches probably failed because you didn't specify what MM is supposed to do. If you want to edit a value or module, you should use an @ in front of it, otherwise MM will just add the module and/or value to the part config. You may want to take a look at the MM handbook if you want to create your own patches: https://github.com/sarbian/ModuleManager/wiki/Module-Manager-Handbook )

Link to comment
Share on other sites

  • 3 months later...
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...