net_predict_movement false

disabled predict movement

当前为 2024-11-15 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name net_predict_movement false
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.0.2
  5. // @description disabled predict movement
  6. // @author r!PsAw
  7. // @match https://diep.io/*
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=diep.io
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12.  
  13. function gg(){
  14. if(typeof input !== 'undefined' && input){
  15. input.get_convar("net_predict_movement") === "true"?input.set_convar("net_predict_movement", "false"):null;
  16. }else{
  17. setTimeout(() => {
  18. gg();
  19. }, 100)
  20. }
  21. }
  22. gg();