coinwalk

finally after 5 years its completed

Feb 25th, 2022
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. var belance = document.getElementById('pct_balance').value;
  2. // get start balance;
  3. document.getElementById('pct_chance').value = 49.5;
  4. document.getElementById('pct_payout').value = 2;
  5. // set chance;
  6. var fruck = ((belance/100).toFixed(8));
  7. // div;
  8. var gook = fruck;
  9. // div again;
  10. var dope = (fruck*3);
  11. // 3x div;
  12. var dap = (fruck*4);
  13. // 4x div;
  14. var dol = 6;
  15. var jim = (fruck*10);
  16. // 10x div;
  17. var joe = (fruck*10);
  18. // 10x div;
  19. var targe = 50000;
  20. // target;
  21. var sev = true;
  22. var farg = true;
  23. var frogger = false;
  24. // variables;
  25. var olderest = document.getElementById('pct_balance').value;
  26. var have = parseFloat(document.getElementById('pct_balance').value);
  27. var volo = parseFloat(document.getElementById('pct_balance').value);
  28. var still = parseFloat(document.getElementById('pct_balance').value);
  29. var ian = parseFloat(document.getElementById('pct_balance').value);
  30. var wild = document.getElementById('pct_balance').value;
  31. var min = document.getElementById('pct_balance').value;
  32. // floating old balances;
  33. var nextbe;
  34. // nextbet;
  35. parseFloat(document.getElementById('pct_bet').value = fruck);
  36. parseFloat(document.getElementById('pct_profit').value = fruck);
  37. // to set the bet;
  38.  
  39. function getR(minz, maxz) {
  40. minz = Math.ceil(minz);
  41. maxz = Math.floor(maxz);
  42. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  43. }
  44. // get random;
  45.  
  46.  
  47. function dobet(){
  48. console.clear();
  49. // clear console;
  50. var balanc = document.getElementById('pct_balance').value;
  51. // get balance;
  52. var prev = document.getElementById('pct_bet').value;
  53. // get previousbet;
  54. document.getElementById('pct_chance').value = 49.5;
  55. document.getElementById('pct_payout').value = 2;
  56. // set chance;
  57. if (nextbe==null) {
  58. nextbe = prev;
  59. }
  60. // in lua it does this on auto need set javascript;
  61. if ((balanc<=(still-dope))&&(sev==true)&&(farg==true)) {
  62. nextbe = prev*2;
  63. gook = (nextbe);
  64. sev = false;
  65. farg = true;
  66. dol = 5;
  67. joe = 0;
  68. still = parseFloat(balanc);
  69. dope = ((parseFloat(prev))*5);
  70. }
  71. if ((balanc<=(still-dope))&&(sev==false)&&(farg==true)) {
  72. nextbe = fruck;
  73. gook = fruck;
  74. still = parseFloat(balanc);
  75. dope = dap;
  76. dol = 5;
  77. joe = 0;
  78. sev = true;
  79. farg = false;
  80. have = parseFloat(balanc);
  81. }
  82. if ((balanc<=(still-dope))&&(sev==true)&&(farg==false)) {
  83. nextbe = prev*2;
  84. gook = (nextbe);
  85. still = parseFloat(balanc);
  86. dope = (gook*3);
  87. sev = true;
  88. frogger = true;
  89. dol = 5;
  90. joe = 0;
  91. farg = false;
  92. have = parseFloat(balanc);
  93. }
  94. if ((balanc>(have+(gook*dol)))&&(frogger==false)) {
  95. nextbe = prev*2;
  96. still = parseFloat(balanc);
  97. dol = 5;
  98. sev = false;
  99. farg = true;
  100. frogger = false;
  101. gook = (nextbe);
  102. dope = (gook*3);
  103. have = parseFloat(balanc);
  104. }
  105. if ((balanc>(have+(gook*dol)))&&(frogger==true)) {
  106. nextbe = prev*2;
  107. still = parseFloat(balanc);
  108. dol = 5;
  109. sev = true;
  110. farg = false;
  111. frogger = true;
  112. gook = (nextbe);
  113. dope = (gook*5);
  114. have = parseFloat(balanc);
  115. }
  116. if (balanc>=(ian+(joe))) {
  117. nextbe = fruck;
  118. gook = fruck;
  119. dope = ((fruck)*3);
  120. sev = true;
  121. dol = 5;
  122. farg = true;
  123. frogger = false;
  124. still = (ian+joe);
  125. have = (ian+joe);
  126. ian =( ian+joe);
  127. joe = fruck*10;
  128. }
  129. // script;
  130. if (balanc>=targe) {
  131. //stop();
  132. return;
  133. }
  134. if (balanc>wild) {
  135. wild = parseFloat(balanc);
  136. }
  137. if (balanc<min) {
  138. min = parseFloat(balanc);
  139. }
  140. var freak = ((balanc-olderest).toFixed(8));
  141. console.log("balance made");
  142. console.log(freak);
  143. console.log("biggest balance");
  144. console.log(parseFloat(wild));
  145. console.log("lowest balance");
  146. console.log(parseFloat(min));
  147. // find biggest lowest and made balances;
  148. parseFloat(document.getElementById('pct_bet').value = (((nextbe*2)-nextbe).toFixed(8)));
  149. parseFloat(document.getElementById('pct_profit').value = (((nextbe*2)-nextbe).toFixed(8)))
  150. // set bets;
  151. $('#a_lo').click();
  152. // click bet;
  153. }
  154. setInterval(() => dobet(), 800);
  155. // set loop;
Add Comment
Please, Sign In to add comment