public
Description: WoW Addon - 1, 2... 3?
Homepage: http://www.tekkub.net/addons/NutCounter
Clone URL: git://github.com/tekkub/nutcounter.git
Click here to lend your support to: nutcounter and make a donation at www.pledgie.com !
nutcounter / tekIDmemo.lua
100644 21 lines (16 sloc) 0.321 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
local ids = LibStub:NewLibrary("tekIDmemo", 2)
if not ids then return end
 
setmetatable(ids, {
__index = function(t,i)
if type(i) == "number" then
t[i] = i
return i
elseif type(i) ~= "string" then
t[i] = false
return
end
 
local id = tonumber(i:match("item:(%d+)"))
t[i] = id
return id
end,
})