Üdv azt szeretném kérdezni hogy ez a script müködni fog?
#define COLOR_BLUE 0x1229FAFF
#define FILTERSCRIPT
////////////////////////////////////////////////////////////////////////////////
#include <a_samp>
forward hostname();
new szervernevek[][]=
{
{\"Stunt Drift Parkour Szerver\"},
{\"Admin tagfelvétel off\"},
{\"oldalunk : xy.com\"},
{\"Segitõkész adminok\"},
{\"[HUN]Kazincbarcikai\"}
};
new hname;
public OnFilterScriptInit()
{
hname =SetTimer(\"hostname\",8000,true);
return 1;
}
public OnFilterScriptExit()
{
KillTimer(hname);
return 1;
}
public hostname()
{
new string[200];
format(string,sizeof(string),\"hostname %s\",szervernevek);
SendRconCommand(string);
return 1;
}
A-a ez nemfog.
szerintem sem,na de várj mindjá adok egyet..
#include <a_samp>
forward hostname();
public OnFilterScriptInit()
SetTimer(\"hostname\",8000,1);
return 1;
}
public hostname()
{
new var = random(5);
switch
{
case 0: SendRconCommand(\"hostname Stunt Drift Parkour Szerver\");
case 1: SendRconCommand(\"hostname Admin tagfelvétel off!\");
case 2: SendRconCommand(\"hostname oldalunk : xy.com\");
case 3: SendRconCommand(\"hostname Segitõkész adminok\");
case 4: SendRconCommand(\"hostname [HUN]Kazincbarcikai\");
}}