07.08.2013, 02:25
Place this code
under this callback
pawn Код:
//=========================[Anti-server advertisement]==========================
new dotcount =0;
new coloncount =0;
for(new a=1; a <strlen(cmdtext); a++)
{
if(cmdtext[a] == ':')
{
coloncount ++;
}
else
if(cmdtext[a] == '.')
{
dotcount ++;
}
}
if(dotcount == 3 && coloncount == 1 && PlayerInfo[playerid][pAdmin] < 1)
{
SendClientMessage(playerid, COLOR_GREEN, "You are not allowed to advertise other servers here.");
return 1;
}
pawn Код:
public OnPlayerCommandText(playerid, cmdtext[])