Advertisement
coinwalk

handbreaker i think fixed snowybot

Feb 16th, 2024
928
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 boon = 0.0001;
  4. var tens = (boon*10);
  5. var sevens = (boon*6.9);
  6. var eights = (boon*7.9);
  7. var morph = 0;
  8. var blast = 0;
  9. var cool = false;
  10. var matrix = 0;
  11. var bear = true;
  12. var plane = 6.9;
  13. var submarine = 2.9;
  14. var planetwo = 6.9;
  15. var submarinetwo = 2.9;
  16. var smile = 0;
  17. var smiley = 0;
  18. var fart = 3;
  19. var tiffy = ((Math.floor(original/tens))*tens);
  20. var james = ((Math.floor(original/tens))*tens);
  21. var snowy = boon;
  22. var bilance = original;
  23. var good = (((bilance-original)*1).toFixed(8));
  24.  
  25. function dobet(){
  26. if (!bear){
  27. matrix = Number(document.getElementById('me').firstChild.lastChild.firstChild.children[5].innerText);
  28. if (matrix>morph){
  29. bilance = document.getElementById('pct_balance').value;
  30. good = (((bilance-original)*1).toFixed(8));
  31. console.log("profit");
  32. console.log(good);
  33.     if ((bilance>(tiffy+(snowy*plane)))&&(smile<2)&&(bilance<(tiffy+(snowy*(plane+1))))){
  34.         snowy = snowy*2;
  35.         plane = 4.9
  36.         planetwo = 4.9
  37.         submarine = 4.9
  38.         submarinetwo = 1.9;
  39.         smile = smile+1;
  40.         tiffy = parseFloat(bilance);
  41.     }
  42.     if ((bilance>(tiffy+(snowy*plane)))&&(planetwo>2.1)&&(smile>=2)){
  43.         snowy = snowy*2;
  44.         planetwo = 0.9;
  45.         submarinetwo = 1.9;
  46.         plane = 4.9
  47.         submarine = 4.9
  48.         smile = smile+1;
  49.         tiffy = parseFloat(bilance);
  50.     }
  51.     if ((bilance>(tiffy+(snowy*planetwo)))&&(planetwo<2.1)){
  52.     snowy = boon;
  53.         planetwo = 6.9;
  54.         plane = 6.9;
  55.         submarinetwo = 2.9;
  56.         submarine = 2.9;
  57.         smile = 0;
  58.         smiley = 0;
  59.         tiffy = ((Math.floor(bilance/tens))*tens);
  60.     }
  61.     if ((bilance<(tiffy-(snowy*submarine)))&&(smile<2)&&(bilance>tiffy-(snowy*(submarine+1)))){
  62.         plane = 4.9;
  63.         smile = smile+1;
  64.         submarine = 4.9;
  65.         tiffy = parseFloat(bilance);
  66.         snowy = snowy*2;
  67.     }
  68.     if ((bilance<(tiffy-(snowy*submarine)))&&(submarinetwo>2.1)&&(smile>=2)){
  69.         snowy = snowy*2;
  70.         planetwo = 0.9;
  71.         plane = 4.9
  72.         submarine = 4.9
  73.         smile = smile+1;
  74.         submarinetwo = 1.9;
  75.         tiffy = parseFloat(bilance);
  76.     }
  77.     if ((bilance<(tiffy-(snowy*submarinetwo)))&&(submarinetwo<2.1)){
  78.     snowy = boon;
  79.         planetwo = 6.9;
  80.         plane = 6.9;
  81.         submarinetwo = 2.9;
  82.         submarine = 2.9;
  83.         smiley = 0;
  84.         smile = 0;
  85.         tiffy = ((Math.floor(bilance/tens))*tens);
  86.     }
  87.     if (bilance<boon) {
  88.         console.log("busted");    
  89.         return;
  90.     }
  91.     if (bilance>=1000) {
  92.        console.log("winner winner chicken dinner");
  93.        return;
  94.    }
  95. morph = parseFloat(matrix);
  96. bear = true;
  97. }}
  98. if (bear){
  99. $('#pct_chance').val(49.5);
  100. $('#pct_bet').val(((snowy*1).toFixed(8)));
  101. $('#a_lo').click();
  102. bear = false;
  103. }
  104. setTimeout(() => dobet(), 350)
  105. }
  106. dobet();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement