All public logs

From Archaelund Wiki

Combined display of all available logs of Archaelund Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 18:56, 25 August 2023 MikeB talk contribs created page Module:Inventory (Created page with "local Inventory = {} -- this module implements Template:Inventory local mArguments = require('Module:Arguments') function Inventory.Table(frame) local args = mArguments.getArgs(frame) local items = args['Inventory'] or '' local mark = args['Markup'] or 1 local itemTable = '' for itm in mw.text.gsplit(items,';',true) do itemTable = itemTable .. frame:expandTemplate{ title = string.format(':%s',itm), args = {'InventoryEntry', mark} } return itemTable end...")