Advertisement
coinwalk

snowy family bot

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