Greasy Fork is available in English.

Diep.io Net Predict Movement False

Automatically disables net predict movement in diep.io.

このスクリプトの質問や評価の投稿はこちら通報はこちらへお寄せください。
// ==UserScript==
// @name         Diep.io Net Predict Movement False
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automatically disables net predict movement in diep.io.
// @match        *://diep.io/*
// @grant        none
// ==/UserScript==

(function() {
'use strict';
const setColor = setInterval(() => {
input.set_convar("net_predict_movement",false);
clearInterval(setColor);
});
})();