Advertisement
coinwalk

best snowybot

Dec 28th, 2023
758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var oldestbal = parseFloat(document.getElementById('pct_balance').value);
  2. var base = (oldestbal/240); //dont change;
  3. var bellance = oldestbal;
  4. var botplus = base;
  5. var trget = parseFloat(oldestbal);
  6. var tens = (base*10);
  7. var sevens = (base*6.9);
  8. var eights  = (base*7.1)
  9. var floatingbal = 0;
  10. var james = oldestbal;
  11. var fran = ((Math.ceil(oldestbal/tens))*tens);
  12. var betnext = ((botplus*1).toFixed(8));
  13.  
  14. function get(){
  15. console.clear();
  16. bellance = document.getElementById('pct_balance').value;
  17. var good = ((bellance-oldestbal).toFixed(8));
  18. console.log("profit");
  19. console.log(good);
  20. if ((bellance>(((Math.floor(bellance/tens))*tens)+sevens))&&(bellance<(((Math.floor(bellance/tens))*tens)+eights))&&(bellance!=floatingbal)) {
  21.      botplus = botplus*2;  
  22.      floatingbal  = parseFloat(bellance);
  23. }
  24. if (((james-(bellance-(botplus*3)))<=0)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  25.     botplus = base;
  26.     floatingbal = 0;
  27.     james  = parseFloat(bellance);
  28.     fran = ((Math.ceil(bellance/tens))*tens);
  29. }
  30. if ((botplus>=(base*2))&&(bellance>=fran)&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  31.     botplus = base;
  32.     floatingbal = 0;
  33.     james  = parseFloat(bellance);
  34.     fran = ((Math.ceil(bellance/tens))*tens);
  35. }
  36. if (bellance>(trget*24000)){
  37. console.log("buy ebike");
  38. return;
  39. }
  40. betnext = ((botplus*1).toFixed(8));
  41. $('#pct_chance').val(49.5);
  42. $('#pct_bet').val(betnext);
  43. $('#a_hi').click();
  44. setTimeout(() => get(), 100);
  45. }
  46. get();
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement