All public logs
Jump to navigation
Jump to search
Combined display of all available logs of RuneRealm Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 15:35, 15 October 2024 Alex talk contribs created page Module:Mmgsection (Created page with "require('strict') local p = {} local round = require('Module:Number')._round local _coins = require('Module:Currency')._amount -- funcs from Module:Mmgtable local function sigfig(x, p) local x_sign = x < 0 and '-1' or '1' local x = math.abs(x) if x == 0 then return 0 end local n = math.floor(math.log10(x)) + 1 - p return tonumber(x_sign) * math.pow(10,n) * round(x/math.pow(10, n), 0) end local function autoround(x, f) x = tonumber(x) or 0 local _x if x...")