Jump to content

[1.8.x-1.12.x] Module Manager 4.2.3 (July 03th 2023) - Fireworks season


sarbian

Recommended Posts

I have a question about the way that module manager works:

 

 I am pretty obsessive about cleaning out my extraneous parts, but I am more and more frequently coming across parts with texture dependencies or some other unforseen dependence that screws with some other aspect of my game.

 

I am well aware that removing the entry with module manager will remove the part from the list.

 

However, it also seems that, given all the passes that the manager makes, and how the log output looks, it would also appear that, if something is removed with module manager, it is essentially as if it does not exist in the folder or in the part.cfg.

 

Does this also prevent the textures from loading?  Im aware that the texture files will still be there, but for textures that are only referenced by the cfg in the folder, will the texture still consume RAM, or would I be better off simply deleting the folder as I have been doing?

Edited by xx_mortekai_xx
Link to comment
Share on other sites

  On 5/10/2016 at 4:23 AM, blowfish said:

It turns out MM tells you in the log.  The more you know

[ModuleManager] Changes :
Added   : KSEA/Historian/Plugins/Historian.cfg
Deleted : KSEA/Historian/Historian.cfg

Looking at CKAN's metadata, that's the mod "Historian"

Expand  

Just a quick note that Historian has now been updated to persist config settings to the main save file rather than a .cfg. On first run it will delete the old Historian.cfg if present then should not affect Module Manager cache on subsequent loads.

Link to comment
Share on other sites

  On 5/10/2016 at 4:15 PM, xx_mortekai_xx said:

Does this also prevent the textures from loading?  Im aware that the texture files will still be there, but for textures that are only referenced by the cfg in the folder, will the texture still consume RAM, or would I be better off simply deleting the folder as I have been doing?

Expand  

 

I'm pretty sure the textures and models will still load into memory. The asset-loading happens before MM applies the patches, and also well before the part compiler. It's a "load first, configure later" sort of thing.

 

Link to comment
Share on other sites

ok so i have this stupid BEFORE FOR AFTER thing again when updating ksp and all mods... it takes like 5 mins to load BEFORE FOR and AFTER for each and every mod.... and i have like 75 mods... but it is fine with just a couple mods... could you help pinpoint which mod is causing this? thanks

 

 

 

output.log:  https://mega.nz/#!EwBCBJxR!9cCVaJQs1ob8h2ylXbaC58h-Y-a7p5Tf8u6HFikOQ6g

Link to comment
Share on other sites

  On 5/10/2016 at 8:43 PM, Thorman said:

ok so i have this stupid BEFORE FOR AFTER thing again when updating ksp and all mods... it takes like 5 mins to load BEFORE FOR and AFTER for each and every mod.... and i have like 75 mods... but it is fine with just a couple mods... could you help pinpoint which mod is causing this? thanks

Expand  

I looked at your KSP.log.  I think your issues have nothing to do with Module Manager, so my comments are in a spoiler.

  Reveal hidden contents

 

Edited by Jacke
Link to comment
Share on other sites

  On 5/8/2016 at 6:31 PM, Sigma88 said:

you had a couple of errors in there, fixed them for you

I also made it so the resource gets overwritten in case it already exist (since he asked specifically for 15/crew)

:wink:

Expand  

Would this patch work with 1.0.5? I'm not getting any supplies in any parts with crew capacity. 

Link to comment
Share on other sites

  On 5/11/2016 at 10:40 AM, Whovian41110 said:

Would this patch work with 1.0.5? I'm not getting any supplies in any parts with crew capacity. 

Expand  

try with this:

@PART:HAS[#CrewCapacity[>0]]:NEEDS[mod_that_add_supplies_name]
{
	%RESOURCE[your_supplies_name]
	{
		%amount = #$../CrewCapacity$
		@amount *= 15
		%maxAmount = #$amount$
	}
}

you still need to change mod_that_add_supplies_name and your_supplies_name to whatever those names are

Link to comment
Share on other sites

  On 5/11/2016 at 11:11 AM, Sigma88 said:

try with this:

@PART:HAS[#CrewCapacity[>0]]:NEEDS[mod_that_add_supplies_name]
{
	%RESOURCE[your_supplies_name]
	{
		%amount = #$../CrewCapacity$
		@amount *= 15
		%maxAmount = #$amount$
	}
}

you still need to change mod_that_add_supplies_name and your_supplies_name to whatever those names are

Expand  

I did.  In about 15 minutes I'll get back to you with what it is.

Link to comment
Share on other sites

  Reveal hidden contents

what have I done wrong?

Edited by Whovian41110
Link to comment
Share on other sites

  On 5/11/2016 at 6:20 PM, Whovian41110 said:

what have I done wrong?

Expand  

:HAS[#CrewCapacity[>]] you haven't specified what it should be greater than (should probably be [>0]

Some other things I see about the patch:

  • kerbCount isn't necessary, since it's always just the crew capacity.  You can just use @amount *= #$../CrewCapacity$ directly
  • You will always have 0 for the amount and maxAmount of mulch.  Typo maybe?
Link to comment
Share on other sites

  On 5/11/2016 at 7:03 PM, blowfish said:

:HAS[#CrewCapacity[>]] you haven't specified what it should be greater than (should probably be [>0]

Some other things I see about the patch:

  • kerbCount isn't necessary, since it's always just the crew capacity.  You can just use @amount *= #$../CrewCapacity$ directly
  • You will always have 0 for the amount and maxAmount of mulch.  Typo maybe?
Expand  

So what would that look like?  I've got no experience with MM

Link to comment
Share on other sites

  Reveal hidden contents

So this @blowfish

Link to comment
Share on other sites

  On 5/11/2016 at 7:39 PM, Enceos said:

@Whovian41110 You haven't specified in your config what is kerbCount. You may as well use #$/CrewCapacity$ directly instead of it.

Expand  
  Reveal hidden contents

So this? (Nice avatar btw)

Link to comment
Share on other sites

  On 5/11/2016 at 7:44 PM, Whovian41110 said:
  Reveal hidden contents

So this? (Nice avatar btw)

Expand  

Yes, but #$/CrewCapacity$ is not a user defined variable, you don't have to delete it. And your Mulch maxAmount will be always 15 in the current state of your config. You may want to add another line for mulch after the %maxAmount

@maxAmount *= #$/CrewCapacity$

Link to comment
Share on other sites

  On 5/11/2016 at 7:48 PM, Enceos said:

Yes, but #$/CrewCapacity$ is not a user defined variable, you don't have to delete it. And your Mulch maxAmount will be always 15 in the current state of your config. You may want to add another line for mulch after the %maxAmount

@maxAmount *= #$/CrewCapacity$

Expand  
  Reveal hidden contents

This? :confused:

Link to comment
Share on other sites

@Whovian41110 This :)

  Reveal hidden contents

EDIT: Found another mistake

Edited by Enceos
Link to comment
Share on other sites

  On 5/11/2016 at 7:53 PM, Enceos said:

@Whovian41110 This :)

  Reveal hidden contents

 

Expand  

Thanks!:D

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