[FilterScript] [FS] Auto Random Weather System
#1

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
Reply
#2

there is plenty of these fs's but very nice
Reply
#3

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

Good job, want a rapidshare link?
Reply
#5

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

no Problem
Reply
#7

pastebin link please.
Reply
#8

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);
}
Reply
#9

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.
Reply
#10

Nice, thx

running in my server.
Reply
#11

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 .
Reply
#12

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

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 .
Reply
#14

Thanks,working 100%
Reply
#15

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

Very Nice
Reply


Forum Jump:


Users browsing this thread: 4 Guest(s)