WoWInterface SVN QualityID

Compare Revisions

  • This comparison shows the changes necessary to convert path
    /
    from Rev 14 to Rev 15
    Reverse comparison

Rev 14 → Rev 15

trunk/QualityID/QualityID.lua
1,9 → 1,9
--######################
-- Interface: 30000
-- Title: QIDTest
-- Notes: Displays an items basic info in the color of the item's quality, in the tooltip.
-- License: GNUv2GPL
-- Author: Anaral of Lothar
--######################
-- Interface: 30000
-- Title: QIDTest
-- Notes: Displays an items basic info in the color of the item's quality, in the tooltip.
-- License: GNUv2GPL
-- Author: Anaral
-- Version: 3.05
--#######################
 
89,9 → 89,9
local _, _, id, id2 = strfind(link, "item:(%d+).+:(.+:.+)%[")
--While not all returns will be called, all are listed for personal reference.
local name,link,quality,ilvl,reqLevel,type,subType,stackCount = GetItemInfo(id)
-- text that you see in the tooltip
--text that you see in the tooltip
frame:AddLine(" ")
if QIDDB.showStackCount and stackCount > 2 then
if stackCount and QIDDB.showStackCount and stackCount > 2 then
frame:AddLine( "Stacks in lots of "..ITEM_QUALITY_COLORS[quality].hex..stackCount)
end
frame:AddLine( "Item ID: "..ITEM_QUALITY_COLORS[quality].hex..id)