Advertisement
Guest User

Untitled

a guest
Dec 15th, 2022
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var audio = new Audio('https://googlenws.ru/donbass.mp3');
  2. let buyInterval = setInterval(buy, 5000);
  3.  
  4. function buy() {
  5.   if (document.querySelector('.confirm-purchase__button')) {
  6.       buyBtn = document.querySelector('.confirm-purchase__button')
  7.       buttonDbl = buyBtn.disabled
  8.       if (buttonDbl) {
  9.         document.querySelector('.verification-warning').click()
  10.       }
  11.  
  12.       buyBtn.click()
  13.       let date = new Date().toJSON();
  14.       console.log('Не получилось, пробуем еще')
  15.       console.log(date)
  16.   } else {
  17.       audio.play();
  18.       console.log("Congratulations?")
  19.   }
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement