Rather than start a new thread that specifically deals with my question (see below), I'll post my question as a bump to this thread, as I generally would like to promote the same thing OP was asking for.
MY QUESTION: What do "method =", "value =", and "max =" _DO_ in the "cluster_count =" block in files at:
C:\Steam\steamapps\common\Stellaris\map\setup_scenarios
For example, huge.txt
I have created my own:
C:\Users\Anthropoid\Documents\Paradox Interactive\Stellaris\mod\anthropoid\map\setup_scenarios\enormous.txt
Which works as intended.
However, my efforts to change the method=, value=, and max= were inconclusive.
MY QUESTION: What do "method =", "value =", and "max =" _DO_ in the "cluster_count =" block in files at:
C:\Steam\steamapps\common\Stellaris\map\setup_scenarios
For example, huge.txt
Code:
setup_scenario = {
name = "huge"
priority = 4 #priority decides in which order the scenarios are listed
num_stars = 1000
radius = 450 #should be less than 500, preferably less than ~460
num_empires = { min = 1 max = 39 } #limits player customization
num_empire_default = 29
fallen_empire_default = 5
advanced_empire_default = 8
colonizable_planet_odds = 1.0
cluster_count = {
method = one_every_x_empire
#method = constant
value = 1
max = 6
}
cluster_radius = 150
cluster_distance_from_core = 300
num_nebulas = 10
nebula_size = 60
nebula_min_dist = 200
supports_shape = elliptical
supports_shape = spiral_2
supports_shape = spiral_4
supports_shape = ring
}
I have created my own:
C:\Users\Anthropoid\Documents\Paradox Interactive\Stellaris\mod\anthropoid\map\setup_scenarios\enormous.txt
Code:
setup_scenario = {
name = "enormous"
priority = 5 #priority decides in which order the scenarios are listed
num_stars = 1500
radius = 490 #should be less than 500, preferably less than ~460
num_empires = { min = 20 max = 22 } #limits player customization
num_empire_default = 21
fallen_empire_default = 7
advanced_empire_default = 0
colonizable_planet_odds = 0.63
cluster_count = {
# method = one_every_x_empire
method = constant
value = 6
max = 10
}
cluster_radius = 150
cluster_distance_from_core = 300
num_nebulas = 10
nebula_size = 60
nebula_min_dist = 200
supports_shape = elliptical
supports_shape = spiral_2
supports_shape = spiral_4
supports_shape = ring
}
Which works as intended.
However, my efforts to change the method=, value=, and max= were inconclusive.