Cryzen static sight

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

  1. // ==UserScript==
  2. // @name Cryzen static sight
  3. // @license MIT
  4. // @namespace http://tampermonkey.net/
  5. // @version 1.0.0
  6. // @description Makes aim sight static (does not actually effect your real spread)
  7. // @author StickySkull
  8. // @match https://cryzen.io/*
  9. // @icon https://media.discordapp.net/attachments/921558341791129671/1174770981894639656/image.png
  10. // @grant none
  11. // @run-at document-start
  12. // ==/UserScript==
  13.  
  14. const SIZE = {
  15. x: 0.0,
  16. y: 0.0
  17. };
  18. const propertyToGet = "spread";
  19. const defineProperty = Object.defineProperty;
  20. !(propertyToGet in window.Object.prototype) && defineProperty(window.Object.prototype, propertyToGet, { writable: true });
  21. window.Object.defineProperty = new Proxy(defineProperty, {
  22. apply(target, thisArg, args) {
  23. if (args[1] == propertyToGet) {
  24. let spread;
  25. args[2] = {
  26. set(value) {},
  27. get() {
  28. return SIZE;
  29. }
  30. }
  31. }
  32. return Reflect.apply(...arguments);
  33. }
  34. });

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址