您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically attempts to rejoin when the room is full.
- // ==UserScript==
- // @name Auto Rejoin
- // @namespace https://greasyfork.org/users/945115
- // @version 0.4
- // @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")
- let roompass = ""
- var observer = new MutationObserver(function(mutations) {
- if (/room_full|no_client_entry/.test(target.innerText)) {
- roompass = document.getElementById("roomlistjoinpasswordtext").value
- setTimeout(()=>{
- document.getElementById("sm_connectingWindowCancelButton").click()
- setTimeout(()=>{
- document.getElementById("roomlistjoinbutton").click()
- setTimeout(()=>{
- if (document.getElementById("roomlistjoinpasswordwindowcontainer").style.visibility == "visible") {
- document.getElementById("roomlistjoinpasswordtext").value = roompass
- setTimeout(()=>{document.getElementById("roomlistpassjoinbutton").click()}, 100)
- }
- }, 1)
- }, 1)
- }, 1)
- }
- });
- observer.observe(target, {
- attributes: true,
- childList: true,
- characterData: true
- });