Advertisement
coinwalk

lol

Jul 7th, 2020
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. function playBet (oG) { var baseBetInput = $ ("input#AutoBetSizeInput"); var UserBalance = $ ("span.UserBalance:eq(0)").text(); $("input#AutoBetSizeInput").text(); $("div#AutoBetHighButton").click();
  2. var Numbets = 7;
  3. $("input#AutoBetNumBets").val(Numbets);
  4. var lose = 200;
  5. $("input#AutoBetIncreaseOnLoss").val(lose);
  6. var chance = 62.1;
  7. $("input#AutoBetChanceInput").val(chance);
  8. var max2 = 0;
  9. $("input#AutoBetMaxSizeInput").val(max2);
  10. return setTimeout(function(){cekGame(oG)},6000); }
  11.  
  12. function cekGame(oldGame) { var newGame = $ ("div#AutoBetHighButton").click(); if (oldGame==newGame) { return setTimeout(function() {cekGame(oldGame)},6000); } else { return setTimeout(function()
  13. {playBet(newGame)},3000); } }
  14.  
  15. function cekGame(oldGame) { var newGame2 = $ ("div#AutoBetLowButton").click(); if (oldGame==newGame2) { return setTimeout(function() {cekGame(oldGame)},6000); } else { return setTimeout(function()
  16. {playBet(newGame2)},3000); } }
  17.  
  18. playBet(null);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement