这样做很麻烦。检查我编写的脚本。只需将其粘贴在控制台中,然后单击Enter。不要忘记打开采矿游戏。
var exploit = {
lastTime : 0,
totalNum: 0
};
$( document ).ajaxComplete(function( event, xhr, settings ) {
var a = $.parseJSON(xhr.responseText);
var id = a.rock;
var sender = settings.url;
if (sender.indexOf("icoin/rock?") !== -1){
var currentTime = parseInt( new Date().getTime() / 1000 );
if (currentTime - exploit.lastTime > 11){
$.ajax({
type: "POST",
url: "/unicoin/mine?rock=" + id,
data: {'fkey': StackExchange.options.user.fkey}
});
exploit.lastTime = currentTime;
}
} else {
var res = $.parseJSON(xhr.responseText)
exploit.totalNum += res.value;
}
});
您可以检查使用开采了多少exploit.totalNum
。