Who know is this a filter script ? - 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: Who know is this a filter script ? (
/showthread.php?tid=195221)
Who know is this a filter script ? -
[aKa]sEnZaTzIE - 01.12.2010
Hi everybody
Today ,i see at a samp server ,a nice filter script [ i dont know but i think is a filter script ]
When i make a click on that server show the name of server , but after 4 seconds, the name dissapear , and show you the site off that server .
You dont understand ?
I give you a example .
The name is :
Reavers RolePlay [o.3b] , after 3 seconds the name of the server is :
www.reavensroleplay. com or info etc,,,
is that a filter script or..
Thanks , im waitin for a answer .
Sorry for my bad language.
Re: Who know is this a filter script ? -
Scenario - 01.12.2010
So it's simply changing the name of the server every 4 seconds? It's done by a timer and a couple functions... it's not hard to do.
Re: Who know is this a filter script ? -
[aKa]sEnZaTzIE - 01.12.2010
Quote:
Originally Posted by RealCop228
So it's simply changing the name of the server every 4 seconds? It's done by a timer and a couple functions... it's not hard to do.
|
For you is not hard , you're a high roller if im carefull
)
I have a samp server from 2 weeks am 0 at script, and want to know if i can find a filter script with that function
Re: Who know is this a filter script ? -
Ruffles. - 01.12.2010
The search button is always at your service.
http://forum.sa-mp.com/showthread.ph...stname+changer
Re: Who know is this a filter script ? - [L3th4l] - 01.12.2010
pawn Код:
new ServNames[][] = {
{ "Test 1" },
{ "Test 2" },
{ "Test 3" },
{ "Test 4" } // ADD MORE HERE, REMEMBER, THE LAST ONE DOES NOT HAVE A COMMA!
};
forward ChangeSName();
public ChangeSName()
{
new R = random(sizeof(ServNames));
new Msgs[50];
format(Msgs, sizeof(Msgs), "hostname %s", ServNames[R]);
SendRconCommand(Msgs);
return 1;
}
public OnGameModeInit()
{
SetTimer("ChangeSName", 1000, true); // CHANGE, IT WILL CHANGE NAME EACH 1 SECOND!!
return 1;
}