Jump to content

lookolookthefox

Members
  • Posts

    28
  • Joined

  • Last visited

Reputation

12 Good

1 Follower

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Turns out, Principia is very serious about it's versions, version 1.12.3 won't work with the current build. That being said, if anyone can find a fix to my sound issue, that would be hugely appreciated too
  2. Title, the game loads completely fine, but as soon as the starting screen shows up, the little news popup and our 3 kerbals out front show up, and the game crashes. No music plays. I suspect the issue might be because I'm running a heavily modded build, including principia, and outer planets with some patch I found somewhere, hoping someone has a fix. When principia wasn't installed the game was running fine, albeit with a bug that massively decreased sound quality. Logs: https://drive.google.com/file/d/1fu6IxL2HXY8JmbwWxjS_dJ53y_8MmSgp/view?usp=sharing
  3. Is there any way to add the meditation and R&R modules for the new 1.875 en 5 m cupolas of SSPX? I've been able to do it for the 1.25 and 3.75 meter once, since those get mentioned in the SSPX patch, but adding in the other cupola's doesn't work for me.
  4. For whatever reason, i can't use any in flight menu controls. I can't revert flights, quit to main menu, save/load or even return to the space center, i can only resume game, log posted below. https://drive.google.com/file/d/1fu6IxL2HXY8JmbwWxjS_dJ53y_8MmSgp/view?usp=sharing Edit: removing Flight manager for reusable stages seems to have done the trick
  5. Wow! That was incredibly fast! Thanks very much. One little question, is there a way for me to make it so that the shielding is living space specific too? It seems logical that the shielding gets installed on specific parts to me, though I may also just not understand the design philosophy behind the mechanic .
  6. Does anyone know of a way to interface CLS with KerbalHealth?
  7. Is there any way to integrate this mod with connected livingspaces? for example, don't count radiation shielding or living space for non-connected parts?
  8. @Lisias If you insist . Basically, I've built this great modpack, but it involves USI life support and MKS, but also a bunch of Nertea's stuff, specifically SystemHeat. The problem arises with how both MKS and SystemHeat work. MKS has a bunch of drills which use a different harvester module due to their resource swapping system, something about requiring materialkits yada yada. Point is that SystemHeat, to implement its changes to the heat system of KSP, replaces the standard harvester modules entirely with a module of its own. This module does exactly the same as the regular harvester other than having a different thermal mechanic. In the end, i can't figure out how to integrate two different resource harvesting modules into a single file. I though about splitting the difference, somehow having both modules in communicating, the systemheat one not mining but doing heat and efficiency calculations, and the USI one not producing heat, but I'm not sure if that is possible at all. Even if it were, I've got no clue how.
  9. @blowfish @Lisias Thanks for your help! tried both of your suggestions but I've discover that the thing I'm trying to do is pretty much impossible, it involves incompatible modules and i do not have the knowhow to rewrite that kind of stuff.
  10. @Stone Blue I've taken that bit directly from the syntax Wiki, at the bottom it says something about variables and using that @ to look in different parent nodes, which is what I'm trying to do. The #, from what I've gathered at least, is meant to indicate that I'm looking for the Ratio variable and/or signifying that the systemPower is a variable itself. Again very similar to the way it is done in the base generic code. Your suggestion from earlier has however gotten rid of my errors, now on to seeing if my improvised patch works. It's all down to trial and error sadly, I don't grasp this stuff well at all. Edit: Patch don't work, will have to find this ModuleManager cache thing to see if it did anything even
  11. @Stone Blue I did not write this entire cfg myself, it's from a standard template included in the systemheat mod. The final has a comment mentioning that the final is needed, and the first line works well enough in other scenarios. I'm fairly certain most of the issues come from later lines, since the logs reference those specifically. Will give your solution a shot though.
  12. Thanks for the help! the fix doesn't work for me though, probably due to the sheer amount of mods i have installed. But thanks anyways Edit: On a second try, after resolving some completely unrelated errors, it does actually work! Huzzah
  13. I've run into a very peculiar bug, when I use the storage parts for MKS resources, specifically Raremetals and Exoticminerals. I empty these out in the VAB since i want them to be storage for these specific parts. The idea is to then do some offworld mining and bring the full containers back, recover them and get all the cash from the resources. The problem is that when i recover a full storage container with these resources, the cost of the container becomes -500000-ish funds, very close to the exact amount the resources are worth, so I don't make any money. Even worse, if I recover these parts empty, I lose money out of my bank account. I've attached the logs here. There's a few errors about USI that are entirely my own fault and probably unrelated.
  14. Hi all, I'm trying to make a patch that integrates MKS drills into SystemHeat, but I'm running into some coding issues with Modulemanager. The MKS mod chooses its resources based on a module "USI_HarvesterSwapOption", while most general info is stored in a different "USI_Harvester". I've been trying to integrate the systempower variable from systemheat into each HarvesterSwapOption but it requires the Ratio variable only found in the USI_Harvester. The following code is what I'm trying to use: @PART[*]:HAS[@MODULE[USI_Harvester]:HAS[@INPUT_RESOURCE:HAS[#ResourceName[ElectricCharge]]]]:FINAL{ //really need final. !MODULE[ModuleCoreHeat] {} %MODULE[ModuleSystemHeat] { %name = ModuleSystemHeat // Cubic metres %volume = #$/mass$ //1 ton equals 1 cubic meter of cooling. it *very roughly* approximates the balance of squads ISRU %moduleID = harvester %iconName = Icon_Drill } !MODULE[ModuleOverheatDisplay]{} @MODULE[USI_Harvester]:HAS[@INPUT_RESOURCE:HAS[#ResourceName[ElectricCharge]]]{ //Ive seen some converters that dont use electric charge, those things need thier own patch, as we calculate produced heat based on EC consumption. @name = ModuleSystemHeatHarvester moduleID = Converter1 //this should be the localization string or the actual name, either way, unique. systemHeatModuleID = harvester shutdownTemperature = 750 systemOutletTemperature = 400 systemEfficiency { key = 0 1.0 key = 400 1.0 key = 650 0.0 } !Thermalefficiency {} !TemperatureModifier {} @generatesHeat = false //disable stock heating } @MODULE[USI_HarvesterSwapOption]:HAS[#ResourceName[Dirt]]{ systemPower = #$@MODULE[USI_Harvester]/Ratio$ @systemPower *= #$Efficiency$ //set the heat ouput as proportional to the EC usage. // I *think* that all the energy goes into heat. } @MODULE[USI_HarvesterSwapOption]:HAS[#ResourceName[Gypsum]]{ systemPower = #$@MODULE[USI_Harvester]/Ratio$ @systemPower *= #$Efficiency$ //set the heat ouput as proportional to the EC usage. // I *think* that all the energy goes into heat. And repeat this for all 13 or so resources. I get a set of very strange errors in my log, and i haven't the foggiest of what they mean and what I'm doing wrong: [LOG 11:18:23.565] Applying update SystemHeatHarvesters/genericHarvestersUSI/@PART[*]:HAS[@MODULE[USI_Harvester]:HAS[@INPUT_RESOURCE:HAS[#ResourceName[ElectricCharge]]]]:FINAL to UmbraSpaceIndustries/MKS/Parts/MKS_Drill_01.cfg/PART[MKS_Drill_01] [WRN 11:18:23.572] Can't find nodeType:MODULE [ERR 11:18:23.572] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.575] Can't find nodeType:MODULE [ERR 11:18:23.575] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.576] Can't find nodeType:MODULE [ERR 11:18:23.576] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.577] Can't find nodeType:MODULE [ERR 11:18:23.577] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.581] Can't find nodeType:MODULE [ERR 11:18:23.581] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.587] Can't find nodeType:MODULE [ERR 11:18:23.587] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.589] Can't find nodeType:MODULE [ERR 11:18:23.589] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.591] Can't find nodeType:MODULE [ERR 11:18:23.591] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.592] Can't find nodeType:MODULE [ERR 11:18:23.592] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.593] Can't find nodeType:MODULE [ERR 11:18:23.594] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.597] Can't find nodeType:MODULE [ERR 11:18:23.597] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.605] Can't find nodeType:MODULE [ERR 11:18:23.605] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [WRN 11:18:23.608] Can't find nodeType:MODULE [ERR 11:18:23.608] Error - Cannot parse variable search when inserting new key systemPower = #$@MODULE[USI_Harvester]/Ratio$ [\code] This then repeats for all MKS drills. I'm not even sure if the fix i'm trying to use will work, MKS and Systemheat don't interface that well, so if anyone happens to have an idea on that it'd be greatly appreciated too.
×
×
  • Create New...