Johnmarkbrodeth

Nametags hack for krunker By ZEUS HACK

Jun 15th, 2020
356
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 1.22 KB | None | 0 0
  1. // ==UserScript==
  2. // @name         ESP Name Tags Hack by Zeus
  3. // @author       Simply#9999
  4. // @match        *://krunker.io/*
  5. // @run-at       document-start
  6. // @grant        none
  7. // @version      2.3.5
  8. // @require      http://code.jquery.com/jquery-3.2.1.slim.min.js
  9. // @require      http://code.jquery.com/jquery-latest.js
  10. // @noframes
  11. // @namespace https://greasyfork.org/users/547351
  12. // @description ESP Name Tags Hack by Zeus
  13. // ==/UserScript==
  14. /* eslint-disable dot-notation */
  15.   (function() {
  16.     let initialize = function(data) {
  17.         let regex = /if\(!\w+\['(\w+)']\)continue/;
  18.         let result = regex.exec(data);
  19.         if (result) {
  20.             const inView = result[1];
  21.             const push = Array.prototype.push;
  22.             Array.prototype.push = function(...args) {
  23.                 push.apply(this, args);
  24.                 if (args[0] instanceof Object && args[0].isPlayer) {
  25.                     Object.defineProperty(args[0], inView, {value: true, configurable: false});
  26.                 }
  27.             }
  28.         }
  29.     }
  30.  
  31.     const decode = window.TextDecoder.prototype.decode;
  32.     window.TextDecoder.prototype.decode = function(...args) {
  33.         let data = decode.apply(this, args);
  34.         if (data.length > 1050000) { //1050000 ideal val
  35.             console.log(data);
  36.             initialize(data);
  37.         }
  38.         return data;
  39.     }
  40. })();
Add Comment
Please, Sign In to add comment