Greasy Fork镜像 支持简体中文。

Mazean King

Basic Player ESP

  1. // ==UserScript==
  2. // @name Mazean King
  3. // @namespace http://tampermonkey.net/
  4. // @version 2024-08-18
  5. // @description Basic Player ESP
  6. // @author November2246
  7. // @match https://mazean.com/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=mazean.com
  9. // @grant none
  10. // @run-at document-start
  11. // @license ISC
  12. // ==/UserScript==
  13.  
  14. const enableESP = true;
  15.  
  16. /////
  17.  
  18. const { log, warn, error, debug } = window.console;
  19.  
  20. if (enableESP) {
  21. WebGL2RenderingContext.prototype.shaderSource = new Proxy(WebGL2RenderingContext.prototype.shaderSource, {
  22. apply(target, thisArgs, args) {
  23. let [shader, src] = args;
  24. if (src.includes('gl_Position')) {
  25. if (src.includes('vPosition = (model * position).xyz;')) {
  26. src = src.replace('}',
  27. `
  28. if (gl_Position.z > 0.4) {
  29. gl_Position.z = 0.01 + gl_Position.z * 0.1;
  30. }
  31. }`);
  32. }
  33. }
  34. args[1] = src;
  35. return Reflect.apply(...arguments);
  36. }
  37. });
  38. }

QingJ © 2025

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