SA-MP Forums Archive
SetVehicleNumberPlate not working - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: SetVehicleNumberPlate not working (/showthread.php?tid=508022)



SetVehicleNumberPlate not working - Tadas - 20.04.2014

Hello, I have this code:
pawn Код:
public OnPlayerEnterVehicle(playerid, vehicleid, ispassenger)
{
    SetVehicleNumberPlate(vehicleid, "BlaBla");
    return 1;
}
When I enter vehicle plate does not change. What's wrong ?


Re: SetVehicleNumberPlate not working - Konstantinos - 20.04.2014

The vehicle must be respawned or restreamed for the changes to take effect.


Re: SetVehicleNumberPlate not working - Tadas - 20.04.2014

Oh... Thanks I will try it another way.