27.11.2010, 23:50
Hi everyone, im trying to allow only admins to use a name like "Carl" the normal users Name_Lastname so i tried this but doesnt works.
Thanks you so much if you could help me with this.
pawn Код:
if(PlayerInfo[playerid][pAdmin] < 1 || namestring == -1)
{
SendClientMessage(playerid, COLOR_LIGHTGREEN, "Server RolePlay");
SendClientMessage(playerid, COLOR_LIGHTBLUE, "_________________________________________________________________________");
SendClientMessage(playerid, COLOR_WHITE, "Tu Nombre no es aceptado.");
SendClientMessage(playerid, COLOR_WHITE, "Tienes que usar un nombre con el formato:");
SendClientMessage(playerid, COLOR_WHITE, "Nombre_Apellido tampoco se aceptan nombres de famosos Gracias.");
SendClientMessage(playerid, COLOR_LIGHTBLUE, "_________________________________________________________________________");
Kick(playerid);
return 1;
}