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
  • 11:39, 8 September 2024 BHY4A talk contribs created page Module:Happy Hour (Created page with "local p = {} local function isThursday(date) return os.date("%w", date) == "4" end local function previousThursday(date) local dayOfWeek = tonumber(os.date("%w", date)) return date - (dayOfWeek == 0 and 3 or dayOfWeek - 4) * 24 * 60 * 60 end local function startOfToday() local now = os.time() return os.time{year=os.date("%Y", now), month=os.date("%m", now), day=os.date("%d", now), hour=0, min=0, sec=0} end local function getHappyHourDates(happyHou...")