您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Hotkeys for battling Kaiju
当前为
// ==UserScript== // @name BvS Kaiju Battle Hotkeys // @namespace CampSoup1988 // @version 1.1 // @history 1.1 Now https compatible (Updated by Channel28) // @description Hotkeys for battling Kaiju // @include http*://*animecubed.com/billy/bvs/villagemonsterfight.* // @grant none // ==/UserScript== function process_event(event) { if (event.keyCode==66){ //Bring Down the House Jutsu var jutsu=document.forms.namedItem("kat").elements; for(var i=0; i<jutsu.length; i++) if(jutsu[i].value=="Bring Down the House Jutsu") //Bring Down the House Jutsu jutsu[i].wrappedJSObject.click(); document.forms.namedItem("kat").wrappedJSObject.submit(); //Attempt Fight } if (event.keyCode==75){ //Kitsune Bakudan var jutsu=document.forms.namedItem("kat").elements; for(var i=0; i<jutsu.length; i++) if(jutsu[i].value=="Kitsune Bakudan") //Kitsune Bakudan jutsu[i].wrappedJSObject.click(); document.forms.namedItem("kat").wrappedJSObject.submit(); //Attempt Fight } if (event.keyCode==84){ //Throw a TsukiBall var jutsu=document.forms.namedItem("kat").elements; for(var i=0; i<jutsu.length; i++) if(jutsu[i].value=="throw") //Throw a TsukiBall jutsu[i].wrappedJSObject.click(); } if (event.keyCode==65){ //Attempt if(document.forms.namedItem("kat")) document.forms.namedItem("kat").wrappedJSObject.submit(); //Attempt Fight else document.forms.namedItem("battle").wrappedJSObject.submit(); //New Fight } if (event.keyCode==67) //c document.forms.namedItem("chakra").wrappedJSObject.submit(); //Charge chakra } window.addEventListener("keyup", process_event, false);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址