Skip to content

Instantly share code, notes, and snippets.

View Onderoto2001's full-sized avatar

önder oto Onderoto2001

View GitHub Profile
@EnesKeremAYDIN
EnesKeremAYDIN / xeggex-faucet-auto-claim.js
Last active April 11, 2024 18:40
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
}
}