Jump to content
  • 0
Sign in to follow this  
GRChoke

How do I turn off Rain?

Question

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!-- 'reset' and 'enable' are a bool, and therefore supports: 0/1, true/false, yes/no -->
<!-- 'reset' controls whether you want to load in the weather from storage or not (false by default) -->
<!-- 'enable' controls whether this file is enabled or not (true by default) -->
<weather reset="0" enable="0">
    <overcast>
        <!-- Initial conditions of the overcast (target value, time to change, how long will it stay) -->
        <current actual="0.45" time="120" duration="240" />
        <!-- What is the range of the overcast value (0..1) -->
        <limits min="0.0" max="1.0" />
        <!-- How long does it take to the overcast to change from one value to other (time in seconds) -->
        <timelimits min="900" max="1800" />
        <!-- How much should the overcast change (0..1) -->
        <changelimits min="0.0" max="1.0" />
    </overcast>
    <fog>
        <!-- Initial conditions of the fog (target value, time to change, how long will it stay) -->
        <current actual="0.1" time="120" duration="240" />
        <!-- What is the range of the fog value (0..1) -->
        <limits min="0.0" max="1.0" />
        <!-- How long does it take to the fog to change from one value to other (time in seconds) -->
        <timelimits min="900" max="1800" />
        <!-- How much should the fog change (0..1) -->
        <changelimits min="0.0" max="1.0" />
    </fog>
    <rain>
        <!-- Initial conditions of the rain (target value, time to change, how long will it stay), restricted by thresholds (see below) -->
        <current actual="0.0" time="0" duration="0" />
        <!-- What is the range of the rain value (0..0) -->
        <limit min="0.0" max="0.0" />
        <!-- How long does it take to the rain to change from one value to other (time in seconds) -->
        <timelimits min="0" max="0" />
        <!-- How much should the rain change (0..0) -->
        <changelimits min="0.0" max="0.0" />
        <!-- What range of the overcast value allows the rain to be preset (min, max overcast value, time in seconds it takes for rain to stop if the overcast is outside of the specified range) -->
        <thresholds min="0.0" max="0.0" end="0" />
    </rain>
    <wind>
        <!-- Maximum wind speed (in m/s) -->
        <maxspeed>20</maxspeed>
        <!-- Min and max (relative 0..1) for the wind speed range, frequency of the wind changes -->
        <params min="0.0" max="1.0" frequency="30" />
    </wind>
    <!-- Lightning density (0..1), threshold for the lightning appearance (tied to the overcast value, 0..1), time (seconds) between the lightning strikes -->
    <storm density="1.0" threshold="0.7" timeout="25"/>
</weather>

 

I changed the values to 0 on rain yet it still rains

Share this post


Link to post
Share on other sites

6 answers to this question

Recommended Posts

  • 0

Because the game knows better and it simulates actual weather conditions or at least it tries. I would suggest to not touch that layer of the program. Ever. On our old server rain disappeared without a trace when it was not even modified in any means. Admin was pulling hair from his head while trying to get it work again - to no avail.

Share this post


Link to post
Share on other sites
  • 0

I don't understand why they would give us access to the weather file if we can't modify it how we want

Share this post


Link to post
Share on other sites
  • 0
On 11/25/2021 at 9:08 AM, GRChoke said:

<!-- 'reset' and 'enable' are a bool, and therefore supports: 0/1, true/false, yes/no -->
<!-- 'reset' controls whether you want to load in the weather from storage or not (false by default) -->
<!-- 'enable' controls whether this file is enabled or not (true by default) -->
<weather reset="0" enable="0">

Can you try setting "weather reset" to 1?

Share this post


Link to post
Share on other sites
  • 0
2 hours ago, GRChoke said:

i did but it still rains

Then you might need to try deleting the "event" files in you storage, this should reset the weather settings.

Share this post


Link to post
Share on other sites
  • 0

why isn't it simple to turn off rain? I shouldn't have to delete other things

Share this post


Link to post
Share on other sites

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
Sign in to follow this  

×