22.09.2009, 01:56
I need some help with puting license plates on my server the person who does it will get a awesome surprise i also need help with a mdc but if you will help you will get a surprise
- SetVehicleNumberPlate does not work. This function can't work due to SA's internal coding which only assigns 1 numplate per vehicle model. The function itself will be left in for future use if it can be made to work. |
Use this little app i made to put custom number plates onto the cars. LePlates - http://forum.sa-mp.com/index.php?topic=116406 |
new mycar;
mycar = AddStaticVehicle(vehicleid, X, Y,Z, Angle, Color1, Color2)
SetVehicleNumberPlate(mycar, "LEET");
SetVehicleToRespawn(mycar);
OnVehicleDeath(vehicleid, killerid)
{
if (vehicleid == mycar)
{
SetVehicleNumberPlate(LemoXcar, "LEET");
SetVehicleToRespawn(LemoXcar);
}
}
// GENERATED BY LePlates!