Main public logs
Jump to navigation
Jump to search
Combined display of all available logs of eMushpedia. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 04:25, 24 April 2026 Apollo105 talk contribs created page Module:WeightToPercent (Created page with "local p = {} function p.convert(frame) local weight = frame.args['weight'] local totalweight = frame.args['total'] if weight == nil then return "ERROR: weight input (1rst arg) is nil" elseif totalweight == nil then return "ERROR: totalweight (2nd arg) input is nil" elseif weight == 0 then return 0 end return tonumber(string.format("%.1f", weight * 100 / totalweight)) end return p")