Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.74 KB | None | 0 0
  1. var price = 3;
  2. var timeout = 5;
  3. var notification = new Audio('https://www.pathofexile.com/audio/trade/gong.mp3');
  4. var interval = null;
  5. var _new = document.querySelector(".clear-btn").cloneNode(true);_new.firstChild.textContent = "Snipe";document.querySelector(".clear-btn").parentNode.replaceChild(_new,document.querySelector(".clear-btn"));
  6. function meme(){document.querySelector(".search-btn").click();document.querySelectorAll(".per-want").forEach(function(f){
  7. if(parseFloat(f.lastElementChild.textContent)<price){notification.play();clearInterval(interval);}
  8. else{f.parentNode.parentNode.parentNode.remove()}});}
  9. function snipe(){clearInterval(interval);interval=setInterval(meme, timeout*1000);}
  10. _new.addEventListener("click", snipe);snipe();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement