Advertisement
coinwalk

lolllllllllllllllllllll

Jan 13th, 2022
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.00 KB | None | 0 0
  1. var belance = parseFloat(document.getElementById('pct_balance').value);
  2. document.getElementById('pct_chance').value = 49.5;
  3. document.getElementById('pct_payout').value = 2;
  4. var div = 100;
  5. var ebe = ((belance/div).toFixed(8));
  6. var b = ((belance/div).toFixed(8));
  7. var beta = ((belance/div).toFixed(8));
  8. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  9. var oldt = parseFloat(document.getElementById('pct_balance').value);
  10. var ko = parseFloat(document.getElementById('pct_balance').value);
  11. var kio = parseFloat(document.getElementById('pct_balance').value);
  12. var f = true;
  13. var g = true;
  14. var k = true;
  15. var fi = true;
  16. var big = parseFloat(document.getElementById('pct_balance').value);
  17. var target = 369;
  18. var olderest = parseFloat(document.getElementById('pct_balance').value);
  19. var old = parseFloat(document.getElementById('pct_balance').value);
  20. var oldc = parseFloat(document.getElementById('pct_balance').value);
  21. var zim = parseFloat(document.getElementById('pct_balance').value);
  22. var fold = parseFloat(document.getElementById('pct_balance').value);
  23. var nextbet;
  24. var lose =0;
  25. var win = 0;
  26. var loss =0;
  27. var won = 0;
  28. var jim = (b*6);
  29. var fue;
  30. var fug;
  31. var ful;
  32. var mate = true;
  33. var shi = parseFloat(document.getElementById('pct_balance').value);
  34. var wild = parseFloat(document.getElementById('pct_balance').value);
  35. var mini = parseFloat(document.getElementById('pct_balance').value);
  36. parseFloat(document.getElementById('pct_bet').value = ebe);
  37. parseFloat(document.getElementById('pct_profit').value = ebe);
  38.  
  39.  
  40. function getR(min, max) {
  41. min = Math.ceil(min);
  42. max = Math.floor(max);
  43. return Math.floor(Math.random() * (max - min + 1)) + min;
  44. }
  45.  
  46. function dobet(){
  47. console.clear();
  48. var balance = document.getElementById('pct_balance').value;
  49. var previousbet = document.getElementById('pct_bet').value;
  50. document.getElementById('pct_chance').value = 49.5;
  51. document.getElementById('pct_payout').value = 2;
  52. if (nextbet==null) {
  53. nextbet = previousbet;
  54. }
  55. if (balance>(oldt+(b*6))) {
  56. nextbet = previousbet*2;
  57. b = nextbet;
  58. g = false;
  59. oldt = parseFloat(balance);
  60. }
  61. if (balance<oldt) {
  62. oldt = parseFloat(balance);
  63. }
  64. if ((balance<=(oldbal-jim))&&(balance<old)&&(fi==true)) {
  65. nextbet = previousbet*2;
  66. b = nextbet;
  67. jim = (b*4);
  68. f = false;
  69. fi = false
  70. g = true;
  71. k = false;
  72. oldt = parseFloat(balance);
  73. oldbal = parseFloat(balance);
  74. }
  75. if ((balance<=(oldbal-jim))&&(balance<old)&&(fi==false)) {
  76. nextbet = previousbet/2;
  77. b = nextbet;
  78. jim = (b*6);
  79. f = false;
  80. fi = true;
  81. g = true;
  82. k = false;
  83. oldt = parseFloat(balance);
  84. oldbal = parseFloat(balance);
  85. }
  86. if (balance>oldbal) {
  87. oldbal = parseFloat(balance);
  88. }
  89. if ((balance>=(oldt+(b*3)))&&(g==false)) {
  90. nextbet = previousbet/2
  91. b = nextbet;
  92. g = true;
  93. jim = (b*6);
  94. oldt = parseFloat(balance);
  95. oldbal = parseFloat(balance);
  96. }
  97. if (balance>=(old+(ebe*11))) {
  98. nextbet = ebe;
  99. b = ebe;
  100. f = true;
  101. g = true;
  102. k = true;
  103. fi = true;
  104. jim = (b*6);
  105. oldt = parseFloat(balance);
  106. oldbal = parseFloat(balance);
  107. old = parseFloat(balance);
  108. }
  109. if (((balance>=old)&&(f==false))) {
  110. nextbet = ebe;
  111. b = ebe;
  112. f = true;
  113. g = true;
  114. k = true;
  115. fi = true;
  116. jim = (b*6);
  117. oldt = parseFloat(balance);
  118. oldbal = parseFloat(balance);
  119. old = parseFloat(balance);
  120. }
  121. if (balance>=target) {
  122. //stop();
  123. return;
  124. }
  125. if (balance>big) {
  126. big = parseFloat(balance);
  127. }
  128. if (balance<mini) {
  129. mini = parseFloat(balance);
  130. }
  131. var frea = ((balance-olderest).toFixed(8));
  132. console.log("balance made");
  133. console.log(frea);
  134. console.log("biggest balance");
  135. console.log(parseFloat(big));
  136. console.log("lowest balance");
  137. console.log(parseFloat(mini));
  138. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  139. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)));
  140. $('#a_lo').click();
  141. }
  142. setInterval(() => dobet(), 1200);
  143.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement