您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Creates 3 to 5 games when loaded in, bypassing the 1 game limit. Disable after it's been ran.
当前为
// discord.gg/JjszyaD63A // ==UserScript== // @name [Brick-Kill] Create More Games // @version 1 // @author Spacekiller // @description Creates 3 to 5 games when loaded in, bypassing the 1 game limit. Disable after it's been ran. // @match *://www.brick-hill.com/* // @run-at document-idle // @icon https://www.brick-hill.com/favicon.ico // @license MIT // @namespace bhcreatemoregames // ==/UserScript== (function() { 'use strict'; /*- SETTINGS -*/ const requestAmount = 11; // Number of times to send joinClan, may only make 3-5 games. const token = document.querySelector('input[name="_token"]').value; const params = new URLSearchParams(); params.append('name', 'name'); params.append('description', 'desc'); params.append('_token', token); const headers = { "Content-Type": "application/x-www-form-urlencoded" }; function joinClan() { return fetch("https://www.brick-hill.com/play/create", { method: "POST", headers: headers, body: params.toString() }) .then(response => { if (!response.ok) { throw new Error('Network response was not ok'); } return response.text(); }) .catch(error => console.error('Error joining clan:', error)); } Promise.all(Array.from({ length: requestAmount }, joinClan)) .then(() => console.log('All requests completed')) .catch(error => console.error('One or more requests failed:', error)); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址