Skip to content

Instantly share code, notes, and snippets.

@EnesKeremAYDIN
Last active September 3, 2024 16:49
Show Gist options
  • Save EnesKeremAYDIN/a02642bed3c6ae3d87df89f929ce61e6 to your computer and use it in GitHub Desktop.
Save EnesKeremAYDIN/a02642bed3c6ae3d87df89f929ce61e6 to your computer and use it in GitHub Desktop.
XEGGEX Faucet Auto Claim
var buttons = document.querySelectorAll(".btn.btn-sm.btn-success.makeclaim");
function clickButtonsSequentially(index) {
if (index < buttons.length) {
buttons[index].click();
setTimeout(function() {
clickButtonsSequentially(index + 1);
}, 100); // 100ms delay
}
}
clickButtonsSequentially(0);
// This code runs in the browser console.
// XEGGEX referral: https://xeggex.com?ref=65611e850db453eef6b039a0
// NonKYC referral: https://nonkyc.io/?ref=6567d62bf934839161400a23
@Mat166
Copy link

Mat166 commented Feb 19, 2024

Thanks

@Andrey707
Copy link

I can't do this

@Onderoto2001
Copy link

Onderoto2001 commented Feb 20, 2024 via email

@canibaloler
Copy link

blyat

@CemYcl
Copy link

CemYcl commented Sep 3, 2024

New version updated Scripts:

var buttons = document.querySelectorAll(".btn.btn-sm.makeclaim");

function clickButtonsSequentially(index) {
  if (index < buttons.length) {
    buttons[index].click();
    setTimeout(function() {
      clickButtonsSequentially(index + 1);
    }, 100); // 100ms delay
  }
}

clickButtonsSequentially(0);

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment