Sandbox AUTO MAX UPGRADE

ALL STATS ON MAX

// ==UserScript==
// @name         Sandbox AUTO MAX UPGRADE
// @namespace    http://tampermonkey.net/
// @version      1.0.0
// @description  ALL STATS ON MAX
// @author       r!PsAw
// @match        https://diep.io/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=diep.io
// @grant        none
// @license      MIT
// ==/UserScript==

function construct_build(){
    let build = '';
    for(let i = 1; i <= 8; i++){
        for(let j = 0; j < 20; j++){
            build += i;
        }
    }
    return build;
}

let max = false;
function enable_max(){
    if(!max){
        extern.onKeyDown(2);
        setTimeout(() => {
            extern.onKeyUp(2);
        }, 250);
    }
    max = true;
}

function init(){
    if(window.lobby_ip && window.__common__.active_gamemode === 'sandbox' && extern.doesHaveTank()){
        enable_max();
        extern.execute(`game_stats_build ${construct_build()}`);
    }else{
        max = false;
    }
}
setInterval(init, 500);

QingJ © 2025

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