13.09.2017, 12:58
Quote:
Don't use ! and == 0 at once.
It's the same expression. Both check for the value being zero. Just do Код:
if(strcmp(VehicleNumberPlate[id], PlayerInfo[playerid][pPlate1]) == 0) Код:
if(!strcmp(VehicleNumberPlate[id], PlayerInfo[playerid][pPlate1])) |