Перейти к содержанию

SetVehicleNumberPlate

Материал из RAGE MP Wiki Archive
Версия от 21:10, 27 ноября 2019; imported>Avoid
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

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>