Advertisement
coinwalk

snowybot terminator extreme

May 16th, 2023
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. var basebet = 0.00001
  2. var james = basebet
  3. var oldDigit = 0;
  4. var ten = (basebet*10)
  5. var oldBal = parseFloat(document.getElementById('pct_balance').value);
  6.  
  7. function findDigitInBalance(){
  8. var balanceStr = document.getElementById('pct_balance').value;
  9. var balanceDecimalIndex = balanceStr.indexOf(".");
  10. if (((balanceStr.charAt(balanceDecimalIndex + 5)) == 7) && (balanceStr != oldDigit)) {
  11. james = james*2;
  12. oldDigit = parseFloat(balanceStr);
  13. } else if (((balanceStr.charAt(balanceDecimalIndex + 5)) == 7) && (balanceStr>(oldBal+(ten*5)))) {
  14. james = basebet*2;
  15. oldBal = ((Math.floor(balanceStr/ten))*ten);
  16. oldDigit = parseFloat(balanceStr);
  17. } else if (((balanceStr.charAt(balanceDecimalIndex + 5)) != 7) && (balanceStr>(oldBal+(ten*5)))) {
  18. james = basebet;
  19. oldBal = ((Math.floor(balanceStr/ten))*ten);
  20. oldDigit = 0;
  21. }
  22. return parseFloat(james);
  23. }
  24.  
  25. function xig() {
  26. document.getElementById('pct_chance').value = 49.5;
  27. document.getElementById('pct_payout').value = 2;
  28. document.getElementById('pct_bet').value = findDigitInBalance();
  29. document.getElementById('pct_profit').value = findDigitInBalance();
  30. document.getElementById('a_lo').click();
  31. setTimeout(() => xig(), 7);
  32. }
  33.  
  34. xig();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement