All public logs

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

Logs
  • 11:23, 17 October 2024 Alex talk contribs created page Module:MinMax (Created page with "local p = {} local expr = mw.ext.ParserFunctions.expr function p.min(frame) local args = getargs(frame) return p._min(args) end function p._min(tbl) local low = tbl[1] for _, v in ipairs(tbl) do if v < low then low = v end end return low end function p.max(frame) local args = getargs(frame) return p._max(args) end function p._max(tbl) local high = tbl[1] for _, v in ipairs(tbl) do if v > high then high = v end end return high end...")