Advertisement
coinwalk

worlds best snowybot

May 27th, 2023
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. var crazy = parseFloat(document.getElementById('pct_balance').value);
  2. var divide = 10;
  3. var basebet = (((((crazy/2)/2)/2)/2)/divide);
  4. var james = basebet;
  5. var ten = (basebet*10);
  6. var oldDigit = ((Math.floor(crazy/ten))*ten);
  7. var oldDig = ((Math.floor(crazy/ten))*ten);
  8. var nobby = 6.9;
  9. var noddy = 2.9;
  10.  
  11.  
  12. function xig() {
  13. var balanceStr = document.getElementById('pct_balance').value;
  14. if (balanceStr>(oldDigit+(james*nobby))) {
  15. james = james*2;
  16. nobby = 4.9;
  17. noddy = 4.9;
  18. oldDigit = parseFloat(balanceStr);
  19. }
  20. if (balanceStr<(oldDig-(james*noddy))) {
  21. james = james*2;
  22. nobby = 4.9;
  23. noddy = 4.9;
  24. oldDig = parseFloat(balanceStr);
  25. oldDigit = parseFloat(balanceStr);
  26. }
  27. if ((james*4)>=(crazy/divide)) {
  28. james = basebet;
  29. nobby = 6.9;
  30. noddy = 2.9;
  31. oldDigit = ((Math.floor((parseFloat(balanceStr))/ten))*ten);
  32. oldDig = ((Math.floor((parseFloat(balanceStr))/ten))*ten);
  33. }
  34. return james;
  35. }
  36.  
  37.  
  38. function stroll(){
  39. document.getElementById('pct_chance').value = 49.5;
  40. document.getElementById('pct_payout').value = 2;
  41. document.getElementById('pct_bet').value = (((xig())*1).toFixed(8));
  42. document.getElementById('pct_profit').value = (((xig())*1).toFixed(8));
  43. document.getElementById('a_lo').click();
  44. setTimeout(() => stroll(), 1000);
  45. }
  46.  
  47. stroll();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement