Advertisement
coinwalk

best snowybot

Dec 31st, 2023
930
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/100);
  3. var dodgey = (oldestbal/10);
  4. var bellance = oldestbal;
  5. var botplus = base;
  6. var trget = 200;
  7. var tens = (base*10);
  8. var sevens = (base*6.9);
  9. var eights  = (base*7.1)
  10. var dude = (base*40);
  11. var floatingbal = ((Math.floor(oldestbal/tens))*tens);
  12. var plane = 6.9;
  13. var submarine = 2.9;
  14. var betnext = ((botplus*1).toFixed(8));
  15. var james  = oldestbal;
  16.  
  17. function get(){
  18. console.clear();
  19. bellance = document.getElementById('pct_balance').value;
  20. if (bellance>(floatingbal+(botplus*plane))) {
  21.      botplus = botplus*2;
  22.      submarine = 4.9;
  23.      plane = 4.9;
  24.      floatingbal  = parseFloat(bellance);
  25. }
  26. if (bellance<(floatingbal-(botplus*submarine))) {
  27.      botplus = botplus*2;
  28.      submarine = 4.9;
  29.      plane = 4.9;
  30.      floatingbal  = parseFloat(bellance);
  31. }
  32. if (((botplus*3)>=dodgey)&&(bellance>=james)&&(bellance<(((Math.floor(oldestbal/tens))*tens)+sevens))){
  33.      botplus = base;
  34.      submarine = 2.9;
  35.      plane = 6.9;
  36.      floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  37.      james  = parseFloat(bellance);
  38. }
  39. if (((botplus*3)>=(bellance))&&(bellance<james)&&(bellance<(((Math.floor(oldestbal/tens))*tens)+sevens))){
  40.      botplus = base
  41.      submarine = 2.9;
  42.      plane = 6.9;
  43.      floatingbal = ((Math.floor((parseFloat(bellance))/tens))*tens);
  44.      james  = parseFloat(bellance);
  45. }
  46. if (bellance>=trget){
  47. console.log("winner winner");
  48. return;
  49. }
  50. betnext = ((botplus*1).toFixed(8));
  51. $('#pct_chance').val(49.5);
  52. $('#pct_bet').val(betnext);
  53. $('#a_hi').click();
  54. setTimeout(() => get(), 100);
  55. }
  56. get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement