Advertisement
coinwalk

for pat

Dec 27th, 2021
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 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 = ((belance/80).toFixed(8));
  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 wild = document.getElementById('pct_balance').value;
  22. var min =document.getElementById('pct_balance').value;
  23. parseFloat(document.getElementById('pct_bet').value = b);
  24. parseFloat(document.getElementById('pct_profit').value = b);
  25.  
  26.  
  27. function dobet(){
  28. console.clear()
  29. var balance = document.getElementById('pct_balance').value;
  30. var previousbet = document.getElementById('pct_bet').value;
  31. document.getElementById('pct_chance').value = 49.5;
  32. document.getElementById('pct_payout').value = 2;
  33. if (nextbet==null) {
  34. nextbet = previousbet;
  35. }
  36. if (balance>=(oldbal+(b*6))) {
  37. nextbet = b*2;
  38. }
  39. if (balance<=(oldbal-(b*3))) {
  40. nextbet = b*2;
  41. f = false;
  42. }
  43. if ((balance<=(oldbal-(b*9)))||((balance>=old)&&(f==false))) {
  44. nextbet = b;
  45. f = true;
  46. oldbal = parseFloat(balance);
  47. old = parseFloat(balance);
  48. }
  49. if (balance>=(old+(b*10))) {
  50. nextbet = b;
  51. f = true;
  52. oldbal = parseFloat(balance);
  53. old = parseFloat(balance);
  54. }
  55. if (balance>=(oldt+(b*10))) {
  56. nextbet = b;
  57. f = true;
  58. oldbal = parseFloat(balance);
  59. old = parseFloat(balance);
  60. oldt = parseFloat(balance);
  61. }
  62. if (balance>=target) {
  63. //stop();
  64. return;
  65. }
  66. if (balance>wild) {
  67. wild = parseFloat(balance);
  68. }
  69. if (balance<min) {
  70. min = parseFloat(balance);
  71. }
  72. var freak = ((balance-olderest).toFixed(8));
  73. console.log("balance made");
  74. console.log(freak);
  75. console.log("biggest balance");
  76. console.log(parseFloat(wild));
  77. console.log("lowest balance");
  78. console.log(parseFloat(min));
  79. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  80. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)))
  81. $('#a_lo').click();
  82. }
  83. setInterval(() => dobet(), 1200);
  84.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement