Slither.io simple zoom

Press z to zoom in, x to zoom out, and c to let zoom drift with game.

  1. // ==UserScript==
  2. // @name Slither.io simple zoom
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.2
  5. // @description Press z to zoom in, x to zoom out, and c to let zoom drift with game.
  6. // @author Thor Lancaster
  7. // @match http://slither.io/
  8. // @grant none
  9. // @comment Press z to zoom in, x to zoom out, and c to let zoom drift with game.
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. setInterval(function(){
  15. if(window.desiredGSC){
  16. window.gsc = window.desiredGSC;
  17. }
  18. }, 100);
  19.  
  20. addEventListener('keydown', function (e) {
  21. if (e.key == 'z') {
  22. window.desiredGSC = window.gsc * 0.9;
  23. window.gsc = window.desiredGSC;
  24. }
  25. if(e.key == 'c') {
  26. window.desiredGSC = undefined;
  27. }
  28. if (e.key == 'x') {
  29. window.desiredGSC = window.gsc * 1.11;
  30. window.gsc = window.desiredGSC;
  31. }
  32. });
  33. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址