coinwalk

snowybot jd

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