Auto Respawn

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

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği yüklemek için Tampermonkey gibi bir uzantı yüklemeniz gerekir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği indirebilmeniz için ayrıca Tampermonkey gibi bir eklenti kurmanız gerekmektedir.

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

Bu stili yüklemek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için Stylus gibi bir uzantı kurmanız gerekir.

Bu stili yükleyebilmek için Stylus gibi bir uzantı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

Bu stili yüklemek için bir kullanıcı stili yöneticisi uzantısı kurmanız gerekir.

Bu stili yükleyebilmek için bir kullanıcı stili yöneticisi uzantısı yüklemeniz gerekir.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==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);
})();