Game Logic

Gameplay Loop

The Aviator gameplay loop is intentionally minimal. The logic can be summarized in three phases that repeat indefinitely:

  1. Pre-round: Players submit bets. The server generates and commits to the crash point using a hash-based provably fair scheme.
  2. Active round: The multiplier rises. Players decide when to cash out. At the crash point, remaining bets are lost.
  3. Resolution: Cashed-out bets are settled. The server seed is revealed. A new round begins.

There are no bonus features, free spins, or progressive elements in standard Aviator. The loop is a pure risk-reward decision repeated in short intervals.

Multiplier Behavior

The multiplier does not grow at a constant linear rate. In most implementations, growth starts at 1× and accelerates — providing a psychological incentive to wait. However, the crash point is determined before this visual growth begins, so the animation of the rising curve is a representation of a predetermined outcome.

The mathematical distribution of crash points follows an exponential distribution. This means:

  • A significant proportion of rounds crash at very low multipliers (below 2×)
  • High multipliers (above 10×) are statistically infrequent
  • Extremely high multipliers (above 100×) are rare but mathematically possible

Approximate Crash-Point Frequency Distribution

Crash RangeApproximate Frequency
1.00× – 1.99×~53% of rounds
2.00× – 4.99×~27% of rounds
5.00× – 9.99×~10% of rounds
10.00× – 99.99×~9% of rounds
100×+~1% of rounds

* Illustrative approximation based on a 97% RTP configuration. Actual distributions vary.

Randomness and RNG

The crash point is determined by a cryptographically secure random number generator (CSRNG). Aviator uses a provably fair approach where:

  • A server seed is generated and hashed (committed) before the round.
  • A client seed is contributed to the input, preventing the operator from manipulating results after seeing bets.
  • The two seeds are combined via an HMAC-SHA256 function to produce a number between 0 and 1.
  • This number is then transformed into a crash multiplier using a formula that incorporates the house edge.

Because each round uses a fresh seed combination, outcomes are statistically independent. Previous rounds have no predictive relationship with future ones.

ℹ️ What "Independent Events" Means

If the multiplier crashed at 1.2× for the last five rounds, the probability of the next round crashing below 2× remains exactly the same as always. This is called statistical independence — past events do not influence future probabilities. This is mathematically identical to fair coin flips.

Return to Player (RTP)

Return to Player (RTP) is a percentage representing the theoretical long-run average proportion of bets returned to players as winnings. Aviator's documented RTP is approximately 97%.

This means: for every 100 units wagered over many thousands of rounds, players receive approximately 97 units back in aggregate. The remaining 3 units represent the house's theoretical revenue.

Important caveats about RTP:

  • RTP is a long-run statistical average, not a guarantee for any individual session.
  • Short sessions (fewer than several hundred rounds) will show high variance around this figure.
  • A 97% RTP does not mean "you will get back 97% of what you invest each session."
  • Individual players can win or lose significantly more than the RTP implies in any given session.

Volatility

Volatility (also called variance) describes how much individual session results deviate from the average. Aviator is generally considered a high-volatility game because:

  • Many rounds produce small losses (early crashes)
  • Occasional rounds produce very large payouts (high multipliers)
  • The distribution of outcomes is wide and unpredictable

High volatility means larger potential swings in both directions during any session. A player might win significantly in one session and lose significantly in another, with the long-run average converging toward the RTP only after very many rounds.

House Edge

The house edge is the mathematical advantage the operator retains. It is the complement of RTP: a 97% RTP implies a 3% house edge.

The house edge is embedded in the crash-point generation formula. At the moment a player places a bet, the expected value of that bet is negative — meaning the long-run expected outcome is a loss equal to approximately 3% of each bet amount.

No betting pattern, strategy, or timing can eliminate the house edge. It is a mathematical property of the game's design.

⚠️ No Winning Strategy Exists

Because the house edge is a fixed mathematical property and all rounds are independent, no strategy, pattern-chasing, or cash-out timing guarantees profit. Over sufficient play, the mathematical expectation of loss applies to all players equally. Read more on the Strategies & Myths page.

Continue reading: Glossary — Terms defined · Strategies & Myths — Why systems fail · Responsible Play