Advertisement
coinwalk

emanual snowybot

Nov 13th, 2023
1,220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var originalbal = parseFloat(document.getElementById('pct_balance').value);
  2. var base = Number((originalbal/800).toFixed(8));
  3. var floatingbase = base;
  4. var taget = (originalbal*24000);
  5. var groupedten = (base*10);
  6. var groupedseven = (base*6.5);
  7. var tobetnext = ((floatingbase*1).toFixed(8));
  8. var grind = (base*80)
  9. var bolance = grind;
  10. var over = 6.9;
  11. var under = 2.9;
  12. var freak = 0;
  13. var oldbolance = ((Math.floor(originalbal/groupedten))*groupedten);
  14. var oldtwo = originalbal;
  15.  
  16.  
  17.  function getR(minz, maxz) {
  18.   minz = Math.ceil(minz);
  19.   maxz = Math.floor(maxz);
  20.   return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  21. }
  22.  
  23.  
  24. function get(){
  25. console.clear();
  26. setTimeout(function(){
  27. bolance = document.getElementById('pct_balance').value;
  28. if (bolance>(oldbolance+(floatingbase*over))){
  29.     floatingbase = floatingbase*2;
  30.     over = 4.9;
  31.     under = 4.9
  32.     freak = 0;
  33.     oldbolance = parseFloat(bolance);
  34. }
  35. if (bolance<(oldbolance-(floatingbase*under))){
  36.     floatingbase = floatingbase*2;
  37.     over = 4.9;
  38.     under = 4.9;
  39.     oldbolance = parseFloat(bolance);
  40. }
  41. if (floatingbase>=(oldtwo/10)){
  42.     floatingbase = base;
  43.     over = 6.9;
  44.     under = 2.9;
  45.     oldbolance = ((Math.floor(bolance/groupedten))*groupedten);
  46.     oldtwo = parseFloat(bolance);
  47. }
  48. if (oldtwo>originalbal){
  49. oldtwo = originalbal;
  50. }
  51. if (((floatingbase*4)>=bolance)&&(floatingbase>base)){
  52.     floatingbase = base;
  53.     over = 6.9;
  54.     under = 2.9;
  55.     oldbolance = ((Math.floor(bolance/groupedten))*groupedten);
  56.     oldtwo = parseFloat(bolance);
  57. }
  58.     if (bolance >= taget) {
  59.         console.log("winner winner chicken dinner");
  60.         return;
  61.     }
  62. tobetnext = ((floatingbase*1).toFixed(8));
  63. $('#pct_chance').val(49.5);
  64. $('#pct_bet').val(tobetnext);
  65. $('#a_lo').click();
  66. }, (getR(100,200)));
  67. var good = ((bolance-originalbal).toFixed(8));
  68. console.log("profit");
  69. console.log(good);
  70. setTimeout(() => get(), (getR(80,100)));
  71. }
  72. get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement