所以我正在尝试创建一些东西,我已经遍布整个地方寻找生成随机数的方法。但无论我在哪里测试我的代码,它都会产生一个非随机数。这是我写的一个例子。
local lowdrops = {"Wooden Sword","Wooden Bow","Ion Thruster Machine Gun Blaster"}
local meddrops = {}
local highdrops = {}
function randomLoot(lootCategory)
if lootCategory == low then
print(lowdrops[math.random(3)])
end
if lootCategory == medium then
end
if lootCategory == high then
end
end
randomLoot(low)
无论我在哪里测试我的代码,我都会得到相同的结果。例如,当我在这里测试代码http://www.lua.org/cgi-bin/demo时,它总是以“离子推进器机枪式冲击波”结束,并且不会随机化。就此而言,只需测试
random = math.random (10)
print(random)
给了我9,有什么我想念的吗?
答案 0 :(得分:23)
在使用math.randomseed()
之前,您需要运行一次math.random()
,如下所示:
math.randomseed(os.time())
一个可能的问题是,在某些平台中,第一个数字可能不是那么“随机化”。因此,更好的解决方案是在使用它们之前弹出一些随机数:
math.randomseed(os.time())
math.random(); math.random(); math.random()