Advertisement
coinwalk

or try this

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