Advertisement
coinwalk

upgrade

Apr 14th, 2022
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.98 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.0001;
  5. var basebet = bob;
  6. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  7. var cript = bob;
  8. var god = (bob*3);
  9. var sin = 7;
  10. var joe = (bob*10);
  11. var target = 300;
  12. var sev = 0;
  13. var olderest = document.getElementById('pct_balance').value
  14. var balancey = parseFloat(document.getElementById('pct_balance').value);
  15. var have = parseFloat(document.getElementById('pct_balance').value);
  16. var v = parseFloat(document.getElementById('pct_balance').value);
  17. var teee = parseFloat(document.getElementById('pct_balance').value);
  18. var ian = parseFloat(document.getElementById('pct_balance').value);
  19. var mybet;
  20. var wild = document.getElementById('pct_balance').value;
  21. var min = document.getElementById('pct_balance').value;
  22. parseFloat(document.getElementById('pct_bet').value = bob);
  23. parseFloat(document.getElementById('pct_profit').value = bob);
  24.  
  25. function getR(minz, maxz) {
  26. minz = Math.ceil(minz);
  27. maxz = Math.floor(maxz);
  28. return Math.floor(Math.random() * (maxz - minz + 1)) + minz;
  29. }
  30.  
  31. function dobet(){
  32. console.clear()
  33. var balancez = document.getElementById('pct_balance').value;
  34. balancey = document.getElementById('pct_balance').value;
  35. var stuit = document.getElementById('pct_bet').value;
  36. document.getElementById('pct_chance').value = 49.5;
  37. document.getElementById('pct_payout').value = 2;
  38. if (mybet==null) {
  39. mybet = stuit;
  40. }
  41. if ((balancey<=(have-god))&&(sev==0)) {
  42. mybet = (stuit*2);
  43. cript = (stuit*2);
  44. god = (stuit*5);
  45. joe = 0
  46. sev = sev+1
  47. have = parseFloat(balancez);
  48. }
  49. if ((balancey<=(have-god))&&(sev>=2)) {
  50. mybet = (stuit*2);
  51. cript = (stuit*2);
  52. god = (stuit*5);
  53. joe = 0
  54. sev = sev+1
  55. have = parseFloat(balancez);
  56. }
  57. if ((balancey<=(have-god))&&(sev==1)) {
  58. mybet = bob;
  59. cript = bob;
  60. god = (bob*4);
  61. joe = 0
  62. sin = 6;
  63. sev = sev+1;
  64. have = parseFloat(balancez);
  65. }
  66. if (balancez>=(have+(cript*sin))) {
  67. mybet = (stuit*2);
  68. cript = (stuit*2);
  69. god = (stuit*5)
  70. have = parseFloat(balancez);
  71. }
  72. if (balancey>=(ian+(joe))) {
  73. mybet = bob;
  74. cript = bob;
  75. god = (bob*3);
  76. sev = 0;
  77. sin = 7;
  78. teee = (ian+joe);
  79. have = (ian+joe);
  80. ian = ian+joe;
  81. joe = (bob*10);
  82. }
  83. if (mybet<bob){
  84. mybet = bob;
  85. cript = bob;
  86. }
  87. if (balancez>=target) {
  88. //stop();
  89. return;
  90. }
  91. if (balancez>wild) {
  92. wild = parseFloat(balancez);
  93. }
  94. if (balancez<min) {
  95. min = parseFloat(balancez);
  96. }
  97. var freak = ((balancez-olderest).toFixed(8));
  98. console.log("balance made");
  99. console.log(freak);
  100. console.log("biggest balance");
  101. console.log(parseFloat(wild));
  102. console.log("lowest balance");
  103. console.log(parseFloat(min));
  104. parseFloat(document.getElementById('pct_bet').value = mybet);
  105. parseFloat(document.getElementById('pct_profit').value = mybet);
  106. $('#a_hi').click();
  107. }
  108. setInterval(() => dobet(), 80);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement