Agena Gaming
Play free — no account required

How Crash Works

Crash is one of the most transparent games in online gambling — the outcome of every round is mathematically verifiable by any player. This guide explains exactly how the game works, how the multiplier is generated, what "provably fair" actually means, and what the house edge looks like in practice.

How to Play

Each round follows the same sequence:

  1. Betting window (5 seconds): Place your bet before the round starts
  2. Takeoff: The multiplier starts at 1.00× and climbs continuously
  3. Cash out: Click cash out at any moment to lock in the current multiplier × your bet
  4. Crash: The multiplier stops at a predetermined point. Anyone who hasn't cashed out loses their bet

The crash point is fixed before the round starts. The server commits to it by publishing a hash before betting opens. The actual seed is only revealed after the crash — so neither players nor the casino can change the outcome mid-round.

The Multiplier Distribution

The crash point is not random in an arbitrary sense — it follows a specific mathematical distribution. Low multipliers are more common; high multipliers are rarer. Here are the approximate probabilities:

Crash PointProbability of Reaching It
1.00× (instant bust)2.0%
1.50× or higher~65%
2.00× or higher~49%
3.00× or higher~33%
5.00× or higher~20%
10.00× or higher~10%
100.00× or higher~1%

There is no maximum multiplier — theoretically a round could reach 1000× or beyond, though the probability decreases accordingly.

The House Edge

The house edge is 2.0%, built into the algorithm in a transparent way: exactly 1 in every 50 seeds produces an instant bust at 1.00×. The other 49 out of 50 seeds produce a multiplier from the distribution above.

This means if you always cashed out at exactly 2.00×, you would win ~49% of the time at 2× and lose ~51% of the time. The long-run expected return is 98 cents per dollar wagered — a 2% house edge.

Provably Fair — How It Works

Provably fair is a system that lets you independently verify any round was not manipulated. Here's the full process:

1. Commitment (before the round)

Before betting opens, the server generates a random seed and calculates its SHA-256 hash. The hash is broadcast to all players. At this point, the outcome is mathematically locked — changing the seed would produce a different hash.

2. The Algorithm

hash = HMAC-SHA256(seed, "agenagaming.com-v1") hs = parseInt(hash[0..12], 16) // first 13 hex digits → integer e = 2^52 if (hs % 50 === 0): crash_point = 1.00 // instant bust — 2% of seeds else: crash_point = floor((100×e − hs) / (e − hs)) / 100

3. Reveal (after the crash)

Once the round ends, the seed is published. Any player can run the algorithm above, plug in the revealed seed and the public salt agenagaming.com-v1, and confirm the crash point matches what the game displayed. If it matches, the round was fair.

Why this works: HMAC-SHA256 is a one-way function — you cannot reverse-engineer a seed from its hash. Publishing the hash first proves the outcome was set before the round. Publishing the seed after proves what the outcome actually was. The salt (agenagaming.com-v1) is published on the site, so any player can verify without trusting Agena Gaming at all.

Cash-Out Strategy

The house edge is 2.0% regardless of your target multiplier. Cashing out at 1.5× produces frequent small wins; waiting for 10× produces rare large wins. The expected return per dollar is the same either way.

What does change is variance. A low target (1.5×) means smoother results — less likely to bust your session bankroll in a few bad rounds. A high target (10×+) means wild swings — many losing rounds punctuated by occasional large wins.

Neither approach is "better" from an EV standpoint. The right choice depends on your risk tolerance and how long you want to play.

Ready to Play?

Try Crash for free — no account required. Starts with $1,000 in play money.

Play Crash →

Frequently Asked Questions

What is crash gambling?
A multiplier game where a number rises from 1.00× and can crash at any point. You cash out before the crash to win that multiplier × your bet. Crash too early — you took a smaller win. Crash too late — you lose your bet.
What is provably fair?
A cryptographic system that lets players independently verify that crash outcomes were not manipulated. The server commits to a result before the round by publishing a hash. After the round, the seed is revealed and any player can run the algorithm to confirm the crash point matches.
What is the house edge in Crash?
2.0%. Exactly 1 in 50 seeds produces an instant bust at 1.00×. The other 49 out of 50 produce a multiplier drawn from a distribution with no upper limit. The expected return is 98 cents per dollar wagered in the long run.
Is there a best cash-out strategy?
No strategy overcomes the 2% house edge. Cashing out at a fixed multiplier (e.g. 1.5×, 2×, 10×) doesn't change your expected return — only your variance. Lower targets mean smoother results; higher targets mean wilder swings.
How do I verify a crash result myself?
After each round, note the revealed seed. Run HMAC-SHA256(seed, "agenagaming.com-v1"), take the first 13 hex characters, convert to an integer (hs). If hs % 50 === 0, result is 1.00×. Otherwise, crash point = floor((100 × 2^52 − hs) / (2^52 − hs)) / 100. If it matches, the round was provably fair.