SA-MP Forums Archive
random weather - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: random weather (/showthread.php?tid=68184)



random weather - DauerDicht - 07.03.2009

hi, can u tell me what weather is this?

Quote:

#include <a_samp>

forward AutoWeather();

public OnFilterScriptInit()
{
SetTimer("AutoWeather", 1500000, 1);
AutoWeather();
return 1;
}

public AutoWeather()
{
new RandonWeather = random(15);
SetWeather(RandonWeather);
}

thanx!


Re: random weather - Antironix - 07.03.2009

Weather from id 0 to 14?


Re: random weather - DauerDicht - 07.03.2009

ok thx ^^