WoW API: GetFacialHairCustomization

From AddOn Studio
Revision as of 02:38, 14 March 2010 by WoWWiki>Starlightblunder (Created page with '{{wowapi}} Returns the type of facial hair customization available to the character. cType = GetFacialHairCustomization(); == Returns == ; cType : String - Race-dependent, glob…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

WoW API < GetFacialHairCustomization

Returns the type of facial hair customization available to the character.

cType = GetFacialHairCustomization();

Returns

cType
String - Race-dependent, globalized name of the facial hair customization available to the character:
  • "EARRINGS"
  • "FEATURES"
  • "HAIR"
  • "HORNS"
  • "MARKINGS"
  • "NORMAL"
  • "PIERCINGS"
  • "TUSKS"

Details

  • You may get a localized description of a particular customization by reading the FACIAL_HAIR_cType global variable:
print("You may customize your...", _G["FACIAL_HAIR_" .. GetFacialHairCustomization()]);