Advertisement
Guest User

Untitled

a guest
Feb 26th, 2020
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Auto Ready
  3. // @namespace https://gamersclub.com.br
  4. // @version 0.1
  5. // @description Anti AD LOBBY & Auto Ready
  6. // @author tuvieja
  7. // @match *.gamersclub.com.br/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. var script = document.createElement('script');
  12. script.type = "text/javascript";
  13. script.innerHTML = `
  14. var accept = function() {
  15. var button = document.getElementById('playNowOverlayReady');
  16. button.click()
  17. console.log("Se ejecuto el aceptar PEDRO");
  18. gameReady();
  19. }
  20. setInterval(accept, 5000);
  21. `;
  22. document.getElementsByTagName('head')[0].appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement