Scratch that. I installed everything I needed and am looking at the source in Visual C++
Found weather_timer entries in zone.cpp
But there are many of them and it's not really clear what to do. Anyone able to help?
Is it this one
autoshutdown_timer.Start(AUTHENTICATION_TIMEOUT * 1000, false);
Weather_Timer = new Timer((MakeRandomInt(1800, 7200) + 30) * 2000);
Weather_Timer->Start();
LogFile->write(EQEMuLog:

ebug, "The next weather check for zone: %s will be in %i seconds.", short_name, Weather_Timer->GetRemainingTime()/1000);
weather_type = 0;
zone_weather = 0;
blocked_spells = NULL;
totalBS = 0;
aas = NULL;
totalAAs = 0;
gottime = false;
What happens if I set all the numbers to 0? What I want to do is just disable the time a zone waits before the random weather rules kick in. Going to set the numbers in Weather_Timer = new Timer((MakeRandomInt(1800, 7200) + 30) * 2000); to all 1 and see what happens.