Module:MonsterBox

From Curse of Aros
Revision as of 12:10, 11 February 2019 by Bart (talk | contribs)
Jump to: navigation, search

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

local export = {}

local pagename = mw.title.getCurrentTitle().fullText

function export.show(frame)
    return 'Hello, my ' .. frame.args[1] .. ' is ' .. frame.args[2] .. ' on ' .. pagename
end

return export