Advertisement
coinwalk

snowybot supersnowzy strikes back

Feb 10th, 2024
1,096
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 = (dockiez/1000);
  4. var sad = (base*10);
  5. var frock = (base*2);
  6. var idiot = (base*6.9);
  7. var plane = 6.9;
  8. var submarine = 2.9;
  9. var bob = original;
  10. var timmy = ((Math.floor(original/sad))*sad);
  11. var neatoh = base;
  12. var fleif = original;
  13.  
  14. function dobet(){
  15. bilance = document.getElementById('pct_balance').value;
  16.     if (bilance>(timmy+(neatoh*plane))) {
  17.         plane = 4.9;
  18.         submarine = 4.9;
  19.         neatoh = neatoh*2;
  20.         timmy = parseFloat(bilance);
  21.     }
  22.     if (bilance<(timmy-(neatoh*submarine))) {
  23.         plane = 4.9;
  24.         submarine = 4.9;
  25.         neatoh = neatoh*2;
  26.         timmy = parseFloat(bilance);
  27.     }  
  28. if ((neatoh>=(bilance/300))&&(bilance<(((Math.floor(bilance/sad))*sad)+idiot))) {  
  29.         plane = 6.9;
  30.         submarine = 2.9;
  31.         timmy = ((Math.floor(bilance/sad))*sad);
  32.         neatoh = base
  33.    }
  34.     if (bilance<base) {
  35.         console.log("busted");    
  36.         return;
  37.     }
  38.     if (bilance>=(dockiez*2)) {
  39.        console.log("winner winner chicken dinner");
  40.        return;
  41.    }
  42. $('#pct_chance').val(49.5);
  43. $('#pct_bet').val(((neatoh*1).toFixed(8)));
  44. $('#a_lo').click();
  45. setTimeout(() => dobet(), 1);
  46. }
  47. dobet();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement