• If you have a mod, tool or prefab, please use the Resources section. Click Mods at the top of the forums.

Always Sunny Mod?

Zagan

Refugee
Is there a mod or can someone make a mod to make it always clear and sunny all over the map? I'm just getting tired of all the storms, fog, rain, and snow. A mod that lets you control the weather would be great.

 
yep yep, biomes.xml

sorry im too busy to make the modlet, but

here is what you need to edit in each biome type;

Code:
	<biome name="snow" biomemapcolor="#FFFFFF">
	<weather>
		<Temperature min="-60" max="-30" prob="1"/>
		<Fog min="0" max="0" prob=".9"/>
		<Fog min="100" max="100" prob=".1"/>
		<CloudThickness min="0" max="100" prob=".5"/>
		<CloudThickness min="95" max="100" prob=".5"/>
		<Precipitation min="0" max="0" prob=".0"/> <!-- it has to be at least 70% cloudy before it can rain -->
		<Precipitation min="50" max="100" prob=".75"/>
		<Wind min="20" max="40" prob="0.9"/>
		<Wind min="40" max="100" prob="0.1"/>
     <ParticleEffect prefab="ParticleEffects/p_snowstorm1" ChunkMargin="7"/>
   </weather>
change each

Code:
min="*" max="*"
to

Code:
min="0" max="0"
then no fog, no clouds, no temp drops, no wind, no rain can ever happen.

there isnt a value for sun, that is default except when these values get chosen,

i suppose you could instead change

Code:
prob="*" to prob="0"
and that should keep them from ever being chosen, but it would be safer to just adjust the effects in case the biomes are counting on being able to choose one of these

you cannot use replace all, because ores and what not get determined by this file with mins and maxes lower in the file, so be careful to only change the ones inside weather

 
OK, so I can see what to change, now I just need to figure out the code i need to change it without messing up the rest of the stuff.

 
it could be formed into a modlet, but would take a bit of work, or you can just go through and edit it to zero's for your own personal server

 
Back
Top