Quote:
Originally Posted by Vince
As it appears from your screenshots VehicleData[i][vPlate] is empty, and in that case strcmp will return 0. Try changing your statement to:
pawn Код:
if(!isnull(VehicleData[i][vPlate]) && strcmp(VehicleData[i][vPlate], inputtext, true) == 0)
|
Oh okay that seems like it should work. Thanks for the help Vince. I'll give it a go.