Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of Nguhcraft Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 09:46, 4 July 2026 Astaryuu talk contribs created page Module:Radix (Created page with "local r = {} r.decimal_to = function(frame) -- Get arguments from call local decimal = abs(tonumber(frame.args[1])) local sign = decimal > 0 and "" or "-" -- If decimal is 1, return itself if decimal == 1 then return tostring(decimal) end -- Newradix is the radix to convert to local newradix = tonumber(frame.args[2]) local characters = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ" -- precision is the number of digits below 1 to use -- if decimal is less than 1/new...")