您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Bots a clan by joining it several times.
// discord.gg/JjszyaD63A // ==UserScript== // @name [Brick-Kill] Clan Botter // @version 3.1 // @description Bots a clan by joining it several times. // @match *://www.brick-hill.com/* // @run-at document-idle // @icon https://www.brick-hill.com/favicon.ico // @license MIT // @namespace bhclanbotter // @grant GM_setValue // @grant GM_getValue // ==/UserScript== (function() { 'use strict'; /*- SETTINGS -*/ const clanId = 8434 // The id of the clan you want to target. const Mode = "Ambush" // Ambush or Repeat. // 'Ambush' will join a clan several times at once when you join. Can join 5-10 times at random. If you can't set a clan to "Join pending", use this. const Ambush_amount = 11 // Number of times to send joinClan in Ambush mode. // 'Repeat' will join a clan once repeatedly over time. Has no limit compared to Ambush. Recommended for a clan that has "Join pending", and you can accept the invites. const Repeat_interval = 500 // Number of times to send joinClan in Ambush mode. Recommended to at most 300ms so you don't get rate limited. /*- -*/ const token = document.querySelector('input[name="_token"]').value; const params = new URLSearchParams(); params.append('clan_id', clanId + 0.25); params.append('_token', token); const headers = { "Content-Type": "application/x-www-form-urlencoded" }; function joinClan() { return fetch("https://www.brick-hill.com/clan/join", { 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 => { throw new Error('Error joining clan:', error); }); } if (Mode === "Ambush") { Promise.all(Array.from({ length: Ambush_amount }, joinClan)) .catch(error => { throw new Error('One or more requests failed:', error); }); } else if (Mode === "Repeat") { setInterval(joinClan, Repeat_interval); } })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址