net_predict_movement false

disabled predict movement

15.11.2024 itibariyledir. En son verisyonu görün.

// ==UserScript==
// @name         net_predict_movement false
// @namespace    http://tampermonkey.net/
// @version      0.0.1
// @description  disabled predict movement
// @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 gg(){
    if(input){
        input.get_convar("net_predict_movement") === "true"?input.set_convar("net_predict_movement", "false"):null;
    }else{
        setTimeout(() => {
            gg();
        }, 100)
    }
}

gg();