FunnDonn Posted June 1 Share Posted June 1 (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. Edited June 3 by Simbham Link to comment Share on other sites More sharing options...
HappyFuther Posted June 6 Share Posted June 6 I think you can Code Injector. what is the code you want to use? I will test it on my platform and send the result to you. Link to comment Share on other sites More sharing options...
FunnDonn Posted June 8 Author Share Posted June 8 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 More sharing options...
Nwwsgbefppyb Posted June 8 Share Posted June 8 Me gustaría participar Link to comment Share on other sites More sharing options...
FunnDonn Posted June 19 Author Share Posted June 19 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 More sharing options...
Mxnexdltitac Posted October 26 Share Posted October 26 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 More sharing options...
Recommended Posts
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 accountAlready have an account? Sign in here.
Sign In Now