Advertisement
coinwalk

dole maker by snowy

Jul 12th, 2023
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. var belance = $('#pct_balance').val();
  2. var basebet = belance/1024;
  3. var floatingpoint = basebet;
  4. var terget = 80000;
  5. var folage = belance;
  6. var bilance = belance;
  7. var bolance = belance;
  8. var elderbel = belance;
  9. var limitez = false;
  10.  
  11.  
  12. function go(){
  13. bilance = $('#pct_balance').val();
  14. if (bilance>(folage+(floatingpoint*6.9))){
  15. floatingpoint = floatingpoint*2;
  16. folage = parseFloat(bilance);
  17. }
  18. if (bilance<(folage-(floatingpoint*6.9))){
  19. floatingpoint = floatingpoint*2;
  20. limitez = true;
  21. folage = parseFloat(bilance);
  22. }
  23. if ((bilance>(elderbel+tenz))||((bilance>elderbel)&&(limitez))){
  24. floatingpoint = basebet;
  25. limitez = false;
  26. elderbel = parseFloat(bilance);
  27. folage = parseFloat(bilance);
  28. }
  29. if (bilance>=terget) {
  30. console.log("chicken dinner");
  31. return;
  32. }
  33. var giod = (((parseFloat(floatingpoint))*1).toFixed(8));
  34. var good = Number(giod);
  35. $('#pct_chance').val(49.5);
  36. $('#pct_bet').val(good);
  37. $('#pct_profit').val(good);
  38. $('#a_lo')[0].click();
  39. console.log("snowybot active");
  40. setTimeout(() => go(), 1);
  41. }
  42. go();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement