Ha jól értettem meg, akkor valami ilyesmire gondolhattál. ( Elég rövid?
)
#include < a_samp >
new WeatherTimer;
public ChangeWeather( );
public OnFilterScriptInit( ) return WeatherTimer = SetTimer( \"ChangeWeather\", 60000 * 20, true );
public OnFilterScriptExit( ) return KillTimer( WeatherTimer );
public ChangeWeather( ) {
SetWeather( random( 46 ) );
for( new playerid = 0; playerid < MAX_PLAYERS; ++playerid ) if( IsPlayerConnected( playerid ) ) SetPlayerTime( playerid, random( 25 ), random( 60 ) );
return 1;
}
ZeRo