Greasy Fork

Greasy Fork is available in English.

Auto Rejoin

Automatically attempts to rejoin when the room is full.

当前为 2022-08-11 提交的版本,查看 最新版本

// ==UserScript==
// @name         Auto Rejoin
// @namespace    http://greasyfork.icu/users/945115
// @version      0.2
// @license      GPL-3.0
// @description  Automatically attempts to rejoin when the room is full.
// @author       left paren
// @match        https://bonk.io/gameframe-release.html
// @run-at       document-end
// @grant        none
// ==/UserScript==

var target = document.getElementById("sm_connectingWindow_text")

var observer = new MutationObserver(function(mutations) {
    if (/room_full|no_client_entry/.test(target.innerText)) {
        document.getElementById("sm_connectingWindowCancelButton").click()
        document.getElementById("roomlistjoinbutton").click()
    }
});

observer.observe(target, {
    attributes:    true,
    childList:     true,
    characterData: true
});