Advertisement
coinwalk

trial jd

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