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

GetVehicleClassName

Материал из RAGE MP Wiki Archive
Версия от 17:34, 12 декабря 2019; imported>Avoid (Created page with "Returns the vehicle's class name. {{CSharpContainer| {{#tag:pre|string {{Template:CSharp_Serverside_namespace}}Vehicle.GetVehicleClassName(int classId);}} {{Parameters}} *'''...")
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Returns the vehicle's class name.


string NAPI.Vehicle.GetVehicleClassName(int classId);

Parameters

  • classId: parameter input should be in int type

NOTE: This function returns the class name in string type.

Example

<syntaxhighlight lang="csharp"> string classId = NAPI.Vehicle.GetVehicleClassName(classId); </syntaxhighlight>