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

Vehicle::getLiveryName

Материал из RAGE MP Wiki Archive
Версия от 11:39, 9 мая 2024; imported>Shr0x (See also)
(разн.) ← Предыдущая версия | Текущая версия (разн.) | Следующая версия → (разн.)

Second Param = LiveryIndex

example

int count = VEHICLE::GET_VEHICLE_LIVERY_COUNT(veh);
for (int i = 0; i < count; i++)
{
char* LiveryName = VEHICLE::GET_LIVERY_NAME(veh, i);
}


this example will work fine to fetch all names
for example for Sanchez we get

SANC_LV1
SANC_LV2
SANC_LV3
SANC_LV4
SANC_LV5

Edited By KiLLerBoy_001
---------------------------------
Using _GET_LABEL_TEXT, you can get the localized livery name.

Syntax

<syntaxhighlight lang="javascript">vehicle.getLiveryName(liveryIndex);</syntaxhighlight>

Required Arguments

  • liveryIndex: int

Return value

  • String

Example

<syntaxhighlight lang="javascript"> // todo </syntaxhighlight>

See also