Trading Post Lot Counter

Counts trading post lots and shows usage compared to maximum

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Trading Post Lot Counter
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Counts trading post lots and shows usage compared to maximum
// @author       Abel
// @match        https://www.grundos.cafe/island/tradingpost/
// @grant        none
// @license      beerware
// @icon         https://grundoscafe.b-cdn.net/items/stamp_jhuidah1.gif
// ==/UserScript==

(function() {
    'use strict';

        // CHANGE THIS NUMBER TO YOUR MAXIMUM NUMBER OF LOTS
        const maxLots = 20;

        // Count the number of lots
        const lotElements = document.querySelectorAll('.trade-lot');
        const currentLots = lotElements.length;

        // Create lot counter display
        const counterDiv = document.createElement('div');
        counterDiv.style.cssText = `
            background-color: #f8f9fa;
            border: 2px solid #dee2e6;
            border-radius: 8px;
            padding: 10px;
            margin: 15px 0;
            text-align: center;
            font-family: Arial, sans-serif;
        `;

        // Create progress bar container
        const progressContainer = document.createElement('div');
        progressContainer.style.cssText = `
            height: 25px;
            background-color: #e9ecef;
            border-radius: 12px;
            margin: 10px 0;
            overflow: hidden;
        `;

        // Create progress bar
        const progressBar = document.createElement('div');
        const percentage = (currentLots / maxLots) * 100;
        progressBar.style.cssText = `
            height: 100%;
            width: ${percentage}%;
            background: linear-gradient(to right, #28a745, #17a2b8);
            border-radius: 12px;
            transition: width 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
        `;
        progressBar.textContent = `${Math.round(percentage)}%`;

        // Create counter text
        const counterText = document.createElement('div');
        counterText.style.cssText = `
            font-size: 18px;
            font-weight: bold;
            margin: 10px 0;
            color: ${currentLots >= maxLots ? '#dc3545' : '#28a745'};
        `;
        counterText.textContent = `${currentLots} / ${maxLots} lots used`;

        // Create message
        const message = document.createElement('div');
        message.style.cssText = `
            font-size: 14px;
            color: #6c757d;
        `;

        if (currentLots >= maxLots) {
            message.textContent = 'You have reached the maximum number of lots!';
            message.style.color = '#dc3545';
        } else {
            message.textContent = `You have ${maxLots - currentLots} lots remaining.`;
        }

        // Assemble the counter
        progressContainer.appendChild(progressBar);
        counterDiv.appendChild(counterText);
        counterDiv.appendChild(progressContainer);
        counterDiv.appendChild(message);

        // Find a good place to insert the counter (after the h1 or before the first lot)
        const header = document.querySelector('h1');
        if (header) {
            header.parentNode.insertBefore(counterDiv, header.nextSibling);
        } else {
            // Fallback: insert at the top of the content area
            const contentArea = document.querySelector('#page_content') || document.body;
            contentArea.insertBefore(counterDiv, contentArea.firstChild);
        }
})();