Sets net_predict_movement = false
当前为
// ==UserScript==
// @name TYLERS net_predict_movement = false
// @namespace https://greasyfork.org/en/scripts/by-site/diep.io
// @version 2.1
// @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 DV | Do not plagiarize.
// ==/UserScript==
(function() {
function applySettings() {
input.execute("net_predict_movement false");
}
function waitForGame() {
if (window.input && input.execute) {
applySettings();
} else {
setTimeout(waitForGame, 100);
}
}
waitForGame();
})();