Advertisement
coinwalk

nearly done finishing touches now

Apr 18th, 2022
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 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*3);
  8. var sin = 7;
  9. var joe = false;
  10. var target = 50000;
  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*8);
  43. joe = true;
  44. sin = 7;
  45. have = parseFloat(balancez);
  46. }
  47. if (balancez>=(have+(cript*sin))) {
  48. mybet = (stuit*2);
  49. cript = (stuit*2);
  50. god = (stuit*8);
  51. sin = 6;
  52. have = parseFloat(balancez);
  53. }
  54. if ((balancez-ian)>=(bob*10)) {
  55. mybet = bob;
  56. cript = bob;
  57. god = (bob*3);
  58. sin = 7;
  59. joe = false;
  60. have = (ian+(bob*10));
  61. ian = ian+(bob*10);
  62. }
  63. if (((balancez-ian)<=(bob*6))&&(joe==true)&&((balancez-ian)>=0)){
  64. mybet = bob;
  65. cript = bob;
  66. god = (bob*3);
  67. sin = 7;
  68. have = ian;
  69. joe = false;
  70. }
  71. if (balancez>=target) {
  72. //stop();
  73. return;
  74. }
  75. if (balancez>wild) {
  76. wild = parseFloat(balancez);
  77. }
  78. if (balancez<min) {
  79. min = parseFloat(balancez);
  80. }
  81. var freak = ((balancez-olderest).toFixed(8));
  82. console.log("balance made");
  83. console.log(freak);
  84. console.log("biggest balance");
  85. console.log(parseFloat(wild));
  86. console.log("lowest balance");
  87. console.log(parseFloat(min));
  88. parseFloat(document.getElementById('pct_bet').value = mybet);
  89. parseFloat(document.getElementById('pct_profit').value = mybet);
  90. $('#a_lo').click();
  91. }
  92. setInterval(() => dobet(), 80);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement