09.08.2014, 16:24
Debug your script by printing VehicleInfo[i][vModel] before spawning the vehicle.
pawn Код:
printf("%d", VehicleInfo[i][vModel]);
//OR
new str[3];
format(str, sizeof str, "%d", VehicleInfo[i][vModel]);
SendClientMessageToAll(-1, str);