Advertisement
coinwalk

Untitled

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