Module:WeightToPercent: Difference between revisions

From eMushpedia
Jump to navigation Jump to search
imported>Septembre
debug 4: localsss
imported>Septembre
debug 5: seems like it's not working if you don't use magic word parentOnly
Line 3: Line 3:


function p.main(frame)
function p.main(frame)
local args = getArgs(frame)
local args = getArgs(frame, {trim = true, removeBlanks = true, parentOnly = true})
return p.convert(args)
return p.convert(args)
end
end

Revision as of 14:28, 19 November 2025

Documentation for this module may be created at Module:WeightToPercent/doc

local getArgs = require('Module:Arguments').getArgs
local p = {}

function p.main(frame)
	local args = getArgs(frame, {trim = true, removeBlanks = true, parentOnly = true})
	return p.convert(args)
end
 
function p.convert(args)
	local weight = args[1]
	local totalweight = args[2]
	
	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
    else return 100 * totalweight / weight end
end
 
return p