Auto Clicker for More Ore

Auto Clicker for More Ore, clicks weak spots, manual attacks on quest, and golden nuggets. Also updates automatically.

// ==UserScript==
// @name         Auto Clicker for More Ore
// @namespace    http://tampermonkey.net/
// @version      0.9
// @description  Auto Clicker for More Ore, clicks weak spots, manual attacks on quest, and golden nuggets. Also updates automatically.
// @author       xWass
// @match        https://syns.studio/more-ore/
// @icon         https://syns.studio/more-ore/misc-tinyRock.22ef93dd.ico
// @require      https://gf.qytechs.cn/scripts/444840-more-ore-notification/code/More%20Ore%20-%20Notification+.user.js
// @grant        none
// @license MIT
// ==/UserScript==

NotificationPlus?.load("Auto Clicker");
/*
var quest = setInterval(function(){
    if (document.querySelector('.manual-attack')) {
        document.querySelector('.manual-attack').click()
    }
}, 25);
var weak = setInterval(function(){
    if (document.querySelector('.weak-spot')) {
        document.querySelector('.weak-spot').click()
    }
}, 25);
*/
var gnugget = setInterval(function(){
    if (document.querySelector('.gold-nugget-container')) {
        document.querySelector('.gold-nugget-container').click()
    }
}, 1500);

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址