Thread Rating:
1. Does the RNG affect both the deal and the draw?
2. How fast does the RNG run? Does a half second pause affect what cards come out?
3. Is the RNG running constantly? If I sat at that machine 5 minutes earlier, would the first cards be the same as they are now?
Thanks.
Quote: jmills
1. Does the RNG affect both the deal and the draw?
2. How fast does the RNG run? Does a half second pause affect what cards come out?
3. Is the RNG running constantly? If I sat at that machine 5 minutes earlier, would the first cards be the same as they are now?
.
#1. Yes.
#2. Most modern RNG's can produce millions of random numbers per second. I just tested -- 100M random numbers took 18 seconds.
#3. Most RNGs are seeded once when the program boots, based on some environmental condition. After that, the RNG produces the next value based on its current state, which doesn't change until the next number is delivered.
Quote: jmills2. How fast does the RNG run? Does a half second pause affect what cards come out?
As teliot said, it generates millions of numbers per second.
Quote: jmills3. Is the RNG running constantly?
Yes - otherwise it is far too easy for somebody to find a way to beat it. If 10 million numbers are generated each second, then even if your hand was moving at three times the speed of sound, it would move only about 1 mm in the time it would take to generate the next number.
Also note that the numbers are not generated in any particular single "loop" - that is, if a number from 1 to 1,000,000,000 is being generated, then the number 123,456,789 will not necessarily appear once in any 1,000,000,000 consecutive random numbers. This may have been how it was done decades ago - in fact, when i was in college in 1982, I created an electronic dice roller that rolled two six-sided dice by generating the pairs 1-1, 1-2, 1-3, 1-4, 1-5, 1-6, 2-1, 2-2. ..., 6-5, 6-6 in order over and over again at a rate of 1 million pairs per second - but somebody figured out that if you can figure out how frequently the "jackpot number" comes up, you can reduce the probability of hitting it to around 1 in 10,000, which, for a $1 slot machine with a $500,000 jackpot, is a serious advantage play.
Quote: jmillsDoes a half second pause affect what cards come out?
Yes, but you (probably) have no way of selecting a particular draw.
Think of it like this: the dealer is shuffling, and then shuffles again, and then shuffles again, until you say stop. The dealer is shuffling 1000 times a second.
is there proof of this?Quote: DieterThink of it like this: the dealer is shuffling, and then shuffles again, and then shuffles again, until you say stop. The dealer is shuffling 1000 times a second.
if the game was played on a table
and we walked up to the empty table to play, the dealer would not be shuffling the deck over and over.
in a shuffle machine it would be a waste of electricity
i think it is the same in a vp machine
online vp games where the code can be seen, like in javascript, the deck is not being shuffled many times per second
so i refuse to believe it is done that way in a vp machine
Sally
In fact I envision the deck being shuffled in between the cards dealt, and never stops shuffling until A.) the hand is over, after a draw, or B.) if all 5 cards are held.
What does NGL say about this?
But I also don't know how it works in machines. But I know constantly shuffling doesn't make sense, both between deals and between draws.
Quote: mustangsallyso i refuse to believe it is done that way in a vp machine
In order to be GLI certified, yes. GLI-11, section 3.3.4 says
Quote:The RNG shall be cycled continuously in the background between games and during game play at a speed that cannot be timed by the player.
Not shuffling after the deal might make the game vulnerable to a next-card information attack.
Not continuously shuffling might make the game more vulnerable to some sort of next-card information attack.
So, I see three scenarios:
- Shuffle before the deal, and then the deck is played out.
- Shuffle before the deal, and then shuffle before the draw.
- Shuffle the remaining deck constantly.
One of these is more secure than the others.
In any case the original question was "does a half second pause affect what cards come out?"
And I believe that's a yes, since a different RNG sequence would be selected, and the shuffle is based on the RNG.
... Just like I fully expect that hitting the spin button on a slot machine at a different moment selects a different
RNG stream and that gets you a different result. (But they all average together.)
Now, in a shuffle machine, there is a negligible chance of figuring out the order of the cards when they're closed away in that black box hanging off the table. That's not necessarily the case with passively reading computer memory.
It's not directly van Eck phreaking, but computer buses do make noise, and they could be intelligible (although security will wonder why you brought your suitcase down to keep you company while you play video poker).
It's also fairly easy to shuffle the deck as only needs 51 (or number of cards in shoe-1) random numbers. The computer only slows down when it runs out of numbers from the current state and needs to generate more - but again that doesn't take long and is part of the get-next-random-number routine.
When "Deal" is pressed, play the hand out (as one would probably have to keep a copy of the deck for debugging purposes or verification, I wouldn't re-shuffle prior to draw part).
Quote: RSBut I know constantly shuffling doesn't make sense, both between deals and between draws.
What real difference, all the shuffling, if what's going to happen happens anyway?
The only way that real life is randomized is if the fields are moving alongside the moving energies in the same way. If wormholes in space-time are always present. If we could not only see the universe from outside, but also reach in and rearrange it.
Only the One, the great mover, who is also the "road" can be in such constant flux.
Quote: DoubleOrNothingWhat real difference, all the shuffling, if what's going to happen happens anyway?
The only way that real life is randomized is if the fields are moving alongside the moving energies in the same way. If wormholes in space-time are always present. If we could not only see the universe from outside, but also reach in and rearrange it.
Only the One, the great mover, who is also the "road" can be in such constant flux.
I think it's time to reseed your chatbot program.
Quote: mustangsallyis there proof of this?
if the game was played on a table
and we walked up to the empty table to play, the dealer would not be shuffling the deck over and over.
in a shuffle machine it would be a waste of electricity
i think it is the same in a vp machine
online vp games where the code can be seen, like in javascript, the deck is not being shuffled many times per second
so i refuse to believe it is done that way in a vp machine
Sally
Nevada Gaming Regulation 14.040(2)(a):
"Each possible permutation or combination of game elements which produce winning or losing game outcomes must be available for random selection at the initiation of each play."
If the RNG worked on "generate the next number when you push the 'deal' button," then "every possible permutation" isn't possible for that play - just the next one in the RNG's predetermined sequence.
You would also have the situation where a machine would be "due" to hit a Royal Flush if it hadn't hit it in a while, as the "next Royal" would depend on the number of times the machine had been played since the previous one.
(Yes, I am aware that the number of plays between Royals would be different between any particular pair of them.)
Then again, this may not always be the case; how did Ronald Harris beat those keno machines in 1996?
he knew how the rng seed was first set, so the story goesQuote: ThatDonGuyThen again, this may not always be the case; how did Ronald Harris beat those keno machines in 1996?
but the American Coin event that was B4 that
read in Google Books
no problem with the rng,
but the program dis-allowed every other Royal Flush, IIRC
and many knew the machines were rigged (had to be rigged) but the NGC for 3 years could not find out how it was done
until a whistle-blower, Larry Volk, came out to Ronald Dale Harris
great story
except everyone looked the other way when the whistle-blower got his brains blown out B4 going to court
so fast to forget reality
money talks in Nevada
big time!
regulations without showing the code actually used
is like getting your brains blown out, some might say
is that in a Rolling Stones song?
I can play open G guitar just like Keith (i know!) and Stevie Riks (all these English guys)
Sally
Quote: DoubleOrNothingWhat real difference, all the shuffling, if what's going to happen happens anyway?
The only way that real life is randomized is if the fields are moving alongside the moving energies in the same way. If wormholes in space-time are always present. If we could not only see the universe from outside, but also reach in and rearrange it.
Only the One, the great mover, who is also the "road" can be in such constant flux.
That did it.
It's over.
The Cookie Monster is crazier than me.
I relinquish my title.
Quote: TwoFeathersATLThat did it.
It's over.
The Cookie Monster is crazier than me.
I relinquish my title.
OK, it's a tie then...
What God said to the Devil, "If you can't beat 'em, then join 'em."Quote: TwoFeathersATLOK, it's a tie then...