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