Advertisement
coinwalk

jd

Feb 6th, 2022
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.88 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(8));
  5. var basebet = b;
  6. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  7. var f = true;
  8. var k = true;
  9. var c = b;
  10. var joe = (b*7)
  11. var target = 50000;
  12. var olderest = document.getElementById('pct_balance').value
  13. var h = parseFloat(document.getElementById('pct_balance').value);
  14. var v = parseFloat(document.getElementById('pct_balance').value);
  15. var t = parseFloat(document.getElementById('pct_balance').value);
  16. var i = parseFloat(document.getElementById('pct_balance').value);
  17. var nextbet;
  18. var wild = document.getElementById('pct_balance').value;
  19. var min = document.getElementById('pct_balance').value;
  20. parseFloat(document.getElementById('pct_bet').value = b);
  21. parseFloat(document.getElementById('pct_profit').value = b);
  22.  
  23. function getR(minz, maxz) {
  24. minz = Math.ceil(minz);
  25. maxz = Math.floor(maxz);
  26. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  27. }
  28.  
  29. function dobet(){
  30. console.clear()
  31. var balance = document.getElementById('pct_balance').value;
  32. var previousbet = document.getElementById('pct_bet').value;
  33. document.getElementById('pct_chance').value = 49.5;
  34. document.getElementById('pct_payout').value = 2;
  35. if (nextbet==null) {
  36. nextbet = previousbet;
  37. }
  38. if ((balance<=(t-(c*3)))&&(balance<i)) {
  39. nextbet = previousbet*2;
  40. c = nextbet;
  41. joe = 0;
  42. t = parseFloat(balance);
  43. h = parseFloat(balance);
  44. }
  45. if (balance<=h) {
  46. h = parseFloat(balance);
  47. }
  48. if (balance>(h+(c*6))) {
  49. nextbet = c*2;
  50. c = nextbet;
  51. h = parseFloat(balance);
  52. i = parseFloat(balance);
  53. joe = (c*2);
  54. }
  55. if (balance>=t) {
  56. t = parseFloat(balance);
  57. }
  58. if (balance>=(i+joe)) {
  59. nextbet = previousbet/2;
  60. c = nextbet;
  61. h = parseFloat(balance);
  62. t = parseFloat(balance);
  63. i = parseFloat(balance);
  64. joe = (b*10);
  65. }
  66. if (balance>=(v+(b*7))) {
  67. nextbet = b;
  68. c = b;
  69. h = parseFloat(balance);
  70. t = parseFloat(balance);
  71. i = parseFloat(balance);
  72. joe = (b*10);
  73. v = 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(), 1124);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement