Greasy Fork is available in English.
没得介绍!
当前为
// ==UserScript==
// @name U77驰援英雄自动
// @namespace http://tampermonkey.net/
// @version 2024-03-27
// @description 没得介绍!
// @author 没得名字
// @match https://file.u77.games/zh-cn/2022/1107/Abqu-Heroes/PixelItem/index.html
// @icon https://www.google.com/s2/favicons?sz=64&domain=u77.games
// @license MIT
// @grant none
// ==/UserScript==
(function() {
'use strict';
//仓库最大保留数
var maxnum=player.inventoryCap-1;
//计时器毫秒数
var maxtimes1=300;
var maxtimes2=1500;
function autosell(){
$("#inventory").find(".inventoryCount").each(
function(e){
if(this.innerHTML.match(/\d+/)>maxnum){
$("#inventory").find("a")[e].click();
console.log("自动卖出"+ $("#inventory").find("a")[e].innerText);
}
})
}
function automax(){
player.皮革=player.皮革Cap;player.矿石=player.矿石Cap;player.木材=player.木材Cap;player.药草=player.药草Cap;
player.money=99999999999;
}
//setInterval(autosell,maxtimes1)
setInterval(automax,maxtimes2)
})();