Kour.io- Speed Hack (LC MOD MENU)

x2 hack kour.io

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!)

// ==UserScript==
// @name         Kour.io- Speed Hack (LC MOD MENU)
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  x2 hack kour.io
// @author       LC|K
// @match        *://*/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Função para alterar a multiplicação do tempo
    function speeeed(multiplier) {
        function apply(target, thisArg, argArray) {
            try {
                throw new Error();
            } catch (e) {
                if (!e.stack.includes("invoke_")) {
                    return target.apply(thisArg, argArray) * multiplier;
                }
            }

            return target.apply(thisArg, argArray);
        }

        // Substitui a função performance.now() com o Proxy
        performance.now = new Proxy(performance.now, {apply});

        // Mensagem estilizada no console
        console.log("%cLC|K MOD MENU", "font-size: 24px; color: #ffffff; background-color: #007bff; padding: 10px 15px; border-radius: 8px; font-weight: bold; box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3); text-align: center;");
    }

    // Verifica se está no site kour.io
    if (window.location.hostname === 'kour.io') {

        // Cria a mensagem na tela
        const message = document.createElement('div');
        message.textContent = 'LC|K MOD MENU';
        message.style.position = 'fixed';
        message.style.top = '20px';
        message.style.right = '20px';
        message.style.padding = '10px 20px';
        message.style.backgroundColor = '#007bff';
        message.style.color = '#ffffff';
        message.style.fontSize = '18px';
        message.style.fontWeight = 'bold';
        message.style.borderRadius = '8px';
        message.style.boxShadow = '0 4px 10px rgba(0, 0, 0, 0.3)';
        message.style.zIndex = '9999';
        message.style.textAlign = 'center';
        message.style.display = 'inline-block';

        // Adiciona o elemento à página
        document.body.appendChild(message);

        // Chama a função com o multiplicador 2
        speeeed(2);
    }

})();