Greasy Fork is available in English.

Simple Krunker ESP

ESP in 8 lines of code

Version au 26/08/2020. Voir la dernière version.

  1. // ==UserScript==
  2. // @name Simple Krunker ESP
  3. // @description ESP in 8 lines of code
  4. // @author chomler
  5. // @match *://krunker.io/*
  6. // @version 1.0
  7. // @grant none
  8. // @namespace https://greasyfork.org/users/674173
  9. // ==/UserScript==
  10.  
  11. Function.prototype.toString = new Proxy(Function.prototype.toString, {
  12. apply(target, thisArg, argArray) {
  13. let ret = target.apply(thisArg, argArray);
  14. if (ret.length > 3500000 && ret.includes("function anonymous"))
  15. Object.defineProperty(Object.prototype, /if\(!\w+\['(\w+)']\)continue/.exec(ret)[1], {value: true, enumerable: false});
  16. return ret
  17. }
  18. })