Advertisement
coinwalk

jd2

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