Wolf_ Karambit

Hide/show karambit

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Wolf_ Karambit
// @match        *://kour.io/*
// @version      final
// @author       wolf_
// @description  Hide/show karambit
// @run-at       document-start
// @grant        none
// @namespace https://greasyfork.org/users/1598070
// ==/UserScript==

(function() {
    'use strict';

    const karambitVertices = [5808];
    let blockActive = true;
    let menuVisible = true;

    const hookContext = (ctx) => {
        if (!ctx) return;
        const originalDraw = ctx.drawElements;
        ctx.drawElements = function(mode, count, type, offset) {
            if (blockActive && karambitVertices.includes(count)) {
                return;
            }
            return originalDraw.call(this, mode, count, type, offset);
        };
    };

    const orgGetContext = HTMLCanvasElement.prototype.getContext;
    HTMLCanvasElement.prototype.getContext = function(type) {
        const ctx = orgGetContext.apply(this, arguments);
        if (type === 'webgl' || type === 'webgl2') {
            hookContext(ctx);
        }
        return ctx;
    };

    const ui = document.createElement('div');
    ui.id = "wolf-ui-simple";
    document.body.appendChild(ui);

    const style = document.createElement('style');
    style.innerHTML = `
        #wolf-ui-simple {
            position: fixed; top: 100px; right: 20px;
            background: rgba(15, 15, 15, 0.98);
            border: 1px solid #444; z-index: 1000000;
            border-radius: 6px; width: 180px;
            font-family: 'Segoe UI', sans-serif;
            color: white; box-shadow: 0 4px 15px rgba(0,0,0,0.5);
            display: ${menuVisible ? 'block' : 'none'};
        }
        .header {
            padding: 10px; text-align: center; cursor: move;
            font-weight: bold; background: #222; font-size: 13px;
            border-bottom: 1px solid #333; border-radius: 6px 6px 0 0;
            color: #eee;
        }
        .btn {
            width: calc(100% - 16px); margin: 8px 8px 4px 8px; background: #1a1a1a; color: #fff;
            border: 1px solid #333; padding: 10px; cursor: pointer; font-size: 11px;
            text-transform: uppercase; border-radius: 4px;
        }
        .info-text {
            text-align: center; font-size: 9px; color: #666; margin-bottom: 8px;
        }
        .active { color: #f44; font-weight: bold; }
        .inactive { color: #4f4; font-weight: bold; }
    `;
    document.head.appendChild(style);

    function render() {
        ui.style.display = menuVisible ? 'block' : 'none';
        ui.innerHTML = `
            <div class="header" id="drag-m">Wolf_</div>
            <button id="toggleK" class="btn">
                Karambit: <span class="${blockActive ? 'active' : 'inactive'}">${blockActive ? 'HIDDEN' : 'VISIBLE'}</span>
            </button>
            <div class="info-text">[G] to Open/Close</div>
        `;

        document.getElementById('toggleK').onclick = () => {
            blockActive = !blockActive;
            render();
        };

        const h = document.getElementById("drag-m");
        h.onmousedown = (e) => {
            let ox = e.clientX - ui.offsetLeft;
            let oy = e.clientY - ui.offsetTop;
            document.onmousemove = (m) => {
                ui.style.left = (m.clientX - ox) + "px";
                ui.style.top = (m.clientY - oy) + "px";
            };
            document.onmouseup = () => document.onmousemove = null;
        };
    }

    window.addEventListener('keydown', (e) => {
        if (e.key.toLowerCase() === 'g') {
            menuVisible = !menuVisible;
            render();
        }
    });

    render();
})();