SA-MP Forums Archive
[FilterScript] [FS] Auto Random Weather System - 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: Filterscripts (https://sampforum.blast.hk/forumdisplay.php?fid=17)
+--- Thread: [FilterScript] [FS] Auto Random Weather System (/showthread.php?tid=53973)



[FS] Auto Random Weather System - juio1234 - 25.10.2008

Basic Auto Weather system

This Filterscript auto changes the weather on your server every 10 minutes to a random Weather ID.

Download link 1: http://www.zshare.net/download/50408108c5e2667e

Download link 2: http://www.savefile.com/files/1858762

Installation

1) Extact the autoweather.zip file and place autoweather.amx into your servers filterscript folder.
2) Then open server.cfg and add autoweather to the filterscripts line.
3) Start the server then it should all work fine.

Tested and works



Re: [FS] Auto Random Weather System - whooper - 25.10.2008

there is plenty of these fs's but very nice


Re: [FS] Auto Random Weather System - juio1234 - 16.11.2008

Quote:
Originally Posted by whooper
there is plenty of these fs's but very nice
thx


Re: [FS] Auto Random Weather System - avenger678 - 16.11.2008

Good job, want a rapidshare link?


Re: [FS] Auto Random Weather System - juio1234 - 16.11.2008

Quote:
Originally Posted by avenger678
Good job, want a rapidshare link?
sure thx post it and ill add it


Re: [FS] Auto Random Weather System - avenger678 - 16.11.2008

no Problem


Re: [FS] Auto Random Weather System - Rks25 - 16.11.2008

pastebin link please.


Re: [FS] Auto Random Weather System - Zezombia - 16.11.2008

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

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);
}



Re: [FS] Auto Random Weather System - juio1234 - 22.02.2009

Quote:
Originally Posted by Zezombia
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

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);
}
what was the point of quoting my snippet? i made it into a FS because some people pmed me and asked me to.


Re: [FS] Auto Random Weather System - RatHack - 02.06.2010

Nice, thx

running in my server.


Re: [FS] Auto Random Weather System - alpha500delta - 02.06.2010

Quote:
Originally Posted by D4mOn_
Nice, thx

running in my server.
lol this can be made yourself easely...

Atleast it looks easy...

ah whatever its pretty nice .


Re: [FS] Auto Random Weather System - park4bmx - 02.06.2010

Nice FS but you didn't have to upload it to some site that you have to wait 30 Sec for 17 lines



Re: [FS] Auto Random Weather System - alpha500delta - 02.06.2010

Quote:
Originally Posted by park4bmx
Nice FS but you didn't have to upload it to some site that you have to wait 30 Sec for 17 lines
yeah, Use pastebin or [ pawn] [ /pawn] (without spaces) for little codes .


Re: [FS] Auto Random Weather System - Reix[EST] - 28.10.2011

Thanks,working 100%


Re: [FS] Auto Random Weather System - BlackSA - 29.10.2011

It will be better to change the 600000 to random number, that means the weather will change and you don't know when.


Respuesta: [FS] Auto Random Weather System - [Nikk] - 18.11.2011

Very Nice