Main public logs

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

Logs
  • 12:14, 6 October 2025 T-Bone talk contribs created page Module:OOOInfoBox (Created page with "local p = {} local DOCS_TITLE = 'Data:Docs.json' -- Load the JSON docs file local function load_docs() local t = mw.title.new(DOCS_TITLE) if not t then return {} end local content = t:getContent() or '' if content == '' then return {} end local ok, data = pcall(mw.text.jsonDecode, content) return (ok and type(data) == 'table') and data or {} end local DOCS = load_docs() -- Small helper local function pick(args, data, key) local v = args[key...")