Difference between revisions of "Module:Random"

From Box of Rocks WIKI
Jump to navigation Jump to search
CraftingTable>Majr
(Created page with "local p = {} local seeded local randomseed = math.randomseed local random = math.random function p.random( m, n ) if not seeded then p.seed() end return random( n and...")
 
m (1 revision imported)
 
(No difference)

Latest revision as of 11:52, 13 May 2021

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

local p = {}
local seeded
local randomseed = math.randomseed
local random = math.random

function p.random( m, n )
	if not seeded then
		p.seed()
	end
	
	return random( n and m or m and 1 or 0, n or m or 1 )
end

function p.seed( seed )
	randomseed( seed or ( os.time() + os.clock() * 1000000000 ) )
	
	-- First few values of seed is not guaranteed to be random on some platforms
	random()
	random()
	
	seeded = true
end

return p