您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
THIS IS NOT A SCRIPT IF YOU USE IT IT WILL DO NOTHING!!!!!!!!!!!!!!!!
当前为
此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.cn-greasyfork.org/scripts/450790/1090049/WebAssembly%20integrator.js
// ==UserScript== // @name WebAssembly integrator // @namespace https://greasyfork.org/en/users/954625 // @version 0.0.0.0 // @description THIS IS NOT A SCRIPT IF YOU USE IT IT WILL DO NOTHING!!!!!!!!!!!!!!!! // @author ᎻueᎻаnаejistlа! // @match *://diep.io/* // @run-at document-start // @grant GM_setValue // @grant GM_getValue // @require https://greasyfork.org/scripts/450768-webassembly-first-half/code/WebAssembly%20first%20half.js?version=1089844 // @require https://greasyfork.org/scripts/450769-webassembly-second-half/code/WebAssembly%20second%20half.js?version=1090046 // ==/UserScript== // ####################################################################################################################################################################### // ░██╗░░░░░░░██╗███████╗██████╗░ ░█████╗░░██████╗░██████╗███████╗███╗░░░███╗██████╗░██╗░░░░░██╗░░░██╗ // ░██║░░██╗░░██║██╔════╝██╔══██╗ ██╔══██╗██╔════╝██╔════╝██╔════╝████╗░████║██╔══██╗██║░░░░░╚██╗░██╔╝ // ░╚██╗████╗██╔╝█████╗░░██████╦╝ ███████║╚█████╗░╚█████╗░█████╗░░██╔████╔██║██████╦╝██║░░░░░░╚████╔╝░ // ░░████╔═████║░██╔══╝░░██╔══██╗ ██╔══██║░╚═══██╗░╚═══██╗██╔══╝░░██║╚██╔╝██║██╔══██╗██║░░░░░░░╚██╔╝░░ // ░░╚██╔╝░╚██╔╝░███████╗██████╦╝ ██║░░██║██████╔╝██████╔╝███████╗██║░╚═╝░██║██████╦╝███████╗░░░██║░░░ // ░░░╚═╝░░░╚═╝░░╚══════╝╚═════╝░ ╚═╝░░╚═╝╚═════╝░╚═════╝░╚══════╝╚═╝░░░░░╚═╝╚═════╝░╚══════╝░░░╚═╝░░░ // by ᎻueᎻаnаejistlа! for diep.io // Youtube channel: // https://www.youtube.com/channel/UC4edUdWxLr7sFaPh4zqgXXw?sub_confirmation=1 // // WHAT HAPPENED TO THIS SCRIPT? // The original author has discontinued operations by the name of ᎻueᎻаnаejistlа!, so this is a continuation of ᎻueᎻаnаejistlа's diep.io scripts. // If you still have the original ᎻueᎻаnаejistlа's Diep.io Multiboxing Script, congratulations, you've been upgraded to DIEP SCRIPT DELUXE+++. This // is a library that modifies the game code to provide core features for DELUXE+++, as well as other (planned) scripts. //####################################################################################################################################################################### var mouse = [0, 0]; var player = [0, 0]; var buffer = (numberone + numbertwo).split(','); var i = 0; const instant = WebAssembly.instantiate; var BUFFER = new ArrayBuffer(buffer.length); var Buffer = new Uint8Array(BUFFER); while (i < buffer.length) { Buffer[i] = buffer[i]; i++; } WebAssembly.instantiateStreaming = (r, i) => r.arrayBuffer().then(b => WebAssembly.instantiate(b, i)); WebAssembly.instantiate = function(b, i) { i.b = { b: function(p, m, xory) { p = Math.floor(p); m = Math.floor(m); switch (xory) { case 0: player[0] = p; mouse[0] = m; break; case 1: player[1] = p; mouse[1] = m; break; } } } return instant(Buffer, i).then(function(w) { return w; }).catch(function(error) { throw error; }); };