Jump to content

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


sarbian

Recommended Posts

  On 4/13/2017 at 7:44 PM, AkaiAndromedus said:

Game crashes during loading, at ModuleManager FINAL:

Expand  

I don't know what you mean by "ModuleManager FINAL:" but according to your log, you aren't running ksp in x64 and trying to run a bunch of mods. That's not going to work. Run KSP in x64 and see if that fixes your problem

Edited by Galileo
Link to comment
Share on other sites

  On 4/13/2017 at 10:00 PM, AkaiAndromedus said:

I'm still crashing at the same area as before, when it tries to load Modulemanager :FINAL

Expand  

post a new log using KSP x64 and no ATM (also, please don't copy and paste it in, instead upload it to dropbox or google drive and post a link to it)

Link to comment
Share on other sites

Crashhhhhh...

The most unfortunate thing about this game when you start loading mods is... memory management.

The mods themselves... for the most part it's dysfunctional - only load collaborative mod suites.

If you prefer freedom (and hassles), it's up to you

a) load a mod

b) run the game

c) check game.. problems unload mod, load next mod goto a)

d) No problems.. load next mod ... goto a)

e) happy.. play game.

 

 

Edited by ColKlonk2
Link to comment
Share on other sites

  On 4/13/2017 at 10:04 PM, AkaiAndromedus said:
Expand  

I really don't think you're using KSPx64. Also, the game isn't crashing due to MM. While the last thing on the bar might be Module Manager : FINAL, KSP had loaded several resources when it crashed. I'd take these problems over to http://forum.kerbalspaceprogram.com/index.php?/forum/70-technical-support-pc-modded-installs/

Link to comment
Share on other sites

  On 4/13/2017 at 10:12 PM, TheRagingIrishman said:

I really don't think you're using KSPx64. Also, the game isn't crashing due to MM. While the last thing on the bar might be Module Manager : FINAL, KSP had loaded several resources when it crashed. I'd take these problems over to http://forum.kerbalspaceprogram.com/index.php?/forum/70-technical-support-pc-modded-installs/

Expand  

I am, Steam gives me an option to run KSP or KSP(x64) and I picked 64, same result as before.

Link to comment
Share on other sites

  On 4/13/2017 at 10:16 PM, AkaiAndromedus said:

I am, Steam gives me an option to run KSP or KSP(x64) and I picked 64, same result as before.

Expand  

That does not work. Go into your directory and make a short cut of your x64 version and launch it from there. I can tell you right now, you are not running KSP_x64.exe

Edited by Galileo
Link to comment
Share on other sites

  On 4/13/2017 at 11:02 PM, Galileo said:

That does not work. Go into your directory and make a short cut of your x64 version and launch it from there. I can tell you right now, you are not running KSP_x64.exe

Expand  

It could be possible that he runs ksp64 but goes to copy the output log from the non64 folder. But Im not sure

Link to comment
Share on other sites

  On 4/14/2017 at 12:27 AM, Sigma88 said:

It could be possible that he runs ksp64 but goes to copy the output log from the non64 folder. But Im not sure

Expand  

I am pretty sure the non64 folder doesn't produce a log if you are running x64. But I too, could be wrong.

i do know you have to manually put in the correct directory into steam for it to run x64. By default, even the x64 option on steam runs x32. Its dumb

Edited by Galileo
Link to comment
Share on other sites

  On 4/14/2017 at 12:29 AM, Galileo said:

I am pretty sure the non64 folder doesn't produce a log if you are running x64. But I too, could be wrong.

i do know you have to manually put in the correct directory into steam for it to run x64. By default, even the x64 option on steam runs x32. Its dumb

Expand  

Err, no. It runs the x64 here.

 

Link to comment
Share on other sites

  On 4/14/2017 at 12:29 AM, Galileo said:

I am pretty sure the non64 folder doesn't produce a log if you are running x64. But I too, could be wrong.

i do know you have to manually put in the correct directory into steam for it to run x64. By default, even the x64 option on steam runs x32. Its dumb

Expand  

Not sure how you have your Steam set up but whenever I use the 64bit option for KSP I am definitely running the 64bit version...

Link to comment
Share on other sites

I'm looking to change the biomeMask and situationMask on a set of experiments whose id's I know. From looking at various MM files in the community patches post, I think it would look something like this:

  Quote
@EXPERIMENT_DEFINITION[id]
{
	%biomeMask = newbiomeMask
        %situationMask = newsituationMask
}
Expand  

Does this look about right?

For the id, is there way to do wildcards if I know how to isolate the experiments in question? Like 'all experiments with id=000*' ?

Link to comment
Share on other sites

  On 4/14/2017 at 10:25 PM, drhay53 said:

I'm looking to change the biomeMask and situationMask on a set of experiments whose id's I know. From looking at various MM files in the community patches post, I think it would look something like this:

Does this look about right?

For the id, is there way to do wildcards if I know how to isolate the experiments in question? Like 'all experiments with id=000*' ?

Expand  

Ok, it looks like I was close, but this is the format I was looking for after messing around a bit:

  Quote

@EXPERIMENT_DEFINITION[*]:HAS[#id[id]]:FINAL
{
    %biomeMask = 0
    %situationMask = 16
}

Expand  

 

Edited by drhay53
Link to comment
Share on other sites

  On 4/17/2017 at 6:13 AM, Jarin said:

If I get MM errors reported on game loading, but everything otherwise loads fine, where would I go about finding details on those errors, since there's no crash log?

Expand  

Go into KSP.log and search the word "error"

You'll find a list of mm errors

Link to comment
Share on other sites

  On 4/13/2017 at 4:49 PM, toric5 said:

is it possible to multiply an atmospherecurve by a set value?

so say i have an engine with an atmospherecurve of

key = x1 y1
key = x2 y2
key = x3 y3
...

and i want to get

key = x1 1.1*y1
key = x2 1.1*y2
key = x3 1.1*y3
...

ive tried

@atmospherecurve
{
	key *= 1 1.1
	key *= 1 1.1
	key *= 1 1.1
}

but it just invalidates the entire part file. another big issue is that i dont necessarily know the number of key = entries in the list, but i want to multiply all of them. does MM have any special handling for pointcurves?

Expand  

is it possible to do this?

Link to comment
Share on other sites

  On 4/18/2017 at 5:37 PM, toric5 said:

is it possible to do this?

Expand  

 

  On 4/18/2017 at 5:38 PM, Warezcrawler said:

not as far as I know. I've never come across MM having special functionality to edit floatcurves

Expand  

I think it actually is.  You'd want

@key,*[1, ] *= 1.1

Since you want to edit every key, then edit the item at index 1 (separated by spaces).  The shape of the curve would get messed up if tangents (3rd and 4th values) are specified though

Link to comment
Share on other sites

  On 4/18/2017 at 6:17 PM, blowfish said:

 

I think it actually is.  You'd want

@key,*[1, ] *= 1.1

Since you want to edit every key, then edit the item at index 1 (separated by spaces).  The shape of the curve would get messed up if tangents (3rd and 4th values) are specified though

Expand  

i would like to edit every key, regardless of the numbers. this is for engines ISP curves, whitch usually have 3 or 4 keys.

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