Advertisement
coinwalk

snowybot terminator

May 15th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. var bolly = 0.00001;
  2. var ten = 0.0001;
  3. var krux = 0.00007;
  4. var get = 5000;
  5. var james = bolly;
  6. var two = ((Math.floor(($('#pct_balance')[0].value)/ten))*ten);
  7.  
  8. var basebet = bolly;
  9. var digitToFind = 7;
  10. var balanceStr = document.getElementById('pct_balance').value;
  11. var balanceDecimalIndex = balanceStr.indexOf(".");
  12. var balanceAtBasebet = balanceStr.substr(0, balanceDecimalIndex + basebet.toString().length + 1);
  13. var digitIndex = balanceAtBasebet.indexOf(digitToFind.toString());
  14.  
  15. var oldDigit = document.getElementById('pct_balance').value;
  16.  
  17. function findDigitInBalance() {
  18. var balanceStr = document.getElementById('pct_balance').value;
  19. var balanceDecimalIndex = balanceStr.indexOf(".");
  20. var balanceAtBasebet = balanceStr.substr(0, balanceDecimalIndex + basebet.toString().length + 1);
  21. var digitIndex = balanceAtBasebet.indexOf(digitToFind.toString());
  22. var utter = document.getElementById('pct_balance').value;
  23. if ((digitIndex !== -1) && (utter != oldDigit)) {
  24. james = james*2;
  25. oldDigit = parseFloat(utter);
  26. digitToFind = 7;
  27. }
  28. if ((utter>(two+(ten*5)))&&(digitIndex == -1)) {
  29. james = bolly;
  30. two = parseFloat(utter);
  31. oldDigit = 0;
  32. digitToFind = 7;
  33. }
  34. if ((utter>(two+(ten*5)))&&(digitIndex !== -1)) {
  35. james = bolly*2;
  36. two = parseFloat(utter);
  37. oldDigit = parseFloat(utter);
  38. digitToFind = 7;
  39. }
  40. return james;
  41. }
  42.  
  43. function xig(){
  44. findDigitInBalance();
  45. if (($('#pct_balance')[0].value)>=get){
  46. console.log('omg you won');
  47. return;
  48. console.log('omg you won');
  49. }
  50. document.getElementById('pct_chance').value = 49.5;
  51. document.getElementById('pct_payout').value = 2;
  52. document.getElementById('pct_bet').value = findDigitInBalance();
  53. document.getElementById('pct_profit').value = findDigitInBalance();
  54. document.getElementById('a_lo').click();
  55. setTimeout(() => xig(), 700);
  56. }
  57. xig();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement