23.11.2014, 13:01
pawn Код:
public OnVehicleSpawn(vehicleid)
{
new plate[32];
format(plate, sizeof(plate), "LS-%04d", vehicleid);
SetVehicleNumberPlate(vehicleid, plate); // before calling this, make sure vehicle has a plate as the Wiki states
SetVehicleToRespawn(vehicleid);
return 1;
}