Advertisement
coinwalk

try that

Oct 16th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.27 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 = (belance/10000).toFixed(8);
  5. var target = (belance*1.1);
  6. var targettwo = (belance*1.15);
  7. parseFloat(document.getElementById('pct_bet').value = bob);
  8. parseFloat(document.getElementById('pct_profit').value = (((bob*10)-bob).toFixed(8)));
  9. var old = document.getElementById('pct_balance').value;
  10. var olda = document.getElementById('pct_balance').value;
  11. var older = document.getElementById('pct_balance').value;
  12. var olderest = document.getElementById('pct_balance').value
  13. var x = bob
  14. var wall = document.getElementById('pct_balance').value
  15. var balance=document.getElementById('pct_balance').value;
  16. var v = 10000000
  17. var win;
  18. var nextbet;
  19. var shit = 0;
  20.  
  21. function go() {
  22. var classes = document.getElementsByClassName("fancybox-item fancybox-close");
  23. var Rate = classes[0];
  24. setTimeout(Rate.click(), 52);}
  25.  
  26. function invest() {
  27. balance = document.getElementById('pct_balance').value;
  28. $('#invest_edit').click();
  29. setTimeout(function(){document.getElementById('invest_input').value = (balance-wall);}, 500);
  30. setTimeout(function(){ $('#invest_button').click();}, 510);
  31. setTimeout(function(){go();}, 520);
  32. }
  33. function divest() {
  34. balance = document.getElementById('pct_balance').value;
  35. $('#invest_edit').click();
  36. setTimeout(function(){document.getElementById('divest_input').value = (wall-balance);}, 500);
  37. setTimeout(function(){ $('#divest_button').click();}, 510);
  38. setTimeout(function(){go();}, 520);
  39. }
  40. function dobet(){
  41. console.clear()
  42. var balance=document.getElementById('pct_balance').value;
  43. var previousbet = document.getElementById('pct_bet').value;
  44. document.getElementById('pct_chance').value = 49.5;
  45. document.getElementById('pct_payout').value = 2;
  46. if (balance<(old-(x*4))) {
  47. nextbet = previousbet*2;
  48. x = nextbet;
  49. old = parseFloat(balance);
  50. }
  51. if (balance>old) {
  52. old = parseFloat(balance);
  53. }
  54. if (balance>(olda+(x*6))) {
  55. nextbet = previousbet*2;
  56. x = nextbet;
  57. olda = parseFloat(balance);
  58. }
  59. if (balance<olda) {
  60. olda = parseFloat(balance);
  61. }
  62. if (balance>(older+(bob*9))) {
  63. nextbet = bob;
  64. x = bob;
  65. old = parseFloat(balance);
  66. olda = parseFloat(balance);
  67. older = parseFloat(balance);
  68. }
  69. if (nextbet==null) {
  70. nextbet=previousbet;
  71. }
  72. if (balance>=target) {
  73. invest();
  74. balance=document.getElementById('pct_balance').value;
  75. nextbet = bob;
  76. shit = shit+1;
  77. x = bob;
  78. old = wall;
  79. olda = wall;
  80. older = wall;
  81. }
  82. if (balance<=(wall*0.8)){
  83. divest();
  84. balance=document.getElementById('pct_balance').value;
  85. nextbet = bob;
  86. shit = shit+1;
  87. x = bob;
  88. old = wall;
  89. olda = wall;
  90. older = wall;
  91. }
  92. if (shit>=12){
  93. //stop();
  94. }
  95. var freak = ((balance-olderest).toFixed(8));
  96. console.log("balance made");
  97. console.log(freak);
  98. parseFloat(document.getElementById('pct_bet').value = (((nextbet*2)-nextbet).toFixed(8)));
  99. parseFloat(document.getElementById('pct_profit').value = (((nextbet*2)-nextbet).toFixed(8)));
  100. setTimeout(function(){$('#a_lo').click();}, 1100);}
  101. setInterval(() => dobet(), 1200);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement