Native referenceFiveM

_GET_PED_MAKEUP_RGB_COLOR

0x013E5CFC38CD5387 PED
FUNCTION SIGNATURE
void _GET_PED_MAKEUP_RGB_COLOR(int makeupColorIndex, int* outR, int* outG, int* outB);
Property Value
Native Name _GET_PED_MAKEUP_RGB_COLOR
Hash 0x013E5CFC38CD5387
Return Type void
Parameters makeupColorIndex (int), outR (int*), outG (int*), outB (int*)

Description: Input: Makeup color index, value between 0 and 63 (inclusive). Output: RGB values for the makeup color specified in the input.

This is used with the makeup color swatches scaleform.

Use _0x4852FC386E2E1BB5 to get the hair colors.

Parameters

  • makeupColorIndex (int) — The hair color index. Value between 0-63 (inclusive).
  • outR (int*) — Output red value.
  • outG (int*) — Output green value.
  • outB (int*) — Output blue value.
Back to PED