Moin Leute da ich finde das es in der Deutschen Community noch zu wenig 0.63 Script Informationen gibt, hier mal eine kleine Information wofür welche Einstellung für den Regen ist.
Das hier ist der Link zum original Post:
https://forums.dayz.com/topic/…=comments#comment-2400477
Code
/*
Sets limits of this phenomenon. (Intensity)
Default values are:
Min = 0
Max = 1
Min Function minimum (in range <0, 1>).
Max Function maximum (in range <0, 1>).
*/
weather.GetRain().SetLimits(float min, float max);
Alles anzeigen
Code
/*
Sets limits of change when forecast is computed.
These limits govern how much the forecast value can change when it is computed by weather controller.
Default values are:
Min = 0
Max = 1
Min Forecast change minimum (in range <0, 1>).
Max Forecast change maximum (in range <0, 1>).
*/
weather.GetRain().SetForecastChangeLimits( float min, float max );
Alles anzeigen
Code
/*
Sets time range in which next forecast can be computed.
Default values are:
Min = 300 (5 minutes)
Max = 3600 (1 hour)
Min Minimal number of seconds.
Max Maximal number of seconds.
*/
weather.GetRain().SetForecastTimeLimits( float min, float max );
Alles anzeigen
Code
/*
Sets the forecast.
forecast Desired forecast value that should be met in given time.
time A time of the next change (how long it takes in seconds to interpolate to given value).
minDuration A minimal time in seconds the change will last.
*/
weather.GetRain().Set( float forecast, float time = 0, float minDuration = 0);
Zum ausschalten des Regens den Code nutzen (Funktioniert habe ich getestet):
Ich konnte leider noch nicht Testen wie die verschiedenen einstellungen sich auswirken da sie auch in Englisch finde ich schlecht beschrieben sind.
Vielleicht hat ja jemand der etwas mehr Erfahrung könnt euch ja dann mal melden