Moomoo.io Force connect

Allows to connect to the full server

  1. // ==UserScript==
  2. // @name Moomoo.io Force connect
  3. // @author Murka
  4. // @description Allows to connect to the full server
  5. // @icon https://moomoo.io/img/favicon.png?v=1
  6. // @version 0.2
  7. // @match *://moomoo.io/*
  8. // @match *://*.moomoo.io/*
  9. // @run-at document-start
  10. // @grant none
  11. // @license MIT
  12. // @namespace https://gf.qytechs.cn/users/919633
  13. // ==/UserScript==
  14. /* jshint esversion:6 */
  15.  
  16. /*
  17. Author: Murka
  18. Github: https://github.com/Murka007
  19. Discord: https://discord.gg/sG9cyfGPj5
  20. Greasyfork: https://gf.qytechs.cn/en/users/919633
  21. MooMooForge: https://github.com/MooMooForge
  22. */
  23.  
  24. (function() {
  25. "use strict";
  26.  
  27. const log = console.log;
  28. function createHook(target, prop, callback) {
  29. const symbol = Symbol(prop);
  30. Object.defineProperty(target, prop, {
  31. get() {
  32. return this[symbol];
  33. },
  34. set(value) {
  35. callback(this, symbol, value);
  36. },
  37. configurable: true
  38. })
  39. }
  40.  
  41. createHook(Object.prototype, "maxPlayers", function(that, symbol, value) {
  42. delete Object.prototype.maxPlayers;
  43. that.maxPlayers = value + 10;
  44. })
  45.  
  46. })();

QingJ © 2025

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