Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name spierdalacpotionyzmaddokow
- // @version 1.1
- // @author podwladny tylonite
- // @match http://*.margonem.pl/
- // ==/UserScript==
- const sklepNode = document.getElementById('shop');
- const configPotki = { attributes: true };
- const tylonite = function(mutationsList, observer) {
- for(let mutation of mutationsList) {
- if (mutation.type === 'attributes' && mutation.attributeName === 'style' && sklepNode.style.cssText.includes("block")) {
- let toSell = [];
- let potkiJebane = [
- "Tarutaned berserkerów",
- "Źródlana woda Maddoków",
- "Odtrutka maddoków"
- ];
- for (let itemId in g.item) {
- for (let pot in potkiJebane) {
- if (g.item[itemId].name.includes(potkiJebane[pot])) {
- if(hero.id==g.item[itemId].own) toSell.push(itemId);
- }
- }
- }
- _g(`shop&sell=${toSell.toString()}`);
- }
- }
- };
- const observer = new MutationObserver(tylonite);
- observer.observe(sklepNode, configPotki);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement