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

RemoveVehicleMod

Материал из RAGE MP Wiki Archive
Версия от 21:43, 27 ноября 2019; imported>Avoid (Created page with "This function removes mods attached to a vehicle. {{CSharpContainer| {{#tag:pre|void {{Template:CSharp_Serverside_namespace}}Vehicle.RemoveVehicleMod(Vehicle vehicle, int modT...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

This function removes mods attached to a vehicle.

void NAPI.Vehicle.RemoveVehicleMod(Vehicle vehicle, int modType);

Parameters

  • vehicle: parameter input should be in Vehicle type
  • modType: parameter input should be in int type

Example

<syntaxhighlight lang="csharp"> NAPI.Vehicle.RemoveVehicleMod(vehicle, modType); </syntaxhighlight>