您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
W rizz
当前为
// ==UserScript== // @name maca client cryzen.io 1.4 aimbot+ESP // @namespace http://tampermonkey.net/ // @version 1.4 // @description W rizz // @author You // @match https://cryzen.io/ // @icon none // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; // Variabili per lo stato del menu e delle funzionalità let menuOpen = false; let espEnabled = false; let aimBotEnabled = false; let autoFireEnabled = false; // Aggiungi il menu HTML const menuHTML = ` <div id="menu" style="position: absolute; top: 50px; left: 50px; background-color: red; padding: 10px; border-radius: 5px; display: none; font-family: Arial, sans-serif;"> <h2 style="color: darkblue;">maca client cryzen.io</h2> <button id="espBtn" onclick="toggleESP()" style="background-color: darkblue; color: white; padding: 5px 10px; margin: 5px; border-radius: 5px;">Toggle ESP</button><br> <button id="aimBotBtn" onclick="toggleAimBot()" style="background-color: darkblue; color: white; padding: 5px 10px; margin: 5px; border-radius: 5px;">Toggle Aim Bot</button><br> <button id="autoFireBtn" onclick="toggleAutoFire()" style="background-color: darkblue; color: white; padding: 5px 10px; margin: 5px; border-radius: 5px;">Toggle Auto Fire</button><br> <button onclick="closeMenu()" style="background-color: darkblue; color: white; padding: 5px 10px; margin: 5px; border-radius: 5px;">Close Menu</button> </div> `; document.body.insertAdjacentHTML('beforeend', menuHTML); // Funzioni per il toggle del menu function toggleMenu() { menuOpen = !menuOpen; document.getElementById("menu").style.display = menuOpen ? "block" : "none"; } // Funzioni per abilitare/disabilitare le opzioni function toggleESP() { espEnabled = !espEnabled; alert("ESP " + (espEnabled ? "Enabled" : "Disabled")); updateButtonState("espBtn", espEnabled); if (espEnabled) { startESP(); } else { stopESP(); } } function toggleAimBot() { aimBotEnabled = !aimBotEnabled; alert("Aim Bot " + (aimBotEnabled ? "Enabled" : "Disabled")); updateButtonState("aimBotBtn", aimBotEnabled); } function toggleAutoFire() { autoFireEnabled = !autoFireEnabled; alert("Auto Fire " + (autoFireEnabled ? "Enabled" : "Disabled")); updateButtonState("autoFireBtn", autoFireEnabled); } function closeMenu() { menuOpen = false; document.getElementById("menu").style.display = "none"; } // Funzione per aggiornare lo stato dei pulsanti function updateButtonState(buttonId, isEnabled) { const button = document.getElementById(buttonId); if (isEnabled) { button.innerText = `${buttonId.replace("Btn", "")} Toggled`; button.style.backgroundColor = "green"; } else { button.innerText = `${buttonId.replace("Btn", "")} Toggle`; button.style.backgroundColor = "darkblue"; } } // Funzione per abilitare ESP function startESP() { const enemies = document.querySelectorAll('.enemy'); // Cambia 'enemy' con la classe reale enemies.forEach(enemy => { enemy.style.border = "2px solid red"; // Modifica l'aspetto dell'ESP }); } // Funzione per disabilitare ESP function stopESP() { const enemies = document.querySelectorAll('.enemy'); // Cambia 'enemy' con la classe reale enemies.forEach(enemy => { enemy.style.border = "none"; // Ripristina l'aspetto normale }); } // Funzione per il bot della mira (aim bot) function aimBot() { if (aimBotEnabled) { const enemies = document.querySelectorAll('.enemy'); // Cambia 'enemy' con la classe reale if (enemies.length > 0) { const closestEnemy = enemies[0]; // Seleziona il primo nemico (puoi migliorarlo per scegliere il più vicino) const enemyRect = closestEnemy.getBoundingClientRect(); const centerX = enemyRect.left + enemyRect.width / 2; const centerY = enemyRect.top + enemyRect.height / 2; // Muovi la mira verso il nemico const mouseEvent = new MouseEvent('mousemove', { clientX: centerX, clientY: centerY }); document.dispatchEvent(mouseEvent); if (autoFireEnabled) { const clickEvent = new MouseEvent('click', { bubbles: true }); document.dispatchEvent(clickEvent); } } } } // Loop per il bot della mira setInterval(aimBot, 50); // Controlla il bot ogni 50ms // Aggiungi l'evento per aprire/chiudere il menu con il tasto 'M' window.addEventListener('keydown', function(event) { if (event.key === 'm' || event.key === 'M') { toggleMenu(); } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址