Advertisement
coinwalk

total annihilation bot by snowy new v3.14

May 15th, 2023
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.48 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 old = ((Math.floor(($('#pct_balance')[0].value)/ten))*ten);
  7. var two = ((Math.floor(($('#pct_balance')[0].value)/ten))*ten);
  8.  
  9. var basebet = bolly;
  10. var digitToFind = 7; // for example, to find the digit "5" in the balance
  11. var balanceStr = document.getElementById('pct_balance').value; // get the balance as a string
  12. var balanceDecimalIndex = balanceStr.indexOf("."); // find the index of the decimal point
  13. var balanceAtBasebet = balanceStr.substr(0, balanceDecimalIndex + basebet.toString().length + 1); // get the balance up to the decimal point plus the length of basebet (including the decimal point)
  14. var digitIndex = balanceAtBasebet.indexOf(digitToFind.toString()); // find the index of the digit you want to find
  15.  
  16. var oldDigit = document.getElementById('pct_balance').value;
  17.  
  18. function findDigitInBalance() {
  19. var balanceStr = document.getElementById('pct_balance').value; // get the balance as a string
  20. var balanceDecimalIndex = balanceStr.indexOf("."); // find the index of the decimal point
  21. var balanceAtBasebet = balanceStr.substr(0, balanceDecimalIndex + basebet.toString().length + 1); // get the balance up to the decimal point plus the length of basebet (including the decimal point)
  22. var digitIndex = balanceAtBasebet.indexOf(digitToFind.toString()); // find the index of the digit you want to find
  23. var utter = document.getElementById('pct_balance').value;
  24. if ((digitIndex !== -1) && (utter !== oldDigit)) { // if the digit was found
  25. james = james*2;
  26. oldDigit = parseFloat(utter);
  27. digitToFind = 7;
  28. }
  29. if ((utter>(two+(ten*5)))&&(digitIndex == -1)) {
  30. james = bolly;
  31. two = parseFloat(utter);
  32. oldDigit = parseFloat(utter);
  33. digitToFind = 7;
  34. }
  35. if ((utter>(two+(ten*5)))&&(digitIndex !== -1)) {
  36. james = bolly*2;
  37. two = parseFloat(utter);
  38. oldDigit = parseFloat(utter);
  39. digitToFind = 7;
  40. }
  41. return james;
  42. findDigitInBalance()
  43. }
  44.  
  45. function xig(){
  46. findDigitInBalance();
  47. if (($('#pct_balance')[0].value)>=get){
  48. console.log('omg you won');
  49. return;
  50. console.log('omg you won');
  51. }
  52. document.getElementById('pct_chance').value = 49.5;
  53. document.getElementById('pct_payout').value = 2;
  54. document.getElementById('pct_bet').value = findDigitInBalance();
  55. document.getElementById('pct_profit').value = findDigitInBalance();
  56. document.getElementById('a_lo').click();
  57. setTimeout(() => xig(), 700);
  58. }
  59. xig();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement