17.08.2011, 21:45
Quote:
if(strcmp(cmd, "/announcerestart", true) == 0)
{ SendClientMessageToAll(playerid, COLOR_BLUE, " An administrator announced a server restart, You have 30 seconds to park/land your vehicles!"); } } return 1; } I wanna make a cmd, that lets admins over level 1337 admin do /announcerestart, and An administrator announced a server restart, You have 30 seconds to park/land your vehicles << SHOWS UP. Maybe even if i can make it auto-gmx after that, would be nice. I'ma newbie, but dont say i shouldnt try |
PHP код:
if(strcmp(cmd, "/announcerestart", true) == 0)
{
if(PlayerInfo[playerid][pAdmin] < 1337) return SendClientMessage(playerid, COLOR_BLUE< " You are not authorized to use that command");
SendClientMessageToAll(playerid, COLOR_BLUE, " An administrator announced a server restart, You have 30 seconds to park/land your vehicles!");
SendRconCommand("gmx");
return 1;
}