Jump to content

Crash Script


FunnDonn
 Share

Recommended Posts

Posted (edited)

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.

BC error.jpg

Edited by Simbham
Link to comment
Share on other sites

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?

Link to comment
Share on other sites

  • 2 weeks later...
On 6/8/2024 at 10:07 AM, FunnDonn said:

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?

Can someone help me how can I capture the crash events from the console like Bet end or game end result?

3 minutes ago, FunnDonn said:

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 

 

On 6/8/2024 at 10:07 AM, FunnDonn said:

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?

@Jamiekson  Could you please help me with this

Link to comment
Share on other sites

You need to be a member in order to leave a comment

Sign up for a new account in our community. It's easy!

Register a new account

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...