Kour.io- Speed Hack (LC MOD MENU)

x2 hack kour.io

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

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

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

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

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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);
    }

})();