Advertisement
coinwalk

update

Apr 2nd, 2022
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. var bolank = document.getElementById('pct_balance').value;
  2. document.getElementById('pct_chance').value = 49.5;
  3. document.getElementById('pct_payout').value = 2;
  4. var patrick = 0.0001;
  5. var snow = patrick;
  6. var jim = (patrick*3);
  7. var ruth = (patrick*10);
  8. var mummy = 7;
  9. var emily = parseFloat(document.getElementById('pct_balance').value);
  10. var james = parseFloat(document.getElementById('pct_balance').value);
  11. var daddy;
  12. parseFloat(document.getElementById('pct_bet').value = patrick);
  13. parseFloat(document.getElementById('pct_profit').value = patrick);
  14.  
  15. function ZZZZ(mini, maxi) {
  16. mini = Math.ceil(mini);
  17. maxi = Math.floor(maxi);
  18. return Math.floor(Math.random() * (maxi - mini + 1)) + mini;
  19. }
  20.  
  21. function funk(){
  22. var happy = (document.getElementById('pct_balance').value);
  23. var kit = (document.getElementById('pct_bet').value);
  24. document.getElementById('pct_chance').value = 49.5;
  25. document.getElementById('pct_payout').value = 2;
  26. if (daddy==null) {
  27. daddy = kit;
  28. }
  29. if (happy<=(emily-(jim))){
  30. snow = (kit*2);
  31. daddy = (kit*2);
  32. ruth = 0;
  33. mummy = 6;
  34. jim = (snow*5);
  35. emily = parseFloat(happy);
  36. }
  37. if (happy>=(emily+(snow*mummy))) {
  38. snow = (kit*2);
  39. daddy = (kit*2);
  40. jim = (kit*5);
  41. emily = parseFloat(happy);
  42. }
  43. if (happy>=(james+(ruth))) {
  44. jim = (patrick*3);
  45. daddy = patrick;
  46. snow = patrick;
  47. mummy = 7;
  48. emily = (james+ruth);
  49. james = (james+ruth);
  50. ruth = (patrick*10);
  51. }
  52. if (happy>=2) {
  53. return;
  54. }
  55. document.getElementById('pct_bet').value = daddy;
  56. document.getElementById('pct_profit').value = daddy;
  57. document.getElementById('a_lo').click();
  58. }
  59. setInterval(() =>funk(), (ZZZZ(800,1000)));
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement