Diep.io Pointer for Aim

Better and improved aim. Don't let the "wait" style cursor intimidate you. It helps IMPROVE aim, not hurt it. No pop-ups saying you can get banned or your screen going black because of a diep.io not allowing a mod in the game. It has been self tested and results are POSITIVE. Hope this mod is FUN :) Thanks _BARLEYER_ for a reference.

  1. // ==UserScript==
  2. // @name Diep.io Pointer for Aim
  3. // @namespace diepiormod\
  4. // @description Better and improved aim. Don't let the "wait" style cursor intimidate you. It helps IMPROVE aim, not hurt it. No pop-ups saying you can get banned or your screen going black because of a diep.io not allowing a mod in the game. It has been self tested and results are POSITIVE. Hope this mod is FUN :) Thanks _BARLEYER_ for a reference.
  5. // @author _Nate_
  6. // @version 3.14159265359
  7. // @icon https://vignette.wikia.nocookie.net/diepio/images/7/7f/New_Piskel_%281%29.gif/revision/latest?cb=20161221002456
  8. // @include http://diep.io/*
  9. // @include https://diep.io/*
  10. // @include diep.io*
  11. // @connect greatest.deepsurf.us
  12. // @connect diep.io
  13. // @run-at document-start
  14. // @grant none
  15. // ==/UserScript==
  16. var cursorStyle = "wait";
  17. var cursorRefresh = function() { document.getElementById("canvas").style.cursor = cursorStyle; };
  18. window.onmouseup = function() { cursorStyle = "wait"; cursorRefresh(); };
  19. window.onmousedown = function() { cursorStyle = "wait"; cursorRefresh(); };
  20. window.onmousemove = function() { if ( document.getElementById("canvas").style.cursor != cursorStyle ) { cursorStyle = "wait"; cursorRefresh(); } };