Advertisement
coinwalk

worlds best snowybot

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