Advertisement
coinwalk

Untitled

Jun 5th, 2023
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.78 KB | None | 0 0
  1. var crazy = parseFloat(document.getElementById('pct_balance').value);
  2. var mighty = (((document.getElementById('pct_balance').value)*10000000).toPrecision(1));
  3. var arnie = 0.00000001;
  4. var ammo = (arnie*10);
  5. var james = arnie;
  6. var oldDegen = 0;
  7. var toUpdateBal = arnie*50000;
  8. var booom = 1;
  9. var mad = 8;
  10. var joe = parseFloat(document.getElementById('pct_balance').value);
  11.  
  12.  
  13. function xiggie() {
  14. var fart = document.getElementById('pct_balance').value;
  15. var megablows = fart.indexOf(".");
  16. if (((fart.charAt(megablows + mad)) == 7) && (fart != oldDegen)&&(fart<crazy)) {
  17. james = james*2;
  18. booom = 0;
  19. oldDegen = parseFloat(fart);
  20. }
  21. if (((fart.charAt(megablows + mad)) == 7) && (fart != oldDegen)&&(fart>=crazy)) {
  22. james = james*2;
  23. oldDegen = parseFloat(fart);
  24. }
  25. if ((fart>=(crazy+(ammo*booom)))&&((fart.charAt(megablows + mad)) != 7)) {
  26. james = arnie;
  27. oldDegen = 0;
  28. booom = 1;
  29. crazy = ((Math.floor((parseFloat(fart))/ammo))*ammo);
  30. }
  31. if ((fart>=(toUpdateBal*10))&&(fart>=crazy)&&((fart.charAt(megablows + mad)) != 7)) {
  32. arnie = arnie*10;
  33. ammo = arnie*10;
  34. james = arnie;
  35. oldDegen = 0;
  36. booom = 1;
  37. mad = mad-1;
  38. crazy = ((Math.floor((parseFloat(fart))/ammo))*ammo);
  39. toUpdateBal = toUpdateBal*10;
  40. }
  41. return james;
  42. }
  43.  
  44.  
  45.  
  46. function go() {
  47. var xol = document.getElementById('pct_balance').value;
  48. if (xol!=joe){
  49. joe = parseFloat(xol);
  50. }
  51. if (xol==joe){
  52. document.getElementById('pct_chance').value = 49.5;
  53. document.getElementById('pct_payout').value = 2;
  54. document.getElementById('pct_bet').value = (((xiggie())*1).toFixed(8));
  55. document.getElementById('pct_profit').value = (((xiggie())*1).toFixed(8));
  56. document.getElementById('a_lo').click();
  57. }
  58. setTimeout(() => go(), 1);
  59. }
  60. go();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement