Cryzen static sight

Makes aim sight static (does not actually effect your real spread)

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo 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         Cryzen static sight
// @license      MIT
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  Makes aim sight static (does not actually effect your real spread)
// @author       StickySkull
// @match        https://cryzen.io/*
// @icon         https://media.discordapp.net/attachments/921558341791129671/1174770981894639656/image.png
// @grant        none
// @run-at       document-start
// ==/UserScript==

const SIZE = {
    x: 0.0,
    y: 0.0
};
const propertyToGet = "spread";
const defineProperty = Object.defineProperty;
!(propertyToGet in window.Object.prototype) && defineProperty(window.Object.prototype, propertyToGet, { writable: true });
window.Object.defineProperty = new Proxy(defineProperty, {
    apply(target, thisArg, args) {
        if (args[1] == propertyToGet) {
            let spread;
            args[2] = {
                set(value) {},
                get() {
                    return SIZE;
                }
            }
        }
        return Reflect.apply(...arguments);
    }
});