"CommanderKeen;d-945125" wrote:
I'm on Sim day 22 now, and every single day it has rained. It even rains when it's sunny!!!!!!!!!!!!!!!!!!!!!!! :/ :o Now, to be clear, it's not constantly raining, but at some point during the day or night it will rain.
"CommanderKeen;c-16629736" wrote:
Sorry, but no. In real life, it does not rain every single day.
I returned to Illinois from California in May one year on Summer Break and it rained at some point in the day for an entire month straight....every freaking day. I was keenly aware of it because I had just spent the last 3 years living in Southern California where it's sunny all but 2 weeks of the year. So, yes, in real life, it is possible for somewhere to get 22 straight days with some kind of rain....not likely, but possible.
"fadingaudio;c-16632577" wrote:
That's great, but it's not random no matter how many people who don't understand coding, programming, and math says this, it will still not ever be true. That's not how programming works and computers cannot generate true randomness in their selection. It's not physically possible. Random number generators that are so popular aren't actually random either. They can't generate true randomness and everything they do is based on mathematical equations. This is true for every single game, program, and computer coding in the entire world. This needs to be adjusted because it's not playable when you have 28 straight days of rain. No matter how many people might like that, many of us don't. It's okay to not like it and wish it to be tuned differently.
Actually, that's exactly how random number generators in game code work and I've used them before in coding outcomes for a text-based game. For example, each world has a percentage chance of rain based upon what season the game is in. Let's say Willow Creek has a 50% of rain in the Spring. So, for example, you run a line of code which selects a random digit from 1 to 100. You then assign outcomes 1 to 50 as rain and outcomes from 51 to 100 as no rain based on that percentage chance. So every day in Willow Creek in Spring when the calendar flips to the next day, a roll is performed from 1 to 100 and if it comes up with a number from 1 to 50, then there would be rain. While it's unlikely that would come up in the 1 to 50 range for 22 straight times, it's still possible and that result is what people are referring to as "randomness". It's no different than flipping a coin....theoretically, the coin could come up heads 22 straight times even though that is very unlikely. On the 22nd flip, the coin doesn't know that it's been heads 21 previous times in a row....the coin has the same chance each time of being heads or tails no matter what the previous flips have been. Now, they have more weather outcomes programmed into the game for rain (light rain, heavy rain, thunderstorms) and other types of weather so you'd have more possible outcomes assigned for each roll but the concept remains the same.
They may need to adjust the percentage chance of certain types of weather for particular seasons or worlds so that it's more likely to create a variety of weather....and they could also program in some sort of weather check which looks at previous weather to adjust the chance of certain types of weather occurring for the current day......or it may have been intentional because they want each world to have a certain "feel" in each season.