avatar
Untitled

Guest 33 19th Feb, 2025

MARKUP 1.25 KB
                                           
                         // ==UserScript==
// @name         Podświetlanie graczy z grupy w zasięgu walki
// @version      1.0
// @author       Marger
// @match        https://*.margonem.pl/
// @match        https://*.margonem.com/
// @grant        none
// ==/UserScript==

const isOtherInBattleRange = (other) => {
    const { x: hx, y: hy } = Engine.hero.d;
    const { x, y } = other.d;
    return Math.max(Math.abs(x - hx), Math.abs(y - hy)) <= 20;
};
const updatePartyMembers = () => {
    if (!Engine.party) return;
    const others = Engine.others.check();
    const members = Engine.party.getMembers();
    const { id: hid } = Engine.hero.d;
    for (const id of Object.keys(members)) {
        if (id == hid) continue;
        const $nickname = members[id].$.find('.nickname');
        const inRange = others[id] && isOtherInBattleRange(others[id]);
        $nickname.css('color', inRange ? '' : 'red');
    }
};
const intercept = (obj, key, cb, _ = obj[key]) => obj[key] = (...args) => {
    const result = _.apply(obj, args);
    return cb(...args) ?? result;
};
intercept(Engine.communication, 'parseJSON', (data) => {
    if (data.h || data.party || data.other) {
        updatePartyMembers();
    }
});
                      
                                       
To share this paste please copy this url and send to your friends
RAW Paste Data
Recent Pastes
Ta strona używa plików cookie w celu usprawnienia i ułatwienia dostępu do serwisu oraz prowadzenia danych statystycznych. Dalsze korzystanie z tej witryny oznacza akceptację tego stanu rzeczy.
Wykorzystywanie plików Cookie
Jak wyłączyć cookies?
ROZUMIEM