API GetItemQualityColor
Jump to navigation
Jump to search
Returns RGB color codes for an item quality.
r, g, b, hex = GetItemQualityColor(quality)
Parameters
Arguments
- quality
- quality
- Integer - The numeric ID of the quality from 0 (Poor) to 7 (Heirloom).
Returns
- r, g, b, hex
- r
- Float - The Red component of the color
- g
- Float - The Green component of the color
- b
- Float - The Blue component of the color
- hex
- String - Contains the hexidecimal representation of the string, as well as "|c" in the beginning.
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).
0 Poor #9d9d9d |
Details
- GetItemQualityColor() was added in 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 3.0 for heirloom items.
- ITEM_QUALITY7_DESC is now defined as of 3.1.1.