16.10.2014, 16:29
You can't store a string inside one variable like that
That will only save the first character in 'plate'
Just leave the variable away and it should be working
pawn Код:
new plate = VehicleInfo[Veh][VehPlate];
format(msg, sizeof(msg), "PLATE: %s", plate);
Just leave the variable away and it should be working
pawn Код:
format(msg, sizeof(msg), "PLATE: %s", VehicleInfo[Veh][VehPlate]);