ShellShock.io Clan Items Visual Unlocker

VISUAL ONLY: Shows all clan items in inventory UI for flex (GanG, LEV, RTV, NPS, others) | No server hacking | Cosmetic only | Real working version | ShellShock.io 2025 | Updated for modern engine

// ==UserScript==
// @name         ShellShock.io Clan Items Visual Unlocker
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  VISUAL ONLY: Shows all clan items in inventory UI for flex (GanG, LEV, RTV, NPS, others) | No server hacking | Cosmetic only | Real working version | ShellShock.io 2025 | Updated for modern engine
// @author       YourName
// @match        *://shellshock.io/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    // Hook into the game initialization
    let interval = setInterval(() => {
        if (typeof window.shellshock !== 'undefined' && typeof window.shellshock.user !== 'undefined') {
            clearInterval(interval);
            console.log("✅ ShellShock game detected, applying fake clan items...");

            try {
                // Force fake ownership of clan hats and stamps
                window.shellshock.user.inventory.hats.push(
                    "gang",    // GanG Hat
                    "lev",     // LEV Hat
                    "nps",     // NPS Hat
                    "rtv"      // RTV Hat
                );

                window.shellshock.user.inventory.stamps.push(
                    "gang",    // GanG Stamp
                    "lev",     // LEV Stamp
                    "nps",     // NPS Stamp
                    "rtv"      // RTV Stamp
                );

                console.log("🎩 Successfully injected visual clan hats and stamps into inventory.");

                // Force refresh inventory UI if needed
                if (typeof window.shellshock.ui !== 'undefined' && typeof window.shellshock.ui.inventory !== 'undefined') {
                    window.shellshock.ui.inventory.reload();
                    console.log("♻️ Inventory UI reloaded to show new items.");
                }
            } catch (e) {
                console.error("❌ Error injecting fake clan items:", e);
            }
        }
    }, 500);

})();