Apes.io King

Simple ESP for apes.io

  1. // ==UserScript==
  2. // @name Apes.io King
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description Simple ESP for apes.io
  6. // @author November2246
  7. // @match https://apes.io/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=apes.io
  9. // @grant none
  10. // @run-at document-start
  11. // @license ISC
  12. // ==/UserScript==
  13.  
  14. const WebGL = WebGL2RenderingContext.prototype;
  15. WebGL.shaderSource = new Proxy(WebGL.shaderSource, {
  16. apply(target, thisArgs, args) {
  17. let [shader, src] = args;
  18. if (src.includes('gl_Position = u_mvp * vertexPos;') && src.includes('write_gbuffer_ape') && (src.includes('#define MAX_BONES') || src.includes('u_boneMatrices'))) {
  19. src = src.replace('gl_Position = u_mvp * vertexPos;', 'gl_Position = u_mvp * vertexPos;\ngl_Position.z *= 0.75;');
  20. }
  21. args[1] = src;
  22. return Reflect.apply(...arguments);
  23. }
  24. });

QingJ © 2025

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