您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
description
// ==UserScript== // @name TC Keyboard Warrior // @namespace namespace // @version 0.1 // @description description // @license MIT // @author tos // @match *.torn.com/loader.php* // @grant none // ==/UserScript== /* QUERY SELECTORS Start Attack: div#defender button.torn-btn' Weapons: #weapon_main #weapon_second #weapon_melee #weapon_temp #weapon_fists #weapon_boots */ document.addEventListener('keydown', (e) => { const key = e.key.toUpperCase() switch(key) { case "A": document.querySelector('div#defender button.torn-btn').click() break case "B": document.querySelector('#weapon_main').click() break case "C": document.querySelector('#weapon_second').click() break case "D": document.querySelector('#weapon_melee').click() break case "E": document.querySelector('#weapon_temp').click() break case "F": document.querySelector('#weapon_fists').click() break case "G": document.querySelector('#weapon_boots').click() break default: console.log(e) } })
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址