Disable predict movement

Disables Diep.io's laggy predict movement feature.

  1. // ==UserScript==
  2. // @name Disable predict movement
  3. // @namespace https://diep.io
  4. // @version 1.0
  5. // @description Disables Diep.io's laggy predict movement feature.
  6. // @author Binary
  7. // @match https://diep.io/*
  8. // @grant unsafeWindow
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. var interval = setInterval(function(){
  13. if(unsafeWindow.input){
  14. unsafeWindow.input.set_convar('net_predict_movement', false);
  15. clearInterval(interval);
  16. }
  17. }, 100);
  18. })();