SetVehicleNumberPlate
Внешний вид
This function sets the number plate of a vehicle.
void NAPI.Vehicle.SetVehicleNumberPlate(Vehicle vehicle, string plate);
Parameters
- vehicle: parameter input should be in Vehicle type
- plate: parameter input should be in string type, max length is 8 characters
Example
<syntaxhighlight lang="csharp"> NAPI.Vehicle.SetVehicleNumberPlate(vehicle, "RAGEMP"); </syntaxhighlight>