fixed code :
// ==UserScript==
//
@name FreeBitco.in Auto Clicker
// @namespace FreeBitco.in
// @version 1.2
// @description Automatically claims free bitcoins on FreeBitco.in
// @author You
// @match
FreeBitco.in - Bitcoin, Bitcoin Price, Free Bitcoin Wallet, Faucet, Lottery and Dice!
// @grant none
// ==/UserScript==
(function() {
'use strict';
// Function to wait until jQuery is available
function waitForjQuery(callback) {
if (typeof window.jQuery !== 'undefined') {
callback();
} else {
console.log("Waiting for jQuery...");
setTimeout(() => waitForjQuery(callback), 1000);
}
}
function claim() {
let $ = window.jQuery; // Ensure jQuery is correctly assigned
let button = $("#free_play_form_button");
if (button.length && button.is(":visible")) {
console.log("Claiming reward...");
button.trigger("click");
setTimeout(() => {
console.log("Reloading...");
location.reload();
}, 5000);
} else {
console.log("Button not visible. Retrying in 30 seconds.");
setTimeout(claim, 30000);
}
}
// Ensure jQuery is loaded first, then execute claim()
waitForjQuery(() => {
console.log("jQuery is ready. Starting script...");
setTimeout(claim, 5000);
});
})();