Module:Random: Difference between revisions

From MassiveCraft Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 4: Line 4:


function x.tips()
function x.tips()
math.randomseed(os.time())
local l = math.random(15)
local l = math.random(15)
x = l
x = l

Revision as of 04:43, 29 August 2015

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

local x = {}

math.randomseed(os.time())

function x.tips()
	math.randomseed(os.time())
	local l = math.random(15)
	x = l
	return x
end

return x