Module:Random: Difference between revisions

From ProleWiki, the proletarian encyclopedia
m (Converted rnd from string to number)
m (String –> number conversion in template arguments)
Line 4: Line 4:
local parent = frame:getParent()
local parent = frame:getParent()
local a = parent.args[1] or 1
local a = tonumber(parent.args[1]) or 1
local b = parent.args[2] or 100
local b = tonumber(parent.args[2]) or 100
local Date = os.date()
local Date = os.date()
Line 11: Line 11:
local m = Date:match("%d+:(%d+):%d+")
local m = Date:match("%d+:(%d+):%d+")
local s = Date:match("%d+:%d+:(%d+)")
local s = Date:match("%d+:%d+:(%d+)")
local rnd = tonumber(s * s * math.random(1,10000))
local rnd = s * s * math.random(1,10000)
while (rnd > b) do
while (rnd > b) do

Revision as of 23:33, 5 October 2022

local p = {}

function p.random(frame)
	local parent = frame:getParent()
	
	local a = tonumber(parent.args[1]) or 1
	local b = tonumber(parent.args[2]) or 100
	
	local Date = os.date()
	local h = Date:match("(%d+):%d+:%d+")
	local m = Date:match("%d+:(%d+):%d+")
	local s = Date:match("%d+:%d+:(%d+)")
	local rnd = s * s * math.random(1,10000)
	
	while (rnd > b) do
		rnd = math.floor(rnd/2)
	end
	while (rnd < a) do
		rnd = math.floor(rnd*1.5)
	end
	return rnd
end
return p