View Single Post
  #76  
Old 02-08-2013, 03:22 PM
Lubian Lubian is offline
Orc


Join Date: Mar 2011
Posts: 30
Default

I'm surprised many of you are breaking out on these random philosophical discussions and even thinking that "theoretical physicists" has anything to do with the computer RNG.

Nearly all computer RNGs are Pseudorandom, they're not really random at all. They generate a specific sequence of numbers based on the initial seed. Knowing the seed, you theoretically even know the set of numbers it will generate ahead of time. The initial seed is usually based on the time.

If coded properly, most programs will use the same RNG for everything (or a specific thread), which is what complicates trying to predict the numbers even if you knew the seed, since an unrelated unknown event could eat one of the sequence numbers for what you're trying to predict.

For a lot of systems (I haven't looked at the eqemu random code) there can be flaws or programming mistakes that make it easy to reverse engineer, predict certain situations that are supposed to be 'random', or make certain situations more likely to occur. There are a few open source emus that make this mistake :/.

Hopefully that answers your question about 'luck'.