Advertisement
coinwalk

ko 2022

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