Advertisement
coinwalk

snowybot my best work ever

May 22nd, 2023
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. var bolance = parseFloat(document.getElementById('pct_balance').value);
  2. var basebet = 0.00001;
  3. var james = basebet;
  4. var boom = false;
  5. var oldDigit = 0;
  6. var ten = (basebet*10);
  7. var siron = basebet.toString();
  8. var mad = ((siron.length)-2);
  9. var crazy = parseFloat(document.getElementById('pct_balance').value);
  10. document.getElementById('pct_chance').value = 49.5;
  11. document.getElementById('pct_payout').value = 2;
  12. document.getElementById('pct_bet').value = ((james*1).toFixed(8));
  13. document.getElementById('pct_profit').value = ((james*1).toFixed(8));
  14.  
  15.  
  16. function xig() {
  17. var balanceStr = document.getElementById('pct_balance').value;
  18. var balanceDecimalIndex = balanceStr.indexOf(".");
  19. if (((balanceStr.charAt(balanceDecimalIndex + mad)) == 7) && (balanceStr != oldDigit)&&(balanceStr<crazy)) {
  20. james = james*2;
  21. boom = 0;
  22. oldDigit = parseFloat(balanceStr);
  23. }
  24. if (((balanceStr.charAt(balanceDecimalIndex + mad)) == 7) && (balanceStr != oldDigit)&&(balanceStr>=crazy))) {
  25. james = james*2;
  26. oldDigit = parseFloat(balanceStr);
  27. }
  28. if (((balanceStr.charAt(balanceDecimalIndex + mad)) != 7)&&(balanceStr>=(crazy+(ten*boom)))) {
  29. james = basebet;
  30. boom = 1;
  31. oldDigit = 0;
  32. crazy = ((Math.floor(balanceStr/ten))*ten);
  33. }
  34. if (((balanceStr.charAt(balanceDecimalIndex + mad)) == 7)&&(balanceStr>=(crazy+(ten*boom)))) {
  35. james = basebet*2;
  36. boom = 1;
  37. oldDigit = parseFloat(balanceStr);
  38. crazy = ((Math.floor(balanceStr/ten))*ten);
  39. game = false;
  40. }
  41. document.getElementById('pct_chance').value = 49.5;
  42. document.getElementById('pct_payout').value = 2;
  43. document.getElementById('pct_bet').value = ((james*1).toFixed(8));
  44. document.getElementById('pct_profit').value = ((james*1).toFixed(8));
  45. document.getElementById('a_lo').click();
  46. setTimeout(() => xig(), 2);
  47. }
  48.  
  49. xig();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement