Who know is this a filter script ?
#1

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

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

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

The search button is always at your service.

http://forum.sa-mp.com/showthread.ph...stname+changer
Reply
#5

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


Forum Jump:


Users browsing this thread: 1 Guest(s)