Combined display of all available logs of Hacks Guide Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:00, 15 December 2022 Ihaveahax talk contribs set 2595 as the approved revision for "Module:Title ID"
- 22:15, 15 December 2022 Ihaveahax talk contribs created page Module:Title ID (Created page with "local p = {} local function uniqueIdToTitleId(uidstr) local uniqueId if type(uidstr) == 'number' then uniqueId = uidstr else -- check if it starts with 0x local start = string.sub(uidstr, 0, 2) if start == '0x' then uniqueId = tonumber(uidstr) else uniqueId = tonumber(uidstr, 16) end end -- maybe this should allow for stuff like choosing content category? return string.format('00040000%06x00', uniqueId) end function p.makeTitleId(frame) return...")