Check out our brand new Local Poker Communities! Get updates and interact with poker players in your area.
Visit the United States Poker Community | Visit the California Poker Community | Read more about the Launch of P5s Local
  1. I was thinking the other day, How do RNG's work? What I mean by that is, Does the RNG constantly generate numbers (cards) and the poker program only grabs the next number (card) such as a lottery ball machine or are the numbers (cards) "shuffled" and are put in a random yet predetermined way and only the next number (card) is picked such as a real deck of cards?
    Does anyone know the real answer?
  2. Full Tilt Poker = Continuous Shuffle
    pokerstars = Not Continuous Shuffle (or predetermined if you will)
  3.  
    Originally Posted by RevG View Post

    Full Tilt Poker = Continuous Shuffle
    pokerstars = Not Continuous Shuffle (or predetermined if you will)

  4. I know that some sites post their algorithm on the website. Its insane!!!!
  5.  
    Originally Posted by Demetri View Post

    I know that some sites post their algorithm on the website. Its insane!!!!

    It doesn't really matter if you have the algorithm, depending on the seeds they are using, and how often they let the seeds reset the algorithm. One of the seeds that I've heard they use is weather conditions, like wind speeds, temperature, barometric pressure, which is pretty cool, because those things are constantly changing, making it hard for anyone to nail. Also, the worst seed to use is time which is constant. One of the very early poker sites used a very simple time-seed based algorithm back in the day, and some people cracked it.
  6.  
    Originally Posted by iatetheredcrayon View Post


    It doesn't really matter if you have the algorithm, depending on the seeds they are using, and how often they let the seeds reset the algorithm. One of the seeds that I've heard they use is weather conditions, like wind speeds, temperature, barometric pressure, which is pretty cool, because those things are constantly changing, making it hard for anyone to nail. Also, the worst seed to use is time which is constant. One of the very early poker sites used a very simple time-seed based algorithm back in the day, and some people cracked it.

    really?...ive never heard of anyone "cracking" an algorithm for RNG...which site was this at?
  7. Hi,

    At PokerStars, we use two sources of random information:
    • user input, including summary of mouse movements and events timing, collected from client software
    • true hardware random number generator developed by Intel, which uses thermal noise as an entropy source
    Both of these sources generate a huge stream of 1s and 0s. Eg: 01000100111010010001111010010101010101111101010

    Those two streams of data are then mixed into one to generate a string of 498 digits.

    Those digits are then used to select cards off the top of the deck.

    So, in the first instance, we need a card from 0-51 to select the first card of the deck. So, the server takes the first 6 digits (2^6 = 64) to select a random number.

    Take the first six digits from the above stream - 010001 - which converts to 17. You can simulate this in MS Excel with the formula =bin2dec(010001). Thus, the server takes the 17th card from the "starting" deck and that becomes the first card on the deck that will be dealt. This process is then repeated 50 more times, until there is one card remaining, which will obviously be the last card on the bottom of the deck.

    The gaming server then asks for a new deck from the shuffle server, and deals it out.

    This is also explained on our website at:

    http://www.pokerstars.com/poker/room/features/security/

    If you have any further queries about this, feel free to email us at support@pokerstars.com

    Sincerely,

    Michael J
    PokerStars Game Security Team
  8.  
    Originally Posted by persuade View Post

    really?...ive never heard of anyone "cracking" an algorithm for RNG...which site was this at?

    Planet Poker, I believe
  9.  
    Originally Posted by SuperNovaEli View Post

    Planet Poker, I believe

    Which I also believe no longer exist. Players transfered to Bodog
  10.  
    Originally Posted by Demetri View Post

    I know that some sites post their algorithm on the website. Its insane!!!!

    It's not insane, it's disclosure.

    As a management consultant, I agree.

    As a former software engineer, I agree.

    As a poker player, I definitely agree.
  11.  
    Originally Posted by MadTiger View Post

    It's not insane, it's disclosure.

    As a management consultant, I agree.

    As a former software engineer, I agree.

    As a poker player, I definitely agree.

    [ ] Dumb
    [ ] Crazy
    [x] Smart
  12. +1
  13. post less

Similar Threads