Jump to content

Geysers count will increase if I create bigger map?


Recommended Posts

In the past that was how it worked.  No longer.  The map will spawn up to either 4 or 5 Geysers.  At 5 Geysers, there will always be 2 Steam, 2 NatGas, and 1 Chlorine.  Sometimes, one of them will not be spawned, because the category it belongs to in world gen ends up getting allocated to one of the Ruins instead.

1 hour ago, PhailRaptor said:

In the past that was how it worked.  No longer.  The map will spawn up to either 4 or 5 Geysers.  At 5 Geysers, there will always be 2 Steam, 2 NatGas, and 1 Chlorine.  Sometimes, one of them will not be spawned, because the category it belongs to in world gen ends up getting allocated to one of the Ruins instead.

This is now no longer the case, the new maps are capped at 4 geysers, you will always get 2 steam, but you may then get 2 nat gas or 1 nat gas and 1 chlorine.

Also like the other mentioned no, the map size does not dictate the amount of geysers, there is other files which deal with this.

Worldsize

\OxygenNotIncluded\OxygenNotIncluded_Data\StreamingAssets\worldgen\worlds\Default.yaml

Quote

worldsize:
  X: 256
  Y: 384

 

Number of geysers and where should they spawn

OxygenNotIncluded\OxygenNotIncluded_Data\StreamingAssets\worldgen\subworlds\HotMarsh.yaml

Quote

    geysers_a:
      - poi_swamp_geyser_steam
    geysers_b:
      - poi_swamp_geyser_methane

OxygenNotIncluded\OxygenNotIncluded_Data\StreamingAssets\worldgen\subworlds\Jungle.yaml

Quote

    geysers_a:
      - poi_jungle_geyser_steam 
    geysers_b:
      - poi_jungle_geyser_methane
      - poi_jungle_geyser_chlorine

 

17 minutes ago, R9MX4 said:

Number of geysers and where should they spawn

This shows where and the values, is there any chance you know where the map generation shows how many times it will pick from these POI?

I understand that it shows two 3 which are absolute and then the one which is one or the other;

geysers_b:
      - poi_jungle_geyser_methane
      - poi_jungle_geyser_chlorine

last time I tried, it was possible to just do:
 

geysers_b:
      - poi_jungle_geyser_methane

geysers_c:
      - poi_jungle_geyser_chlorine

geysers_d:
      - COPY_OF_poi_jungle_geyser_methane

 

( And by "COPY OF", I mean you have to make a copy of the poi itself with a different name. Not sure where it was, just grep -ri for it. There might be an option to allow the same poi to be included multiple times, but if there is, I didn't figure out how it works )

1 hour ago, Phlogiston said:

last time I tried, it was possible to just do:
 


geysers_b:
      - poi_jungle_geyser_methane

geysers_c:
      - poi_jungle_geyser_chlorine

geysers_d:
      - COPY_OF_poi_jungle_geyser_methane

 

( And by "COPY OF", I mean you have to make a copy of the poi itself with a different name. Not sure where it was, just grep -ri for it. There might be an option to allow the same poi to be included multiple times, but if there is, I didn't figure out how it works )

Are you certain that you need to copy the poi? I would think that just adding the string "geysers_d:" populated with what geyser you want, should be enough.

For example:

Geyser_d:

-poi_jungle_geyser_chlorine

 

You can pack as many poi variations into one set as you want, but only one poi per set will be generated. Example from the OilPockets.yaml:

oil_geysers_a:
    - poi_oilpockets_geyser_a
    - poi_oilpockets_geyser_b
    - poi_oilpockets_geyser_c    
oil_geysers_b:
    - poi_oilpockets_geyser_d
    - poi_oilpockets_geyser_e
    - poi_oilpockets_geyser_f
oil_geysers_c:
    - poi_oilpockets_geyser_a
    - poi_oilpockets_geyser_b
    - poi_oilpockets_geyser_c
    - poi_oilpockets_geyser_d
    - poi_oilpockets_geyser_e
    - poi_oilpockets_geyser_f

The generator will create 3 oil reservoirs because 3 sets are defined within this biome.

12 hours ago, BlueLance said:

This is now no longer the case, the new maps are capped at 4 geysers, you will always get 2 steam, but you may then get 2 nat gas or 1 nat gas and 1 chlorine.

When did that change?  Must have been recent.

12 hours ago, BlueLance said:

Also like the other mentioned no, the map size does not dictate the amount of geysers, there is other files which deal with this.

I literally said exactly this in the post you quoted...

Archived

This topic is now archived and is closed to further replies.

Please be aware that the content of this thread may be outdated and no longer applicable.

×
  • Create New...