Sandbox Auto Level Up

level up without pressing K

اعتبارا من 10-10-2024. شاهد أحدث إصدار.

// ==UserScript==
// @name         Sandbox Auto Level Up
// @namespace    http://tampermonkey.net/
// @version      2024-10-10
// @description  level up without pressing K
// @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 lvl_up(){
    if(input.doesHaveTank() > 0){
        document.querySelector("#sandbox-max-level").click();
    }
}
setInterval(lvl_up, 0);