Returns a token used for displaying facial feature customization options. The token referred to by this function can be used to look up a global variable containing localized names for the customization options available to the player's race at character creation time and in the Barbershop UI; see example.


See also Barbershop functions.

Signature:

token = GetFacialHairCustomization()

Returns:

  • token - Part of a localized string token for displaying facial feature options for the player's race (string)

Examples:

-- prints localized names for customization options
-- e.g. "Facial Hair", "Earrings", "Tusks"
local token = GetFacialHairCustomization();
print(_G["FACIAL_HAIR_"..token]);