Sets net_predict_movement = false
当前为
// ==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;');
})();