14.06.2011, 19:03
pawn Код:
if(strcmp(cmd, "/suspeito", true) == 0)
{
tmp = strtok(cmdtext, idx);
if(!strlen(tmp)) return SendClientMessage(playerid, -1, "use /suspeito id");
new suspeito = ReturnUser(tmp);
if(!IsPlayerConnected(suspeito) || suspeito == INVALID_PLAYER_ID) return SendClientMessage(playerid, -1, "ID Invбlido | Suspeito off.");
new string[0x3C*3]; new nome[MAX_PLAYER_NAME]; GetPlayerName(suspeito, nome, sizeof(nome));
format(string, sizeof(string), "Suspeito [%i]%s estб foragido, cerquem a favela e prendгo-no!"); SendClientMessageToAll(-1, string);
return 0x01;
}