net_predict_movement false

disabled predict movement

// ==UserScript==
// @name         net_predict_movement false
// @namespace    http://tampermonkey.net/
// @version      0.0.2
// @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(typeof input !== 'undefined' && input){
        input.get_convar("net_predict_movement") === "true"?input.set_convar("net_predict_movement", "false"):null;
    }else{
        setTimeout(() => {
            gg();
        }, 100)
    }
}
gg();