13.09.2017, 12:42
Don't use ! and == 0 at once.
It's the same expression. Both check for the value being zero.
Just do
or
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]))