Auto Respawn

Automatically clicks the respawn button with O key toggle. Green = ON, Red = OFF.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

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

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Auto Respawn
// @namespace    http://tampermonkey.net/
// @version      2.5
// @description  Automatically clicks the respawn button with O key toggle. Green = ON, Red = OFF.
// @author       M.Rithish
// @match        *://battledudes.io/*
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    let autoRespawnEnabled = false;

    // Toggle Display Box
    const toggle = document.createElement('div');
    toggle.style.position = 'fixed';
    toggle.style.top = '40px';
    toggle.style.left = '1100px';
    toggle.style.padding = '10px';
    toggle.style.fontSize = '16px';
    toggle.style.color = 'white';
    toggle.style.border = '2px solid #666';
    toggle.style.borderRadius = '5px';
    toggle.style.zIndex = '1000';
    toggle.style.overflow = 'hidden';
    toggle.style.fontFamily = 'monospace';
    toggle.style.backgroundColor = 'red'; // start with OFF
    toggle.innerText = 'Auto Respawn: OFF';
    document.body.appendChild(toggle);

    // Listen for 'O' key to toggle auto respawn
    document.addEventListener('keydown', function (e) {
        if (e.key.toUpperCase() === 'O') {
            autoRespawnEnabled = !autoRespawnEnabled;
            toggle.innerText = 'Auto Respawn: ' + (autoRespawnEnabled ? 'ON' : 'OFF');
            toggle.style.backgroundColor = autoRespawnEnabled ? 'green' : 'red';
        }
    });

    // Function for Auto Respawn
    setInterval(() => {
        if (!autoRespawnEnabled) return;
        const btn = document.querySelector('#respawn_button');
        if (btn && btn.offsetParent !== null) {
            btn.click();
        }
    }, 21);
})();