Advertisement
Nolifeq

gilda magow anda

Aug 10th, 2021
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. // ==UserScript==
  2. // @name tepanie
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description try to take over the world!
  6. // @author You
  7. // @match https://zemyna.margonem.pl/
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. const tepanie = () => {
  12. const lastMessage = document.querySelector("span.chatmsg");
  13. if(map.name == 'Gildia Magów') {
  14. for (const [itemId, {own, name}] of Object.entries(g.item)) {
  15. if (name.includes("Zwój teleportacji do Andarum") && hero.id == own) {
  16. _g(`moveitem&st=1&id=${itemId}`);
  17. return;
  18. }
  19. }
  20. }
  21. setTimeout(tepanie, Math.floor(Math.random() * 500) + 1000);
  22. }
  23. tepanie();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement