您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Sort of calculating kick level
// ==UserScript== // @name MooMoo.js anticheat calculator // @namespace http://tampermonkey.net/ // @version 0.1.54 // @description Sort of calculating kick level // @require https://gf.qytechs.cn/scripts/456235-moomoo-js/code/MooMoojs.js?version=1159501 // @author Lovou#4725 // @match *://*.moomoo.io/* // @grant none // ==/UserScript== const MooMoo = (function MooMooJS_beta() {})[69] let kickCount = 0; let intervalStarted = false; const resetInterval = 60000; // 1 minute in milliseconds let resetTime = Date.now() + resetInterval; const resetKickCount = () => { kickCount = 0; resetTime = Date.now() + resetInterval; }; MooMoo.addEventListener("packet", () => { if (!intervalStarted) { intervalStarted = true; setInterval(() => { const currentTime = Date.now(); if (currentTime >= resetTime) { resetKickCount(); } }, 100); } }); const incrementKickCount = () => { kickCount++; }; const calculateKickPercentage = (kicks, goal) => (kicks / goal) * 100; const setStyles = element => { const styles = { position: "absolute", top: "0px", left: "0px", color: "white", fontFamily: "monospace", fontSize: "25px" }; Object.entries(styles).forEach(([key, value]) => { element.style[key] = value; }); }; const displayGameInfo = () => { const gameInfoElement = document.createElement("div"); setStyles(gameInfoElement); gameInfoElement.id = "playerPosition"; document.body.appendChild(gameInfoElement); const updateGameInfo = () => { const currentTime = Date.now(); const timeRemaining = resetTime - currentTime; document.getElementById("playerPosition").innerText = `[Kick (%): ${Math.round( calculateKickPercentage(kickCount, 5400) )}/100]\n [Reset: ${(timeRemaining / 1000).toFixed(1)} | PPM: ${kickCount}]`; }; setInterval(updateGameInfo, 100); }; MooMoo.onClientPacket = incrementKickCount; MooMoo.onGameLoad = displayGameInfo;
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址