WoW API: GetItemQualityColor

From AddOn Studio
Jump to navigation Jump to search

Template:Source needed

WoW API < GetItemQualityColor

Returns RGB color codes for an item quality.

r, g, b, hex = GetItemQualityColor(quality)

Arguments

quality
Number - The numeric ID of the quality from 0 (Poor) to 7 (Heirloom).

Returns

r
Number - The Red component of the color (0 to 1, inclusive).
g
Number - The Green component of the color (0 to 1, inclusive).
b
Number - The Blue component of the color (0 to 1, inclusive).
hex
String - The 4 character hex UI escape sequence for this color.


Example

for i = 0, 7 do
  local r, g, b, hex = GetItemQualityColor(i);
  print(i, hex, getglobal("ITEM_QUALITY" .. i .. "_DESC"), string.sub(hex,5));
end

Result

Will print all qualities, in their individual colors (example result from version 3.1.1).

Template:Example/Begin 0 Poor ff9d9d9d
1 Common ffffffff
2 Uncommon ff1eff00
3 Rare ff0070dd
4 Epic ffa335ee
5 Legendary ffff8000
6 Artifact ffe6cc80
7 Heirloom ffe6cc80 ← Pre-Template:Legion-inline Legion
7 Heirloom ff00ccffTemplate:Legion-inline Legion[citation needed]
8 WoW Token ff00ccff[citation needed] Template:Example/End

Details

GetItemQualityColor() was added in Patch 1.9.1
If an invalid quality index is specified, GetItemQualityColor() returns white (same as index 1):
r = 1
g = 1
b = 1
hex = |cffffffff
Quality #7 was added in version Patch 3.0 for heirloom items.
ITEM_QUALITY7_DESC is now defined as of Patch 3.1.1.
Quality #8/ITEM_QUALITY8_DESC (aqua cyan) added in Patch 6.1.2 for Template:Item.
Quality #7/ITEM_QUALITY7_DESC changed to aqua cyan as of Patch 7.0.3.[1][citation needed]

References

  1. Items (Heirloom only). Legion Wowhead. Retrieved on 2016-06-30.

See also