Well you could, ya know, do it 1 - 10000. And divide the result by 100. Might not change anything, because I don't know anything about randomization in computers, but still...
Why isn't it good ??? If it's because it uses the same value every time still, then go go to File -> Preferences -> Uncheck "Use Fixed Random Seed"
And also, random might not always work if you use the button "Test Map", try to test in online
I love that quote ^^When random doesn't face your expectations, it is truly random ~ AceHart
Well it's not really just here, whatever I do on computer that is random seems to me like it is in bursts. But I don't know is it just an illusion or is it just a way a computer works...
Randoms can be more random
There are a billion and one ways to create "Random Numbers", a computer can't actually generate a true random number.
What I need is a better way to generate a Random Number than what WC3 has. I don't see how it couldn't be possible.
The algorithm behind there Random is obviously gives off bursts and it is producing adverse effects for me
A = Random(1,100)
B = Random(1,100)
C = Random(1,100)
D = Random(1,100)
E = Random(1,100)
X = (a+b+c+d+e)/5
Yeah, like Raven said, just use random numbers to form some kind of a formula. The more times you have a random number within the formula independently determined, the more "random" your final value will become.
Yeah, like Raven said, just use random numbers to form some kind of a formula. The more times you have a random number within the formula independently determined, the more "random" your final value will become.
Otherwise I will try to make my own, I'm sure there is a usable algorithm out there some where