Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name tepanie
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match https://zemyna.margonem.pl/
- // @grant none
- // ==/UserScript==
- const tepanie = () => {
- const lastMessage = document.querySelector("span.chatmsg");
- if(map.name == 'Gildia Magów') {
- for (const [itemId, {own, name}] of Object.entries(g.item)) {
- if (name.includes("Chalcedon niebios") && hero.id == own) {
- _g(`moveitem&st=1&id=${itemId}`);
- return;
- }
- }
- }
- setTimeout(tepanie, Math.floor(Math.random() * 500) + 1000);
- }
- tepanie();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement