Module:Test2

From ProleWiki, the proletarian encyclopedia
Revision as of 01:33, 18 February 2023 by Forte (talk | contribs) (Using time in seconds of the os to generate more randomness)
local p = {}

function p.randomNumber(frame)
	local seed = tostring(os.time()):reverse():sub(1,5)
	math.randomseed(seed)
	local min = tonumber(frame.args[1]) or 0
	local max = tonumber(frame.args[2]) or 100
	return math.random(min, max)
end

return p