Guide · reading time ~5 min
Random numbers, one round at a time
Our games draw randomness in your browser. This page explains what that means without mystique.
Free play only. Virtual coins. No real-money gambling on Social Reel Club.
What an RNG does
A random number generator produces values that are hard to predict and, ideally, uniformly distributed across their range. The game maps those values onto cards, dice faces, reel stops or wheel segments.
What we use here
Where available, the site calls the Web Crypto API (crypto.getRandomValues) and falls back to Math.random only if needed. Each round requests fresh values; the code does not peek at prior outcomes to invent near-misses.
Independent
The next spin does not “owe” you a hit because the last ones missed.
Mapped fairly
Weights on a wheel or symbol strips are declared in the paytable or rules. Higher pays usually mean lower weight.
Why people feel patterns
Humans spot streaks in random noise. A run of losses feels meaningful; mathematically it is often ordinary. That is why myths about hot and cold machines spread — see also probability basics.
- No stored “pity timer” that forces a win
- No softened losses for entertainment bias
- No server-side account that adjusts your luck
Related reading: Probability basics · Play the games