Advertisement
coinwalk

working

Jan 11th, 2022
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.12 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 ebe = ((belance/1500).toFixed(5));
  5. var b = ebe;
  6. var beta = ebe;
  7. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  8. var oldt = parseFloat(document.getElementById('pct_balance').value);
  9. var ko = parseFloat(document.getElementById('pct_balance').value);
  10. var f = true;
  11. var g = true;
  12. var target = 5000;
  13. var olderest = document.getElementById('pct_balance').value;
  14. var old = parseFloat(document.getElementById('pct_balance').value);
  15. var oldc = parseFloat(document.getElementById('pct_balance').value);
  16. var fold = parseFloat(document.getElementById('pct_balance').value);
  17. var nextbet;
  18. var wild = document.getElementById('pct_balance').value;
  19. var mini =document.getElementById('pct_balance').value;
  20. parseFloat(document.getElementById('pct_bet').value = ebe);
  21. parseFloat(document.getElementById('pct_profit').value = ebe);
  22.  
  23.  
  24. function getR(min, max) {
  25. min = Math.ceil(min);
  26. max = Math.floor(max);
  27. return Math.floor(Math.random() * (max - min + 1)) + min;
  28. }
  29.  
  30. function dobet(){
  31. console.clear();
  32. var balance = document.getElementById('pct_balance').value;
  33. var previousbet = document.getElementById('pct_bet').value;
  34. document.getElementById('pct_chance').value = 49.5;
  35. document.getElementById('pct_payout').value = 2;
  36. if (balance>=(oldt+(b*7))) {
  37. nextbet = previousbet*2;
  38. b = nextbet;
  39. }
  40. if ((balance<=(oldbal-(b*3)))&&(g==true)) {
  41. nextbet = previousbet*2;
  42. b = nextbet;
  43. f = false;
  44. g = false;
  45. oldt = parseFloat(balance);
  46. oldbal = parseFloat(balance);
  47. }
  48. if ((balance<=(oldbal-(b*3)))&&(g==false)) {
  49. nextbet = previousbet/2;
  50. b = nextbet;
  51. f = false;
  52. g = true;
  53. oldt = parseFloat(balance);
  54. oldbal = parseFloat(balance);
  55. }
  56. if (balance>=(oldt+(b*10))) {
  57. nextbet = previousbet/2;
  58. b = nextbet;
  59. g = true;
  60. oldt = parseFloat(balance);
  61. oldbal = parseFloat(balance);
  62. }
  63. if (balance>=(old+(ebe*10))) {
  64. nextbet = ebe;
  65. b = ebe;
  66. f = true;
  67. g = true;
  68. oldt = parseFloat(balance);
  69. oldbal = parseFloat(balance);
  70. old = parseFloat(balance);
  71. ko = parseFloat(balance);
  72. }
  73. if (((balance>=old)&&(f==false))) {
  74. nextbet = ebe;
  75. b = ebe;
  76. f = true;
  77. g = true;
  78. oldt = parseFloat(balance);
  79. oldbal = parseFloat(balance);
  80. old = parseFloat(balance);
  81. }
  82. if (nextbet==null) {
  83. nextbet = previousbet;
  84. }
  85. if (balance>=target) {
  86. //stop();
  87. return;
  88. }
  89. if (balance>wild) {
  90. wild = parseFloat(balance);
  91. }
  92. if (balance<mini) {
  93. mini = parseFloat(balance);
  94. }
  95. var freak = ((balance-olderest).toFixed(8));
  96. console.log("balance made");
  97. console.log(freak);
  98. console.log("biggest balance");
  99. console.log(parseFloat(wild));
  100. console.log("lowest balance");
  101. console.log(parseFloat(mini));
  102. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  103. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)));
  104. $('#a_lo').click();
  105. }
  106. setInterval(() => dobet(), 1200);
  107.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement