ONI-Modloader icon indicating copy to clipboard operation
ONI-Modloader copied to clipboard

liquid tepidizer max temperature

Open viboudj opened this issue 6 years ago • 1 comments

Prerequisites

  • [X] I checked the documentation and forums and found no answer
  • [X] I checked to make sure that this feature has not already been filed
  • [X] I'm reporting the issue to the correct repository (for multi-repository projects)

Question Description

I would like change the liquid tepedizer's max temeperature (85°C not the overheat temperature). I would like use the Building Modifier Mods to modify LiquidHeater parameters but I can't find the good parameter.

Do you have a file with all building attributes? Or do you know the good liquidHeater's attribute?

Best Regard's

Context

Building Modifier Mods

viboudj avatar Jun 13 '19 22:06 viboudj

There is a list of basic attributes here, probably a bit outdated.

But, each building can have its own components, in your case LiquidHeaterConfig creates a SpeaceHeater component (which has the targetTemperature) in the ConfigureBuildingTemplate method. The only way to figure this out is to decompile the ONI code and look inside.

I haven't testet it but you couldtry to add and modify this snippet:

"LiquidHeater": {
 "SpaceHeater": {
   "targetTemperature": 358.15,
   "minimumCellMass": 400,
   "radius":  2.0
 }

}

Let me know if it works.

By the way, are you using the new version of BuildingModifier? It would benefit from some testing before I published it ;)

More details at the beginning of this post.

javisar avatar Jun 14 '19 06:06 javisar