Greasy Fork is available in English.

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://greatest.deepsurf.us/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. }())