Advertisement
coinwalk

stuff

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