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:53, 17 May 2024 Nads talk contribs created page Module:Random (Created page with "require('strict') local Assert = require('Module:Assert') local bit32 = require('bit32') --- @class Random --- @field seed number --- @field seed2 number local Random = {} local function imul(a, b) return bit32.bor(a * bit32.band(b, 65535) + bit32.bor(bit32.lshift((a * (bit32.rshift(b, 16))), 16), 0), 0) end local function hash(a, b) if b == nil then b = 5381 end a = imul(a, -862048943) a = imul(bit32.bor(bit32.lshift(a, 15), bit32.rshift(a,...")