Advertisement
coinwalk

snowzy bot supersnowzy strikes back

Feb 18th, 2024
1,107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var original = parseFloat(document.getElementById('pct_balance').value);
  2. var dockiez = original;
  3. var base = Number((original/1000).toFixed(8));
  4. var tens = (base*10);
  5. var sevens = (base*6.9);
  6. var eights = (base*7.9);
  7. var tiffy = 0;
  8. var snowy = base;
  9. var bilance = original;
  10. var good = (((bilance-original)*1).toFixed(8));
  11.  
  12. function dobet(){
  13. bilance = document.getElementById('pct_balance').value;
  14. good = (((bilance-original)*1).toFixed(8));
  15. console.log("profit");
  16. console.log(good);
  17.     if ((bilance>(((Math.floor(bilance/tens))*tens)+sevens))&&(bilance<(((Math.floor(bilance/tens))*tens)+eights))&&(bilance!=tiffy)){
  18.         snowy = snowy*2;
  19.         tiffy = parseFloat(bilance);
  20.     }
  21.     if ((snowy>=tens)&&(bilance>dockiez)){
  22.         snowy = base;
  23.         tiffy = 0;
  24.         dockiez = parseFloat(bilance);
  25.     }
  26.     if (((bilance-(snowy*100))<=(base*200))&&(bilance<dockiez)){
  27.         snowy = base;
  28.         tiffy = 0;
  29.         dockiez = parseFloat(bilance);
  30.     }
  31.     if (bilance<base) {
  32.         console.log("busted");    
  33.         return;
  34.     }
  35.     if (bilance>=150000) {
  36.        console.log("winner winner chicken dinner");
  37.        return;
  38.    }
  39. $('#pct_chance').val(49.5);
  40. $('#pct_bet').val(((snowy*1).toFixed(8)));
  41. $('#a_lo').click();
  42. setTimeout(() => dobet(), 350)
  43. }
  44. dobet();
  45.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement