Stake.com Crash Bot

Bot that automates Stake.com crash game to place a bet every 2 minutes.

As of 24.01.2025. See ბოლო ვერსია.

  1. // ==UserScript==
  2. // @name Stake.com Crash Bot
  3. // @description Bot that automates Stake.com crash game to place a bet every 2 minutes.
  4. // @match https://stake.com/casino/games/crash
  5. // @version 1.0
  6. // @author beautifulbran
  7. // @namespace https://greasyfork.org/users/1427010
  8. // ==/UserScript==
  9.  
  10. setInterval(function() {
  11. // Use a query selector for the new button class or unique attributes
  12. const betButton = document.querySelector("button[data-testid='bet-button']");
  13.  
  14. if (betButton) {
  15. betButton.click(); // Click the button if it exists
  16. } else {
  17. console.log("Bet button not found. Check if the page structure has changed.");
  18. }
  19. }, 120000); // Execute every 2 minutes (120,000 ms)