All public logs

From IdleOn MMO Wiki

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

Logs
  • 01:16, 12 March 2024 Kiokurashi talk contribs created page Module:NumberFormater (Created page with "local p = {} local UNIT_EXPONENTS = { k = 3, m = 6, b = 9, t = 12, q = 15, qq = 18 } function p.main(frame) local numstr = frame.args[1] if numstr == "Lots" then return numstr end if tonumber(numstr) == nil then return "<BAD NUMBER>" end return formatnumber(numstr) end function formatnumber(arg) -- how many digts are after the first digit divided by 3. local unit = math.floor((arg:len() - 1) / 3) if unit == 0 then return arg end...")