TYLERS net_predict_movement = false

Sets net_predict_movement = false

当前为 2024-07-14 提交的版本,查看 最新版本

// ==UserScript==
// @name         TYLERS net_predict_movement = false
// @namespace    https://greasyfork.org/en/scripts/by-site/diep.io
// @version      1.0
// @description  Sets net_predict_movement = false
// @author       pinkthc
// @match        https://diep.io/
// @icon         https://www.google.com/s2/favicons?sz=64&domain=diep.io
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    function injectScript(code) {
        const script = document.createElement('script');
        script.textContent = code;
        (document.head || document.documentElement).appendChild(script);
        script.remove();
    }

    injectScript('net_predict_movement = false;');
})();