您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
This is a small Script. That let's you have a lot more bigger party name, Be sure that the name is not using a lot of stylish words/emojis or you can disconnect. Type /setMyName to set your name, /setPartyID to set the name to your partyID and /&myName to add your name in any sentence.
// ==UserScript== // @name Bigger party Name. With Commands! // @namespace http://tampermonkey.net/ // @version 0.2 // @description This is a small Script. That let's you have a lot more bigger party name, Be sure that the name is not using a lot of stylish words/emojis or you can disconnect. Type /setMyName to set your name, /setPartyID to set the name to your partyID and /&myName to add your name in any sentence. // @author DiamondKingx // @match http://zombs.io/ // @icon https://www.google.com/s2/favicons?domain=zombs.io // @grant none // ==/UserScript== (function() { var partyNameInput = document.getElementsByClassName("hud-party-tag")[0]; setInterval(() => { if(game.world.inWorld == true){partyNameInput.maxLength = 49; var partyName; if(partyNameInput.value.toUpperCase().startsWith("/SETMYNAME")){ partyName = game.ui.playerTick.name} else{ if(partyNameInput.value.toUpperCase().startsWith("/SETPARTYID")){ partyName = "Party" + game.ui.playerPartyId} else{ if(partyNameInput.value.toUpperCase().includes("/&MYNAME")){ var val = partyNameInput.value; var allWords = val.split(" "); for(var i=0; i<allWords.length; i++){ if(allWords[i].toUpperCase().includes("/&MYNAME")){ allWords[i] = game.ui.playerTick.name; } } partyName = allWords.join(" "); } else{ partyName = partyNameInput.value }} } game.network.sendRpc({ name: "SetPartyName", partyName: partyName})} }, 250) })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址