Jump to content

FunnDonn

Member
  • Posts

    7
  • Joined

  • Last visited

2 Followers

User Info

  • Favorite Game Crash

Recent Profile Visitors

24090 profile views

FunnDonn's Achievements

Rookie

Rookie (2/14)

  • Conversation Starter Rare
  • One Month Later
  • Week One Done
  • First Post

Recent Badges

0

Reputation

  1. FunnDonn

    Crash Script

    Can someone help me how can I capture the crash events from the console like Bet end or game end result? @Jamiekson Could you please help me @Jamiekson Could you please help me with this
  2. FunnDonn

    Crash Script

    var config = { bet: { label: "bet", value: currency.minAmount, type: "number" }, payout: { label: "payout", value: 2, type: "number" }, }; var waitRounds = 5; var currentRound = 0; function main() { game.onBet = function() { if (currentRound === 0) { game.bet(config.bet.value, config.payout.value).then(function(payout) { if (payout > 1) { log.success("We won, payout " + payout + "X!"); } else { log.error("We lost, payout " + payout + "X!"); } // Set the number of rounds to wait before placing the next bet currentRound = waitRounds; // Decrease the waitRounds by 1, and reset to 5 if it goes below 1 waitRounds = waitRounds > 1 ? waitRounds - 1 : 5; }); } else { // Decrease the current round counter currentRound--; } }; } Thanks for the quick response. Could you please modify this JavaScript code to run through Code Injector?
  3. FunnDonn

    Crash Script

    Is it possible to execute the JavaScript code for the Crash game using a browser extension, code injector, or Console? If yes, please assist me with this. I wanted to avoid losses caused by errors like those in the image. I appreciate any help can provide.
×
×
  • Create New...