🚀 LiveBetPro Paste 🔗 Share: Telegram OR Facebook

BC-Game

Faucet Auto Clicker - Earn Pepe

// ==UserScript==
// @name Faucet Auto Clicker - Earn Pepe
// @namespace https://earn-pepe.com/
// @version 1.2
// @description Automatically clicks "Manual Faucet" menu link, solves checkbox, and claims faucet only when needed.
// @author Rubystance
// @license MIT
// @match https://earn-pepe.com/*
// @grant none
// ==/UserScript==

(function () {
'use strict';

function waitForElement(selector, callback, interval = 500, timeout = 15000) {
const start = Date.now();
const timer = setInterval(() => {
const el = document.querySelector(selector);
if (el) {
clearInterval(timer);
callback(el);
} else if (Date.now() - start > timeout) {
clearInterval(timer);
console.warn(`[!] Element not found: ${selector}`);
}
}, interval);
}

function isButtonClickable(button) {
const style = window.getComputedStyle(button);
return (
style.display !== 'none' &&
style.visibility !== 'hidden' &&
!button.disabled &&
button.offsetParent !== null
);
}

function handleFaucetPage() {
waitForElement('#verifyCheckbox', (checkbox) => {
if (!checkbox.checked) {
checkbox.click();
console.log('[✓] Checkbox clicked.');
} else {
console.log('[✓] Checkbox already checked.');
}

const checkCaptchaInterval = setInterval(() => {
if (checkbox.checked) {
console.log('[✓] CAPTCHA solved.');

const claimInterval = setInterval(() => {
const btn = document.querySelector('#ClaimBtn');
if (btn && isButtonClickable(btn)) {
btn.click();
console.log('[✓] Claim button clicked.');
clearInterval(claimInterval);
} else {
console.log('[...] Waiting for Claim button to become available...');
}
}, 1000);

clearInterval(checkCaptchaInterval);
} else {
console.log('[...] Waiting for CAPTCHA to be solved...');
}
}, 1000);
});
}

if (window.location.href.includes('/member/faucet')) {
console.log('[✓] Already on Faucet page. Running faucet handler...');
handleFaucetPage();
} else {

waitForElement('a[href="https://earn-pepe.com/member/faucet"]', (link) => {
console.log('[✓] Clicking Manual Faucet menu link...');
link.click();

setTimeout(() => {
handleFaucetPage();
}, 3000);
});
}
})();

USE : FXVNPRo Script Manager - https://chromewebstore.google.com/detail/fxvnpro-script-manager/jpmlbjngaoibojfppfaibmbihcflhiof
QR Code

📱 Scan this QR to open paste

🔗 Share: Telegram OR Facebook 🔗 Create a New Paste LiveBetPro Paste

BC-Game

🔗 Related Pastes

💬 Comments