Ко всем forward
Code
forward AutoWeather(); //Автоматическая смена погоды
Ну и создаем public
Code
//======================[Автоматическая смена погоды]===========================
public AutoWeather()
{
new RandonWeather = random(20);
SetWeather(RandonWeather);
}
//==============================================================================
Следующие действие в public OnGameModeInit()
Вставляем:
Code
SetTimer("AutoWeather", 10800000, 1);//Погода меняется каждые 3 часа
AutoWeather();
С тебя +