Bumpyball Server Unlimiter

Enter all servers

此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.gf.qytechs.cn/scripts/545370/1639418/Bumpyball%20Server%20Unlimiter.js

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

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

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==UserScript==
// @name         Bumpyball Server Unlimiter
// @namespace    https://greasyfork.org/en/users/1462379-3lectr0n-nj
// @version      1
// @description  Enter all servers
// @author       3lectr0N!nj@
// @grant        none
// ==/UserScript==
if(location.pathname=='/'){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)
    };}
if(location.host=='www.bumpyball.io'&&location.pathname=='/staging/'){
    const originalFetch = window.fetch;

    window.fetch = async function (...args) {
        const response = await originalFetch(...args);
        const clonedResponse = response.clone();
            if (args[0].includes("Listing?Game=BumpyBall")) {
                const data = await clonedResponse.json();
                data.forEach(server => {
                    server.MaxPlayers = 999;
                });
                return new Response(JSON.stringify(data), {
                    headers: clonedResponse.headers,
                    status: clonedResponse.status,
                    statusText: clonedResponse.statusText
                });
            }
            if (args[0].includes("/Ping")) {
                const server = await clonedResponse.json();
                server.MaxPlayers = 999;
                return new Response(JSON.stringify(server), {
                    headers: clonedResponse.headers,
                    status: clonedResponse.status,
                    statusText: clonedResponse.statusText
                });
            }
        return response;
    };
}