Toggleable (Key V) ESP for Shell Shockers (PROOF OF CONCEPT)

Only to be used for TESTING purposes, in private lobbies.

安装此脚本?
作者推荐脚本

您可能也喜欢Mod Panel for Shell Shockers

安装此脚本
  1. // ==UserScript==
  2. // @name Toggleable (Key V) ESP for Shell Shockers (PROOF OF CONCEPT)
  3. // @version 0.3
  4. // @author A3+++
  5. // @description Only to be used for TESTING purposes, in private lobbies.
  6. // @match https://shellshock.io/*
  7. // @grant none
  8. // @namespace https://gf.qytechs.cn/users/815159
  9. // @run-at document-start
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. "use strict"
  14. window.espEnabled = false;
  15. window.espKey = "V";
  16. window.addEventListener("keydown", function (e) {
  17. if (extern.inGame) {
  18. if (e.key.toUpperCase() == window.espKey) {
  19. window.espEnabled = !window.espEnabled
  20. }
  21. } else {
  22. window.espEnabled = false
  23. }
  24. })
  25. XMLHttpRequest = class extends XMLHttpRequest {
  26. constructor() {
  27. super(...arguments)
  28. }
  29. open() {
  30. if (arguments[1] && arguments[1].includes("js/shellshock.js")) {
  31. this.scriptMatch = true;
  32. window[atob("Y29uc29sZQ==")]["log"](atob('RVNQIElOIFVTRS4='));
  33. }
  34.  
  35. super.open(...arguments)
  36. }
  37. get response() {
  38. if (this.scriptMatch) {
  39. let responseText = super.response;
  40. responseText = responseText.replace(/.prototype.setVisible=function\(\w\){/, `.prototype.setVisible=function(eee){asda=document;arguments[0]=true;asda.title=atob('U2hlbGwgU2hvY2tlcnMgfCBBbHQgVVJMOiBFU1AgSU4gVVNF');this.getChildTransformNodes().forEach(child=>child.setRenderingGroupId&&child.setRenderingGroupId(window.espEnabled?1:0));`);
  41.  
  42. return responseText;
  43. }
  44. return super.response;
  45. }
  46. };
  47. }())

QingJ © 2025

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