30.04.2011, 15:52
pawn Код:
else if(GetPlayerColor(playerid) != COLOR_BLUE) return SendClientMessage(playerid, COLOR_RED, "Only Police officers can use this command!");
else if(GetPlayerColor(otherplayerid) != COLOR_WHITE) return SendClientMessage(playerid, COLOR_RED, "This player can't be wanted!");
else
{
SendClientMessage(otherplayerid,COLOR_RED,"You are now wanted!");
SendClientMessage(playerid,COLOR_BLUE,"That player is now wanted!");
SetPlayerWantedLevel(otherplayerid,1);
SetPlayerColor(otherplayerid,COLOR_ORANGE);
}

