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
  • 13:56, 30 December 2022 Kiokurashi talk contribs created page Module:SecondsToTime (Created page with "local t = {} function Main(frame) local totsec = frame.args.Time local seconds = totsec local ret = '' if seconds >= 86400 then -- Days ret = ret .. math.floor(seconds / 86400) .. "d" seconds = seconds % 86400 end if seconds >= 3600 then -- Hours if totsec > seconds then ret = ret .. " " end ret = ret .. math.floor(seconds / 3600) .. "h" seconds = seconds % 3600 end if seconds >= 60 then -- Minutes if totsec > seconds then ret = ret .. " " end ret...")