Difference between revisions of "Module:SetSeed"

From Blaseball Wiki

(Created page with "math.randomseed(mw.site.stats.edits + mw.site.stats.pages + os.time() + math.floor(os.clock() * 1000000000))")
Tag: 2017 source edit
 
m
Tag: 2017 source edit
 
Line 1: Line 1:
math.randomseed(mw.site.stats.edits + mw.site.stats.pages + os.time() + math.floor(os.clock() * 1000000000))
+
function setseed()
 +
 
 +
math.randomseed(mw.site.stats.edits + mw.site.stats.pages + os.time() + math.floor(os.clock() * 1000000000))
 +
 +
end
 +
 
 +
return setseed

Latest revision as of 17:32, 4 October 2020

function setseed()

math.randomseed(mw.site.stats.edits + mw.site.stats.pages + os.time() + math.floor(os.clock() * 1000000000))

end

return setseed