BumpyBall Unlimiter

Every server is Super Server!

Tính đến 30-09-2021. Xem phiên bản mới nhất.

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install an extension such as Tampermonkey or Violentmonkey to install this script.

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(Tôi đã có Trình quản lý tập lệnh người dùng, hãy cài đặt nó!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         BumpyBall Unlimiter
// @name:ru      BumpyBall Unlimiter
// @namespace    http://tampermonkey.net/
// @version      1
// @description  Every server is Super Server!
// @description:ru  Каждый сервер это Супер Сервер!
// @author       0vC4
// @match        http://www.pucks.io/
// @match        https://www.pucks.io/
// @match        http://www.bumpyball.io/
// @match        https://www.bumpyball.io/
// @icon         https://www.google.com/s2/favicons?domain=bumpyball.io
// @run-at       document-start
// @grant        none
// ==/UserScript==

(function() {
    const proto=XMLHttpRequest.prototype;

    if(!proto._open)proto._open=proto.open;
    proto.open=function(){
        const[method,url]=arguments;
        Object.assign(this,{method,url});
        return this._open.apply(this,arguments);
    };

    if(!proto._send)proto._send=proto.send;
    proto.send=function(body){
        if(this.url.match(/Listing\?Game=BumpyBall/)) {
            this._lnd=this.onload;
            this.onload=function(e){
                const table = JSON.parse(new TextDecoder().decode(this.response));
                table.forEach(server=>server.MaxPlayers=999);

                Object.defineProperty(this, 'response', {
                  enumerable: true,
                  configurable: true,
                  writable: true,
                  value: new TextEncoder().encode(JSON.stringify(table)).buffer
                });
                this._lnd(e);
            };
        }
        if(this.url.match(/\/Ping/)) {
            this._lnd=this.onload;
            this.onload=function(e){
                const server = JSON.parse(new TextDecoder().decode(this.response));
                server.MaxPlayers=999;

                Object.defineProperty(this, 'response', {
                  enumerable: true,
                  configurable: true,
                  writable: true,
                  value: new TextEncoder().encode(JSON.stringify(server)).buffer
                });
                this._lnd(e);
            };
        }
        return this._send.apply(this,arguments)
    };
})();
// 0vC4#7152