06.09.2011, 21:40
Bom To Com Problema No Meu Comando. Ele Funciona Normalmente Mais Quando Vou Dar o 3є Aviso Fala Que o Comando Nao Existe.
Olhem o Comando.
pawn Код:
if(strcmp(cmd, "/mae", true) == 0)
{
new msg[256], pid, NomeA[MAX_PLAYER_NAME], NomeP[MAX_PLAYER_NAME];
if(PlayerInfo[playerid][Level] >= 1) {
tmp = strtok(cmdtext, idx); // We assign that we use strtok in this command to 'tmp'
if(!strlen(tmp)) return SendClientMessage(playerid, red, "USAGE: /mae [id]"); // If no ID is given
pid = strval(tmp); // Now we assign the 'giveplayerid'
if(!IsPlayerConnected(pid)) return SendClientMessage(playerid, red, "Player Nгo Conectado"); // when 'giveplayerid' isn't online
pid = strval(tmp);
GetPlayerName(pid,NomeP,MAX_PLAYER_NAME);
GetPlayerName(playerid,NomeA,MAX_PLAYER_NAME);
PlayerInfo[pid][Warnings]++;
if( PlayerInfo[pid][Warnings] == MAX_WARNINGS) {
format(msg, sizeof (msg), "***Administrador \"%s\" kickou \"%s\". (Motivo:Proibido Xingamento Mгe/Parentesto) (Aviso: %d/%d)***",NomeA,NomeP, PlayerInfo[pid][Warnings], MAX_WARNINGS);
return PlayerInfo[pid][Warnings] = 0;
} else
format(msg, sizeof (msg), "***Administrador \"%s\" deu a \"%s\" uma advertкncia. (Motivo:Proibido Xingamento Mгe/Parentesto) (Aviso: %d/%d)***", NomeA,NomeP,PlayerInfo[pid][Warnings], MAX_WARNINGS);
SendClientMessageToAll(yellow, msg);
} else SendClientMessage(playerid,red,"ERRO: Vocк nao tem permissгo para isso");
return 1; }