Cam's Test Wiki
Advertisement

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

-- lua version of http://runescape.wikia.com/wiki/Template:ExchangeItem

local p = {}

local function loadData ( item )
    mw.log( item )
end

function p.icon ( frame )
    mw.log( 'icon' )
    local item = frame.args[1]
end

function p.price ( frame )
    mw.log( 'price' )
end

function p.diff ( frame )
    mw.log( 'diff' )
end

function p.value ( frame )
    mw.log( 'value' )
end

function p.limit ( frame )
    mw.log( 'limit' )
end

function p.table ( frame )
    mw.log( 'table' )
end

return p
Advertisement