https://github.com/dinethlive/crash-game-scanner
Real-time JavaScript monitor for 1xBet crash game. Predicts crash cap using a 60% payout rule. For educational use only.
https://github.com/dinethlive/crash-game-scanner
betting-game betting-strategy crash-game crash-game-script
Last synced: about 1 month ago
JSON representation
Real-time JavaScript monitor for 1xBet crash game. Predicts crash cap using a 60% payout rule. For educational use only.
- Host: GitHub
- URL: https://github.com/dinethlive/crash-game-scanner
- Owner: dinethlive
- Created: 2025-04-09T19:52:37.000Z (6 months ago)
- Default Branch: main
- Last Pushed: 2025-04-09T19:59:42.000Z (6 months ago)
- Last Synced: 2025-06-28T13:42:31.604Z (3 months ago)
- Topics: betting-game, betting-strategy, crash-game, crash-game-script
- Language: JavaScript
- Homepage:
- Size: 185 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# π― Crash Predictor (Crash Scanner)
This is a lightweight JavaScript program that monitors the 1xBet Crash Game in real time and predicts potential crash outcomes based on betting behavior.

---
## π What It Does
- Detects new rounds automatically
- Tracks player count and total bets during growth
- Waits until player count freezes (no growth for 2 seconds)
- Applies a **60% rule** to calculate a predicted crash cap
- Compares it against the **total winnings**
- Logs `β SUCCESS` if actual winnings are below the predicted cap, or `β FAILURE` if they exceed
- Runs infinitely and automatically across game sessions---
## π‘ Why the 60% Rule?
Based on observed patterns and common game design in crash-style betting games, platforms like 1xBet often seem to **limit payout liquidity** to ensure profit margins.
This script assumes that total winnings in a round **typically wonβt exceed 60% of total bets**, based on this kind of internal control logic.You can adjust this threshold in the code to suit your own experiments.
```js
const predictedCrash = Math.floor(totalBets * 0.6); // Change 0.6 to your own ratio
```---
## π οΈ How to Run This Program
1. Open the [1xBet Crash Game](https://ind.1xbet.com/games-frame/games/371) in your browser
2. Right-click anywhere on the page β Click **Inspect**
3. Go to the **Console** tab
4. Copy the full contents of `crashPredictor.js` from this repository
5. Paste the code into the console and press **Enter**
6. Then type and run the main function:```js
startCrashPredictionLoop();
```You will now see live predictions and round results printed directly in the console.
---
## β οΈ Disclaimer
This tool is provided **for educational and analytical purposes only**.
We do **not encourage or promote gambling** in any form.
Gambling can be addictive and harmful. Please act responsibly and in accordance with your local laws.---
## π License
This project is licensed under the MIT License. Feel free to use, modify, and share it with attribution.
---
## β¨ Contributions
Pull requests and suggestions are welcome.
If you have ideas to improve logic, visualization, or automation, feel free to contribute!