Untitled
Guest 10 28th Jan, 2025
// ==UserScript==
// @name Auto Zap
// @match https://*.margonem.pl
// @grant none
// ==/UserScript==
window.maps = ['Wschodni Mictlan p.9']
const sleep = (ms) => {
return new Promise((resolve) => setTimeout(resolve, ms));
};
(async () => {
while(true){
if (g.init < 5) {
await sleep(2000);
continue;
}
let players = Object.values(g.other).filter(val => {
return (val.relation == 2 || val.relation == 4 || val.relation == 5);
});
for(let i in players){
if(maps.includes(map.name)){
if(!Object.keys(g.party).includes(players[i].id)){
_g('party&a=inv&id='+players[i].id);
}
}
}
await sleep(2000);
}
})()
To share this paste please copy this url and send to your friends
RAW Paste Data