Advertisement
coinwalk

Untitled

Nov 11th, 2023
807
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/640).toFixed(8));
  3. var floatingbase = base;
  4. var taget = (originalbal*24);
  5. var groupedten = (base*10);
  6. var groupedseven = (base*6.5);
  7. var tobetnext = ((floatingbase*1).toFixed(8));
  8. var bolance = originalbal;
  9. var bilance = originalbal;
  10. var nobby = originalbal;
  11. var over = 6.9;
  12. var under = 2.9;
  13. var fart = 1;
  14. var freak = false;
  15. var oldbolance = ((Math.floor(originalbal/groupedten))*groupedten);
  16. var oldbolancetree = ((Math.floor(originalbal/groupedten))*groupedten);
  17. var oldbolancetwo = ((Math.floor(originalbal/groupedten))*groupedten);
  18.  
  19.  function getR(minz, maxz) {
  20.   minz = Math.ceil(minz);
  21.   maxz = Math.floor(maxz);
  22.   return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  23. }
  24.  
  25.  
  26. function get(){
  27. console.clear();
  28. setTimeout(function(){
  29. bilance = document.getElementById('pct_balance').value;
  30. if (bilance>nobby){
  31. bolance = bolance+floatingbase;
  32. nobby = parseFloat(bilance);
  33. }
  34. if (bilance<nobby){
  35. bolance = bolance-floatingbase;
  36. nobby = parseFloat(bilance);
  37. }
  38. if (bolance>(oldbolance+(floatingbase*over))) {
  39.     floatingbase = floatingbase*2;
  40.     over = 4.9;
  41.     under = 4.9;
  42.     freak = true;
  43.     oldbolance = parseFloat(bolance);
  44. }
  45. if (bolance<(oldbolance-(floatingbase*under))) {
  46.     floatingbase = floatingbase*2;
  47.     over = 4.9;
  48.     under = 4.9;
  49.     freak = false;
  50.     oldbolance = parseFloat(bolance);
  51. }
  52. if (((bolance-floatingbase)<=(bolance/40))&&(floatingbase>base)&&(bolance<(((Math.floor(bolance/groupedten))*groupedten)+groupedseven))){
  53.     floatingbase = base;
  54.     fart = 0;
  55.     over = 6.9;
  56.     under = 2.9;
  57.     bolance = originalbal;
  58.     oldbolance = ((Math.floor(bolance/groupedten))*groupedten);
  59. }
  60. if (((bolance-floatingbase)<=(bolance/40))&&(floatingbase>(base*2))&&(bolance>(((Math.floor(bolance/groupedten))*groupedten)+groupedseven))){
  61.     floatingbase = base*2;
  62.     fart = 0;
  63.     over = 4.9;
  64.     under = 4.9;
  65.     bolance = originalbal;
  66.     oldbolance = parseFloat(bolance);
  67. }
  68.     if (bolance >= taget) {
  69.         console.log("winner winner chicken dinner");
  70.         return;
  71.     }
  72. tobetnext = ((floatingbase*1).toFixed(8));
  73. $('#pct_chance').val(49.5);
  74. $('#pct_bet').val(tobetnext);
  75. $('#a_lo').click();
  76. }, 100);
  77. var good = ((bilance-originalbal).toFixed(8));
  78. console.log("profit");
  79. console.log(good);
  80. setTimeout(() => get(), (getR(100,200)));
  81. }
  82. get();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement