您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
A Dark Room
当前为
// ==UserScript== // @name A Dark Room [Speed Cheat] // @version 0.1 // @description A Dark Room // @author Luke // @match https://adarkroom.doublespeakgames.com/ // @namespace https://gf.qytechs.cn/users/684752 // ==/UserScript== (function() { 'use strict'; $(document).ready(function() { setInterval(function(){ $(".disabled") //finds all disabled classes, EXCEPT those that have IDs matching... .not( '[id^="build"]' ) //building things on the home screen .not( '[id^="learn"]' ) //learning new perks .not( '[id^="buy"]' ) //buy from traveler .not( '[id^="wood"]' ) //giving x wood .not( '[id^="fur"]' ) //giving x fur .not( '[id^="agree"]' ) //agree to traveler .not( '[id^="enter"]' ) //mine / cave .not( '[id^="continue"]' ) //cave .not( '[id^="talk"]' ) //swamp .not( '[id^="all_take"]' ) //if you can't take all .not( '[id^="loot_take"]' ) //if you can't take all .not( '[class^="up"]' ) //up arrows .not( '[class^="dn"]' ) //down arrows .not( '[id^="heal"]' ) //healing plague .not( '[id^="help"]' ) //sick man .not( '[id^="evasion"]' ) //evasion perk (if you alreadly learned it) .not( '[id^="precision"]' ) //precision perk (if you alreadly learned it) .not( '[id^="force"]' ) //force perk (if you alreadly learned it) .removeClass("disabled"); //remove all disabled classes that don't have IDs matching the cases above }, 100); }); })(); // This is kind of a brain-dead way to do this, but I considered it to be the safest way while still relatively computationally inexpensive // (i.e., if I had targeted the specific buttons I DO need, I might have missed one, but it's not // the end of the world if I take the disabled class off of something that doesn't really need it)
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址