There seems to be a general assumption that time has a profound effect on the result of the RNG. That assumes that the actual system clock is being used as a seed for the RNG, which doesn't have to be the case at all.
When the RNG is called and provides a result that result could easily be the same no matter when it's called. To explain better - if the RNG has provided 48 results so far then the next result would be #49. The value of #49 might have nothing to do with when the RNG is called to produce result #49 - it could be that #49 will contain the same value whether it's call now - or now - or --- now...
In that case, it makes no difference when you click the button - you have no control, or influence, over the outcome at all.
Now, it's likely that it uses a clock, I'm just saying it doesn't HAVE to use a clock. In any event it's unlikely they would ever reveal what they use for a RNG for security sake.
|