Advertisement
coinwalk

Untitled

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