Advertisement
coinwalk

the best snowybot

Jan 25th, 2024
512
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 = Number((oldestbal/144).toFixed(8));
  3. var bellance = oldestbal;
  4. var dodgey = oldestbal;
  5. var kitty = oldestbal;
  6. var botplus = base;
  7. var trget = oldestbal;
  8. var tens = (base*10);
  9. var sevens = (base*6.9);
  10. var eights = (base*7.9);
  11. var upper = 6.9;
  12. var downer = 2.9;
  13. var fart = ((Math.floor(oldestbal/tens))*tens);
  14. var bob = oldestbal;
  15. var boobed = oldestbal;
  16. var muck = 4;
  17. var troll = true;
  18.  
  19.  
  20. function get(){
  21. dodgey = document.getElementById('pct_balance').value;
  22. if (dodgey>kitty){
  23. bellance = bellance+botplus
  24. kitty = parseFloat(dodgey);
  25. }
  26. if (dodgey<kitty){
  27. bellance = bellance-botplus
  28. kitty = parseFloat(dodgey);
  29. }
  30. var good = ((bellance-oldestbal).toFixed(8));
  31. console.log("profit");
  32. console.log(good);
  33. if (bellance>(fart+(botplus*upper))){
  34.     botplus = botplus*2;
  35.     upper = 4.9;
  36.     downer = 4.9;
  37.     fart = parseFloat(bellance);
  38. }
  39. if ((bellance<(fart-(botplus*downer)))&&(troll)){
  40.     botplus = botplus*2;
  41.     upper = 4.9;
  42.     downer = 4.9;
  43.     muck = 0;
  44.     troll = false;
  45.     fart = parseFloat(bellance);
  46. }
  47. if (bellance>bob){
  48.    bob = parseFloat(bellance);
  49.    }
  50. if ((bellance<=(bob-(botplus*3.9)))&&(botplus>=(base*2.9))&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  51.     botplus = base;
  52.     upper = 6.9;
  53.     downer = 2.9;
  54.     troll = true;
  55.     fart = ((Math.floor(bellance/tens))*tens);
  56.     bob = parseFloat(bellance);
  57.     boobed = parseFloat(bellance);
  58. }
  59. if ((bellance>=(boobed+(tens*4)))&&(bellance<(((Math.floor(bellance/tens))*tens)+sevens))){
  60.     botplus = base;
  61.     upper = 6.9;
  62.     downer = 2.9;
  63.     muck = 4;
  64.     troll = true;
  65.     fart = ((Math.floor(bellance/tens))*tens);
  66.     bob = parseFloat(bellance);
  67.     boobed = parseFloat(bellance);
  68. }
  69. if (bellance>=100) {
  70. console.log("winner winner chicken dinner");
  71. return;
  72. }
  73. $('#pct_chance').val(49.5);
  74. $('#pct_bet').val(((botplus*1).toFixed(8)));
  75. $('#a_lo').click();
  76. setTimeout(() => get(), 10);
  77. }
  78. get();
  79.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement