Advertisement
coinwalk

hahuh fixed issues i think

Apr 21st, 2022
40
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.20 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 = 0.000001;
  5. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  6. var cript = bob;
  7. var god = (bob*2);
  8. var joe = false;
  9. var target = 50000;
  10. var snow = 6;
  11. var sir = false;
  12. var olderest = document.getElementById('pct_balance').value
  13. var balancez = parseFloat(document.getElementById('pct_balance').value);
  14. var have = parseFloat(document.getElementById('pct_balance').value);
  15. var very = parseFloat(document.getElementById('pct_balance').value);
  16. var teee = parseFloat(document.getElementById('pct_balance').value);
  17. var ian = parseFloat(document.getElementById('pct_balance').value);
  18. var mybet;
  19. var wild = document.getElementById('pct_balance').value;
  20. var min = document.getElementById('pct_balance').value;
  21. parseFloat(document.getElementById('pct_bet').value = bob);
  22. parseFloat(document.getElementById('pct_profit').value = bob);
  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 balancey = document.getElementById('pct_balance').value;
  33. balancez = document.getElementById('pct_balance').value;
  34. var stuit = document.getElementById('pct_bet').value;
  35. document.getElementById('pct_chance').value = 49.5;
  36. document.getElementById('pct_payout').value = 2;
  37. if (mybet==null) {
  38. mybet = stuit;
  39. }
  40. if (balancez<(have-god)) {
  41. mybet = stuit*2;
  42. cript = (stuit*2);
  43. god = (stuit*5);
  44. have = parseFloat(balancez);
  45. snow = 6;
  46. sir = false;
  47. joe = true;
  48. }
  49. if (balancez>(have+(cript*snow))) {
  50. mybet = stuit*2;
  51. cript = (stuit*2);
  52. god = (stuit*5);
  53. snow = 5;
  54. have = parseFloat(balancez);
  55. }
  56. var jim = (Math.floor((balancez-ian)/(bob*10)).toPrecision(1));
  57. if ((jim==1)&&(sir==false)) {
  58. mybet = bob;
  59. cript = bob;
  60. god = (bob*2);
  61. ian = ian+((jim)*(bob*10));
  62. have = parseFloat(ian);
  63. snow = 6;
  64. sir = true
  65. joe = false;
  66. }
  67. if ((jim==1)&&(sir==true)) {
  68. mybet = bob;
  69. cript = bob;
  70. god = (bob*2);
  71. ian = ian+((jim)*(bob*10));
  72. have = parseFloat(ian);
  73. snow = 5;
  74. sir = false
  75. joe = false;
  76. }
  77. if (jim>1) {
  78. mybet = bob;
  79. cript = bob;
  80. god = (bob*2);
  81. ian = ian+((jim)*(bob*10));
  82. have = parseFloat(ian);
  83. snow = 5;
  84. sir = false;
  85. joe = false;
  86. }
  87. if ((jim==0)&&(joe==true)&&((balancez-ian)>=0)){
  88. mybet = bob;
  89. cript = (bob);
  90. god = (bob*2);
  91. have = ian;
  92. snow = 6;
  93. ian = ian;
  94. joe = false;
  95. }
  96. if (balancez>=target) {
  97. //stop();
  98. return;
  99. }
  100. if (balancez>wild) {
  101. wild = parseFloat(balancez);
  102. }
  103. if (balancez<min) {
  104. min = parseFloat(balancez);
  105. }
  106. var freak = ((balancez-olderest).toFixed(8));
  107. console.log("balance made");
  108. console.log(freak);
  109. console.log("biggest balance");
  110. console.log(parseFloat(wild));
  111. console.log("lowest balance");
  112. console.log(parseFloat(min));
  113. parseFloat(document.getElementById('pct_bet').value = mybet);
  114. parseFloat(document.getElementById('pct_profit').value = mybet);
  115. $('#a_lo').click();
  116. }
  117. setInterval(() => dobet(), 80);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement