Advertisement
coinwalk

BEST BOT EVER JUST-DICE

Feb 12th, 2022
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.14 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/320).toFixed(7));
  5. var basebet = b;
  6. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  7. var c = b;
  8. var god = (c*3);
  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 = (previousbet*2);
  41. c = nextbet;
  42. god = (c*3);
  43. sev = false;
  44. joe = 0;
  45. t = parseFloat(balance);
  46. }
  47. if ((balance<=(t-god))&&(sev==false)&&(balance>(v-(b*18)))) {
  48. nextbet = b;
  49. c = b;
  50. god = (c*4);
  51. joe = 0;
  52. sin = 5;
  53. sev = true;
  54. t = parseFloat(balance);
  55. h = parseFloat(balance);
  56. }
  57. if ((balance<=(t-god))&&(sev==false)&&(balance<=(v-(b*18)))) {
  58. nextbet = previousbet*2;
  59. c = nextbet;
  60. god = (c*4);
  61. sin = 5;
  62. sev = true;
  63. t = parseFloat(balance);
  64. h = parseFloat(balance);
  65. }
  66. if (balance>(h+(c*sin))) {
  67. nextbet = (previousbet*2);
  68. c = nextbet;
  69. ian = parseFloat(balance);
  70. joe = (c*2);
  71. t = parseFloat(balance);
  72. sin = 5;
  73. god = (c*4)
  74. sev = false;
  75. h = parseFloat(balance);
  76. }
  77. if (nextbet<b) {
  78. nextbet = b;
  79. c = b;
  80. }
  81. if (balance>=(ian+(joe))) {
  82. nextbet = b;
  83. c = b;
  84. god = (c*4);
  85. sev = true;
  86. sin = 5;
  87. v = parseFloat(balance);
  88. t = parseFloat(balance);
  89. joe = (b*10);
  90. h = parseFloat(balance);
  91. ian = parseFloat(balance);
  92. }
  93. if (balance>=target) {
  94. //stop();
  95. return;
  96. }
  97. if (balance>wild) {
  98. wild = parseFloat(balance);
  99. }
  100. if (balance<min) {
  101. min = parseFloat(balance);
  102. }
  103. var freak = ((balance-olderest).toFixed(8));
  104. console.log("balance made");
  105. console.log(freak);
  106. console.log("biggest balance");
  107. console.log(parseFloat(wild));
  108. console.log("lowest balance");
  109. console.log(parseFloat(min));
  110. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  111. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)))
  112. $('#a_lo').click();
  113. }
  114. setInterval(() => dobet(), 800);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement