19.04.2014, 02:18
pawn Код:
forward Hostname();
public Hostname()
{
new rnd = random(3);
switch (rnd)
{
case 0: SendRconCommand("hostname [PH] Philippines Roleplay [ALL ACCOUNTS RESETED]");
case 1: SendRconCommand("hostname [PH] Philippines Roleplay [0.3z]");
case 2: SendRconCommand("hostname [PH] Philippines Roleplay [SOMETHING]");
}
}
public OnGameModeInit()
{
SetTimer("Hostname",3000,1); // EVERY 3 SEC IT CHANGES
return 1;
}