More languages
More actions
m (Second attempt at pseudo-random) |
m (Loop prevent fallback, added fallback aux variable to make calculation easier for lower numbers) |
||
(17 intermediate revisions by the same user not shown) | |||
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 = s * s * math.random( | local rnd = s * s * math.random(a,b) | ||
while (rnd > b) do | local loop = 0 | ||
while (rnd > b or rnd < a) do | |||
loop = loop +1 | |||
if (loop > 50) then | |||
rnd = a | |||
break | |||
end | |||
if (rnd > b) then | |||
local aux = b/2 | |||
if (aux < 1) then | |||
aux = 2.5 | |||
end | |||
rnd = math.floor(rnd/aux) | |||
elseif (rnd < a) then | |||
local aux = b/2 | |||
if (aux < 1) then | |||
aux = 2 | |||
end | |||
rnd = math.floor(rnd*aux) | |||
end | |||
math.randomseed(rnd) | |||
end | end | ||
return rnd | return rnd | ||
end | end | ||
return p | return p |
Latest revision as of 02:42, 18 January 2023
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(a,b)
local loop = 0
while (rnd > b or rnd < a) do
loop = loop +1
if (loop > 50) then
rnd = a
break
end
if (rnd > b) then
local aux = b/2
if (aux < 1) then
aux = 2.5
end
rnd = math.floor(rnd/aux)
elseif (rnd < a) then
local aux = b/2
if (aux < 1) then
aux = 2
end
rnd = math.floor(rnd*aux)
end
math.randomseed(rnd)
end
return rnd
end
return p