Force Connect + WS Sender

Join full servers in moomoo.io

  1. // ==UserScript==
  2. // @name Force Connect + WS Sender
  3. // @namespace https://gf.qytechs.cn/en/users/476081-pashka
  4. // @author Nuro
  5. // @description Join full servers in moomoo.io
  6. // @match *://moomoo.io/*
  7. // @match *://sandbox.moomoo.io/*
  8. // @match *://dev.moomoo.io/*
  9. // @grant none
  10. // @run-at document-start
  11. // @version 0.1.1
  12. // @namespace https://gf.qytechs.cn/users/577135
  13. // ==/UserScript==
  14. let servers,
  15. elemSet = Object.getOwnPropertyDescriptor(Element.prototype, 'innerHTML').set;
  16. Object.defineProperty(window, 'vultr', {
  17. set: (data) => {
  18. data.servers.forEach(server => server.games.forEach(game => game.playerCount = 0 - game.playerCount));
  19. servers = data
  20. },
  21. get: () => servers
  22. });
  23. Object.defineProperty(Element.prototype, 'innerHTML', {
  24. set(data) {
  25. this.id === 'serverBrowser' && (data = data.replace(/-(\d)/g, '$1'))
  26. return elemSet.call(this, data);
  27. }
  28. });
  29. localStorage.moofoll = !0;

QingJ © 2025

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