[go: up one dir, main page]

0% found this document useful (0 votes)
816 views2 pages

Auto Faucet Script for Multiple Cryptos

This userscript automates claiming rewards from various crypto faucet websites by automatically logging in with hardcoded credentials and switching between listed sites every 2 seconds. It logs into faucet sites with the email "heidylaksana@gmail.com" and password "kidungkalangi", then automatically clicks to claim rewards if available and refreshes pages every 10 minutes to check for new rewards.

Uploaded by

idehonoskal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
816 views2 pages

Auto Faucet Script for Multiple Cryptos

This userscript automates claiming rewards from various crypto faucet websites by automatically logging in with hardcoded credentials and switching between listed sites every 2 seconds. It logs into faucet sites with the email "heidylaksana@gmail.com" and password "kidungkalangi", then automatically clicks to claim rewards if available and refreshes pages every 10 minutes to check for new rewards.

Uploaded by

idehonoskal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
  • Crypto Auto Faucet Script

// ==UserScript==

// @name Free multicrypto Auto Faucet


// @description Auto Faucet Script by CodeFred
// @author CodeFred
// @version 2.0
// @namespace [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @match [Link]
// @grant GM_setValue
// @grant GM_getValue
// ==/UserScript==

const email = heidylaksana@[Link]",


const password = kidungkalangi",

const websites = [
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]",
"[Link]"
]

setTimeout(function() {
'use strict';

// Automatic Login
AutoLogin();

// Roll when possible


if ([Link]("div[class='roll-wrapper']").[Link] !==
"none") {
[Link]("button[class='main-button-2 roll-button bg-
2']").click()
AutoSwitch(); // Automatic page switching
}
//every 10 minutes the page will be refreshed to check if you can roll again
setTimeout(function(){ [Link](); }, 10*60*1000);
},2000);

// Autom Login
function AutoLogin() {
var login_form = [Link]('login-wrapper wrapper bg-1');
if (login_form.length == 1) {
var inputs = login_form[0].getElementsByTagName("input");
var button = login_form[0].getElementsByTagName("button")[0];
inputs[1].value = heidylaksana@[Link];
inputs[2].value = kidungkalangi;
[Link]()
}
}

// Auto Page Switching


function AutoSwitch() {
setTimeout(function() {
var current_page_id = [Link]([Link])
var next_page_id = (current_page_id < [Link] - 1) ?
current_page_id + 1 : 0;
[Link] = [Link] + "//" +
websites[next_page_id]
},2000);
}

You might also like