16.11.2008, 19:08
It's 17 or less lines...
[me=ξezombia]spends hours looking through the topics for CrazyK and finally finds...[/me]
http://forum.sa-mp.com/index.php?topic=12197.0
[me=ξezombia]spends hours looking through the topics for CrazyK and finally finds...[/me]
http://forum.sa-mp.com/index.php?topic=12197.0
pawn Code:
#include <a_samp>
forward AutoWeather();
public OnFilterScriptInit()
{
print("Auto Weather loaded.");
SetTimer("AutoWeather", 600000, 1);
AutoWeather();
return 1;
}
public AutoWeather()
{
new RandonWeather = random(15);
SetWeather(RandonWeather);
}