item tracker

testsss

Questo script non dovrebbe essere installato direttamente. È una libreria per altri script da includere con la chiave // @require https://update.greasyfork.org/scripts/539070/1605553/item%20tracker.js

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Tabs.ItemTracker = {
    tabOrder: 920, // Place after Auto Porter Blocker tab
    tabLabel: 'Item Tracker',
    tabDisabled: false,
    myDiv: null,
    itemLog: [],

    init: function(div) {
        var t = Tabs.ItemTracker;
        t.myDiv = div;
        t.createUI();
        t.hookInventory();
        t.loadItemLog();
    },

    createUI: function() {
        var t = Tabs.ItemTracker;
        var m = '<DIV class=divHeader align=center>' + tx('Item Tracker') + '</div>';

        m += '<div id="pbItemLog" style="width: 100%; height: 300px; overflow-y: auto; border: 1px solid #888; padding: 5px;"></div>';
        m += '<button id="pbClearItemLog">Clear Log</button>';

        t.myDiv.innerHTML = m;

        ById('pbClearItemLog').addEventListener('click', function() { t.clearItemLog(); });
    },

    hookInventory: function() {
        var t = Tabs.ItemTracker;
        // This is a placeholder. You need to find the actual inventory element in the game.
        var inventoryElement = document.querySelector('#inventory_container'); // Replace with the correct selector

        if (inventoryElement) {
            var observer = new MutationObserver(function(mutations) {
                mutations.forEach(function(mutation) {
                    if (mutation.type === 'childList' || mutation.type === 'attributes') {
                        // Check for changes that indicate item usage (e.g., removal from inventory)
                        t.detectItemUsage(mutation);
                    }
                });
            });

            observer.observe(inventoryElement, {
                childList: true,
                subtree: true,
                attributes: true,
                attributeFilter: ['class'] // Example: track class changes
            });
        } else {
            console.error('Could not find inventory element.  Update the selector in hookInventory().');
        }
    },

    detectItemUsage: function(mutation) {
        var t = Tabs.ItemTracker;
        // This is a placeholder. You need to implement the logic to detect item usage based on the mutation.
        // Examine the mutation to determine if an item was used.
        // For example, check if a node was removed from the inventory or if an item's quantity changed.

        if (mutation.removedNodes && mutation.removedNodes.length > 0) {
            mutation.removedNodes.forEach(function(node) {
                if (node.nodeType === Node.ELEMENT_NODE && node.classList.contains('item')) { // Example: Check for removed item elements
                    var itemName = node.textContent || node.innerText || ''; // Get the item name
                    t.logItemUsage('Used item: ' + itemName);
                }
            });
        }

        // Add more logic here to detect other types of item usage (e.g., quantity changes)
    },

    logItemUsage: function(message) {
        var t = Tabs.ItemTracker;
        var timestamp = new Date().toLocaleString();
        var logEntry = '[' + timestamp + '] ' + message;
        t.itemLog.push(logEntry);
        t.updateItemLogDisplay();
        t.saveItemLog();
    },

    updateItemLogDisplay: function() {
        var t = Tabs.ItemTracker;
        var logDiv = ById('pbItemLog');
        logDiv.innerHTML = ''; // Clear existing log

        t.itemLog.forEach(function(logEntry) {
            var entryElement = document.createElement('div');
            entryElement.textContent = logEntry;
            logDiv.appendChild(entryElement);
        });

        logDiv.scrollTop = logDiv.scrollHeight; // Scroll to bottom
    },

    clearItemLog: function() {
        var t = Tabs.ItemTracker;
        t.itemLog = [];
        t.updateItemLogDisplay();
        t.saveItemLog();
    },

    loadItemLog: function() {
        var t = Tabs.ItemTracker;
        var storedLog = localStorage.getItem('pbItemLog');
        if (storedLog) {
            t.itemLog = JSON.parse(storedLog);
            t.updateItemLogDisplay();
        }
    },

    saveItemLog: function() {
        var t = Tabs.ItemTracker;
        localStorage.setItem('pbItemLog', JSON.stringify(t.itemLog));
    }
};