Advertisement
coinwalk

Untitled

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