Cryzen static sight

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

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

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

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