21.12.2013, 19:15
Use TextDrawSetString.
Only takes 1 TD, also I'd like to point out you can make an array with all vehicles and do this in just a few lines of code.
pawn Code:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger) {
new model = GetVehicleModel( vehicleid );
if (model == 520) TextDrawSetString(car, "Hydra");
return true;
}