方法介绍
方法名称:设随机数种子
语法:math.randomseed(seed)
参数说明:seed可以是任意有效的数值表达式
方法例子
math.randomseed(os.time())
local r = math.random(1,100)
print(r)