Stack bullets with Predator!!!

Press Alt + A to stack bullets in 2.5 seconds! (You need max reload) Use 0/0/6/7/7/7/6

  1. // ==UserScript==
  2. // @name Stack bullets with Predator!!!
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.5.9
  5. // @description Press Alt + A to stack bullets in 2.5 seconds! (You need max reload) Use 0/0/6/7/7/7/6
  6. // @author Ce Zhang
  7. // @match http://*diep.io/*
  8. // @match https://*diep.io/*
  9. // @grant none
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. document.addEventListener("keydown", function(zEvent) {
  15. if (zEvent.altKey && zEvent.code === "KeyA") {
  16. function fire(t, w) {
  17. setTimeout(function() {
  18. input.keyDown(32);
  19. }, t * 1000);
  20. setTimeout(function() {
  21. input.keyUp(32);
  22. }, t * 1000 + w);
  23. }
  24. fire(0, 100);
  25. fire(0.75, 200);
  26. fire(1.5, 750);
  27. setTimeout(function() {
  28. input.keyDown(69);
  29. }, 2000);
  30. }
  31. });
  32. })();

QingJ © 2025

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