28.03.2012, 01:04
Exemple
Espero ter ajudado
pawn Код:
forward NomeServer();
new ccount = 0;
new ServidorNome[3][128] = {
"NAME",
"NAME",
"NAME"
};
// GameModeInit //
SetTimer("NomeServer",750,1);
// nomee
public NomeServer()
{
ccount++;
if(ccount > 4)ccount = 0;
new string[128];
format(string, sizeof(string), "hostname %s", ServidorNome[ccount]);
SendRconCommand(string);
}