Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Module:Item: Difference between revisions

From Growtopia Wiki
NekoPillow (talk | contribs)
Removing all content from page
NekoPillow (talk | contribs)
No edit summary
Line 1: Line 1:
local item = {}


local md5 = mw.loadData('Module:Md5')
local function getItemData(hash)
    local a = mw.loadData('Module:Item/Data')
    return a[hash] or {0, 0}
end
function item.SpriteByName(frame)
    local order = getItemData(md5.md5(frame.args[1]))[1]
    return order
end
return item

Revision as of 15:55, 12 August 2019

Documentation for this module may be created at Module:Item/doc

local item = {}

local md5 = mw.loadData('Module:Md5')

local function getItemData(hash)
    local a = mw.loadData('Module:Item/Data')
    return a[hash] or {0, 0}
end

function item.SpriteByName(frame)
    local order = getItemData(md5.md5(frame.args[1]))[1]
    return order
end

return item