Jump to content

Crash Script


FunnDonn

Recommended Posts

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

  • 4 months later...

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 JavaScriptcode to run through Code Injector?

Link to comment
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...