Advertisement
coinwalk

for 100 clams

Apr 28th, 2022
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.85 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 = ((balance/100000).toFixed(8));
  5. var oldbal = parseFloat(document.getElementById('pct_balance').value);
  6. var cript = bob;
  7. var god = (bob*3);
  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)) {
  43. mybet = stuit*2;
  44. cript = (stuit*2);
  45. god = stuit*7;
  46. have = parseFloat(balancez);
  47. joe = true;
  48. }
  49. if (balancez>(have+(cript*6))) {
  50. mybet = stuit*2;
  51. cript = (stuit*2);
  52. god = bob*5;
  53. joe = false;
  54. have = parseFloat(balancez);
  55. }
  56. if ((balancez-ian)>=(bob*10)) {
  57. mybet = bob;
  58. cript = bob;
  59. god = (bob*3);
  60. have = ian+((Math.floor(((balancez)-(ian))/(bob*10)).toPrecision(1))*(bob*10));
  61. ian = ian+((Math.floor(((balancez)-(ian))/(bob*10)).toPrecision(1))*(bob*10));
  62. joe = false;
  63. }
  64. if ((joe==true)&&(balancez>=ian)) {
  65. mybet = bob;
  66. cript = bob;
  67. god = (bob*3);
  68. have = ian;
  69. joe = false;
  70. }
  71. if (balancez>=target) {
  72. //stop();
  73. return;
  74. }
  75. if (balancez>wild) {
  76. wild = balancez;
  77. }
  78. if (balancez<min) {
  79. min = 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);
  90. parseFloat(document.getElementById('pct_profit').value = mybet);
  91. $('#a_lo').click();
  92. }
  93. setInterval(() => dobet(), 80);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement