06.04.2014, 13:21
pawn Код:
CMD:limparficha(playerid, params[])
{
new Nome[MAX_PLAYER_NAME], Nome2[MAX_PLAYER_NAME], Celulas[120];
if(sscanf(params, "u", id)) return SendClientMessage(playerid, -1, "Use /limparficha [Id]");
GetPlayerName(playerid, Nome, sizeof(Nome));
GetPlayerName(id, Nome2, sizeof(Nome2));
format(Celulas, sizeof(Celulas), "O Policial %s limpou a ficha do jogador %s", Nome, Nome2);
SendClientMessageToAll(-1, Celulas);
SendClientMessage(id, -1,"Vocк nгo й mais um procurado !");
SetPlayerWantedLevel(id, 0);
return 1;
}