Oo nga di din kita ma-PM>>
Pero ito na lang, download mo Violentmonkey extension browser then create script and paste mo ito.
// ==UserScript==
//
Name 77Bit Auto Claim and Start Mining
//
namespace Crypto Jerusalem Script
//
VERSION 2024-01-11
// @description Automatically claims rewards and restarts mining every 8 hours.
// @author Crypto Jerusalem
//
match You do not have permission to view the full content of this post.
Log in or register now.
//
icon You do not have permission to view the full content of this post.
Log in or register now.
//
grant none
// ==/UserScript==
(function () {
'use strict';
// Function to claim rewards
function claimRewards() {
const claimButton = document.querySelector('div.mining-progress-btn__text span');
if (claimButton && claimButton.innerText.trim().toUpperCase() === 'CLAIM') {
claimButton.click();
console.log('CLAIM button clicked successfully!');
} else {
console.log('CLAIM button not available or not ready.');
}
}
// Function to start mining
function startMining() {
const startButton = document.querySelector('span[data-v-b5de7eb4]'); // Refers to the START MINING button
if (startButton && startButton.innerText.trim().toUpperCase() === 'START MINING') {
startButton.click();
console.log('START MINING button clicked successfully!');
} else {
console.log('START MINING button not available or not ready.');
}
}
// Combined function to handle claiming and restarting mining
function checkAndPerformActions() {
claimRewards();
setTimeout(startMining, 3000); // Delay 3 seconds before attempting to start mining
}
// Wait for the page to load completely
window.addEventListener('load', () => {
// Run the check 5 seconds after loading the page
setTimeout(checkAndPerformActions, 5000);
// Schedule to repeat every 8 hours
setInterval(checkAndPerformActions, 28800000); // 8 hours = 8 * 60 * 60 * 1000 ms
});
})();