25 lines
577 B
Lua
25 lines
577 B
Lua
|
|
local tip = CreateFrame("GameTooltip")
|
|
tip:SetOwner(WorldFrame, "ANCHOR_NONE")
|
|
|
|
local lcache = {}
|
|
for i=1,30 do
|
|
lcache[i] = tip:CreateFontString()
|
|
-- lcache[i]:SetFontObject(GameFontNormal)
|
|
tip:AddFontStrings(lcache[i], tip:CreateFontString())
|
|
end
|
|
|
|
local knowns = setmetatable({}, {__index = function(t, i)
|
|
tip:ClearLines()
|
|
if not tip:IsOwned(WorldFrame) then tip:SetOwner(WorldFrame, "ANCHOR_NONE") end
|
|
tip:SetHyperlink(i)
|
|
for i=1,tip:NumLines() do
|
|
if lcache[i]:GetText() == ITEM_SPELL_KNOWN then
|
|
t[i] = true
|
|
return true
|
|
end
|
|
end
|
|
end})
|
|
|
|
GVS_SCANNER = knowns
|