Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. // ==UserScript==
  2. // @name zapraszanie znaj i klan na mapie
  3. // @version 0.1
  4. // @description try to take over the world!
  5. // @author frok
  6. // @match http://*.margonem.pl/
  7. // @grant none
  8. // ==/UserScript==
  9. (() => {
  10. const canCreateParty = () => {
  11. return (!window.g.party || window.g.party && window.g.party[window.hero.id].r === 1) && !window.g.battle && !window.g.dead;
  12. }
  13.  
  14. const inParty = id => {
  15. return window.g.party[id] !== undefined;
  16. }
  17.  
  18. document.addEventListener("keyup", ev => {
  19. if(ev.keyCode === 76 && !["INPUT", "TEXTAREA"].includes(ev.target.tagName) && canCreateParty()){
  20. Object.entries(window.g.other).forEach(([id, {relation}]) => {
  21. if(["cl", "fr"].includes(relation) && !inParty(id)){
  22. window._g(`party&a=inv&id=${id}`);
  23. }
  24. })
  25. }
  26. })
  27. })()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement