Advertisement
coinwalk

lololololol

Jan 14th, 2022
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.02 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. function getR(min, max) {
  40. min = Math.ceil(min);
  41. max = Math.floor(max);
  42. return Math.floor(Math.random() * (max - min + 1)) + min;
  43. }
  44. function dobet(){
  45. console.clear();
  46. var balance = document.getElementById('pct_balance').value;
  47. var previousbet = document.getElementById('pct_bet').value;
  48. document.getElementById('pct_chance').value = 49.5;
  49. document.getElementById('pct_payout').value = 2;
  50. if (nextbet==null) {
  51. nextbet = previousbet;
  52. }
  53. if (balance>(oldt+(b*6))) {
  54. nextbet = previousbet*2;
  55. b = nextbet;
  56. g = false;
  57. jim = (b*6);
  58. oldt = parseFloat(balance);
  59. }
  60. if (balance<oldt) {
  61. oldt = parseFloat(balance);
  62. }
  63. if ((balance<=(oldbal-jim))&&(balance<old)&&(fi==true)) {
  64. nextbet = previousbet*2;
  65. b = nextbet;
  66. jim = (b*4);
  67. f = false;
  68. fi = false
  69. g = true;
  70. k = false;
  71. oldt = parseFloat(balance);
  72. oldbal = parseFloat(balance);
  73. }
  74. if ((balance<=(oldbal-jim))&&(balance<old)&&(fi==false)) {
  75. nextbet = previousbet/2;
  76. b = nextbet;
  77. jim = (b*6);
  78. f = false;
  79. fi = true;
  80. g = true;
  81. k = false;
  82. oldt = parseFloat(balance);
  83. oldbal = parseFloat(balance);
  84. }
  85. if (balance>oldbal) {
  86. oldbal = parseFloat(balance);
  87. }
  88. if ((balance>=(oldt+(b*3)))&&(g==false)) {
  89. nextbet = previousbet/2
  90. b = nextbet;
  91. g = true;
  92. jim = (b*6);
  93. oldt = parseFloat(balance);
  94. oldbal = parseFloat(balance);
  95. }
  96. if (balance>=(old+(ebe*11))) {
  97. nextbet = ebe;
  98. b = ebe;
  99. f = true;
  100. g = true;
  101. k = true;
  102. fi = true;
  103. jim = (b*6);
  104. oldt = parseFloat(balance);
  105. oldbal = parseFloat(balance);
  106. old = parseFloat(balance);
  107. }
  108. if (((balance>=old)&&(f==false))) {
  109. nextbet = ebe;
  110. b = ebe;
  111. f = true;
  112. g = true;
  113. k = true;
  114. fi = true;
  115. jim = (b*6);
  116. oldt = parseFloat(balance);
  117. oldbal = parseFloat(balance);
  118. old = parseFloat(balance);
  119. }
  120. if (balance>=target) {
  121. //stop();
  122. return;
  123. }
  124. if (balance>big) {
  125. big = parseFloat(balance);
  126. }
  127. if (balance<mini) {
  128. mini = parseFloat(balance);
  129. }
  130. var frea = ((balance-olderest).toFixed(8));
  131. console.log("balance made");
  132. console.log(frea);
  133. console.log("biggest balance");
  134. console.log(parseFloat(big));
  135. console.log("lowest balance");
  136. console.log(parseFloat(mini));
  137. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  138. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)));
  139. $('#a_lo').click();
  140. }
  141. setInterval(() => dobet(), 1200);
  142.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement