Starlavinia Auto Faucet

Automates faucet with realistic delays, captcha fail detection and 5s wait after solving captcha before claiming reward.

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         Starlavinia Auto Faucet
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Automates faucet with realistic delays, captcha fail detection and 5s wait after solving captcha before claiming reward.
// @author       Rubystance
// @license      MIT
// @match        https://starlavinia.name.tr/*
// @run-at       document-idle
// @grant        none
// ==/UserScript==

(function () {
    'use strict';

    const sleep = ms => new Promise(r => setTimeout(r, ms));

    function waitForElement(selector, timeout = 20000) {
        return new Promise((resolve, reject) => {
            const el = document.querySelector(selector);
            if (el) return resolve(el);
            const observer = new MutationObserver(() => {
                const target = document.querySelector(selector);
                if (target) {
                    observer.disconnect();
                    resolve(target);
                }
            });
            observer.observe(document.body, { childList: true, subtree: true });
            setTimeout(() => {
                observer.disconnect();
                reject("⏰ Timeout waiting for " + selector);
            }, timeout);
        });
    }

    function hasCaptchaFailed() {
        const errorDiv = document.querySelector('.badge.bg-danger');
        return errorDiv && errorDiv.textContent.includes("Failed! Please reload the page.");
    }

    async function waitAndCheckCaptchaFail(maxWait = 10000) {
        const checkInterval = 1000;
        const attempts = maxWait / checkInterval;
        for (let i = 0; i < attempts; i++) {
            if (hasCaptchaFailed()) {
                console.warn("❌ Captcha failure detected. Reloading...");
                location.reload();
                return true;
            }
            await sleep(checkInterval);
        }
        return false;
    }

    const currentPath = window.location.pathname;

    if (currentPath === "/dashboard") {
        waitForElement('span.flex.items-center').then(async span => {
            if (span.textContent.toLowerCase().includes("faucet")) {
                console.log("🔁 Clicking Faucet...");
                await sleep(10000);
                span.click();
            }
        });
    }

    if (currentPath === "/faucet") {
        const tryClaimAndVerify = async () => {
            try {

                const failedEarly = await waitAndCheckCaptchaFail();
                if (failedEarly) return;

                const claimBtn = await waitForElement('#openClaimModal');
                await sleep(10000);
                if (hasCaptchaFailed()) return location.reload();

                console.log("⛲ Clicking Claim...");
                claimBtn.click();

                await waitForElement('#captcha-holder .icon-option.selected, #captcha-holder .icon-option.active');
                if (hasCaptchaFailed()) return location.reload();

                console.log("✅ Captcha resolved. Waiting 5 seconds before clicking Verify...");
                await sleep(5000);

                const verifyBtn = await waitForElement('button[type="submit"]');
                if (hasCaptchaFailed()) return location.reload();

                console.log("🚀 Clicking Verify...");
                verifyBtn.click();
            } catch (err) {
                console.error("⚠️ Error during faucet automation:", err);
            }
        };

        tryClaimAndVerify();
    }
})();