Advertisement
coinwalk

omg

Dec 27th, 2021
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. var belance = document.getElementById('pct_balance').value;
  2. document.getElementById('pct_chance').value = 49.5;
  3. document.getElementById('pct_payout').value = 2;
  4. var bob = 100000000000;
  5. var b = 0.001;
  6. var i = document.getElementById('pct_balance').value;
  7. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  8. var oldb = document.getElementById('pct_balance').value;
  9. var f = true;
  10. var target = 50000;
  11. var olderest = document.getElementById('pct_balance').value
  12. var old = parseFloat(document.getElementById('pct_balance').value);
  13. var olde = document.getElementById('pct_balance').value;
  14. var older = document.getElementById('pct_balance').value;
  15. var oldt = parseFloat(document.getElementById('pct_balance').value);
  16. var nextbet;
  17. var r = true;
  18. var j = true;
  19. var nob = 0;
  20. var box = 6;
  21. var bim = (b*7);
  22. var zim = (b*3);
  23. var fim = (b*10)
  24. var wild = document.getElementById('pct_balance').value;
  25. var min =document.getElementById('pct_balance').value;
  26. parseFloat(document.getElementById('pct_bet').value = b);
  27. parseFloat(document.getElementById('pct_profit').value = b);
  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 (nextbet==null) {
  37. nextbet = previousbet;
  38. }
  39. if (balance>=(oldbal+bim)) {
  40. nextbet = b*2;
  41. }
  42. if (balance<=(oldbal-zim)) {
  43. nextbet = b*2;
  44. zim = (b*3);
  45. f = false;
  46. }
  47. if ((balance<=(oldbal-(b*9)))||((balance>=old)&&(f==false))) {
  48. nextbet = b;
  49. bim = (b*6);
  50. zim = (b*4);
  51. fim = (b*9);
  52. f = true;
  53. oldbal = parseFloat(balance);
  54. old = parseFloat(balance);
  55. }
  56. if (balance>=(old+fim)) {
  57. nextbet = b;
  58. f = true;
  59. bim = (b*6);
  60. fim = (b*9);
  61. zim = (b*4);
  62. oldbal = parseFloat(balance);
  63. old = parseFloat(balance);
  64. }
  65. if (balance>=(oldt+fim)) {
  66. nextbet = b;
  67. f = true;
  68. bim = (b*6);
  69. zim = (b*4);
  70. fim = (b*9);
  71. oldbal = parseFloat(balance);
  72. old = parseFloat(balance);
  73. oldt = parseFloat(balance);
  74. }
  75. if (balance>=target) {
  76. //stop();
  77. return;
  78. }
  79. if (balance>wild) {
  80. wild = parseFloat(balance);
  81. }
  82. if (balance<min) {
  83. min = parseFloat(balance);
  84. }
  85. var freak = ((balance-olderest).toFixed(8));
  86. console.log("balance made");
  87. console.log(freak);
  88. console.log("biggest balance");
  89. console.log(parseFloat(wild));
  90. console.log("lowest balance");
  91. console.log(parseFloat(min));
  92. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  93. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)))
  94. $('#a_lo').click();
  95. }
  96. setInterval(() => dobet(), 1200);
  97.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement