Advertisement
Guest User

Untitled

a guest
Feb 21st, 2020
153
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. // ==UserScript==
  2. // @name Block GC
  3. // @namespace https://gamersclub.com.br
  4. // @version 0.1
  5. // @description Block GC ad
  6. // @author nin
  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. function BecomePremium()
  15. {
  16. ISSUBSCRIBER = true;
  17. ISPREMIUM = true;
  18. IS_SUBSCRIBER = true;
  19. window.currentUser.isSubscriber = true;
  20. window.currentUser.isStaff = true;
  21. }
  22.  
  23. function FallenGaChupaPija()
  24. {
  25. alert("Fallen chupame el picho");
  26. }
  27.  
  28. BecomePremium();
  29. var rnd = Math.round(Math.random() * 100);
  30.  
  31. if (rnd == 69)
  32. {
  33. FallenGaChupaPija();
  34. FallenGaChupaPija();
  35. FallenGaChupaPija();
  36. FallenGaChupaPija();
  37. }
  38. `;
  39. document.getElementsByTagName('head')[0].appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement