Last active
September 3, 2024 16:49
-
-
Save EnesKeremAYDIN/a02642bed3c6ae3d87df89f929ce61e6 to your computer and use it in GitHub Desktop.
XEGGEX Faucet Auto Claim
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
Onderoto2001
commented
Feb 20, 2024
via email
Ok, I see, andrey707 if I have time this evening I will show how to make with a video ok? But if I have time them I will ppst that short video from here to you, see you later, bye for now.
iOS için Outlook<https://aka.ms/o0ukef> uygulamasını edinin
…________________________________
Gönderen: Andrey707 ***@***.***>
Gönderildi: Monday, February 19, 2024 9:29:26 PM
Kime: Andrey707 ***@***.***>
Bilgi: Comment ***@***.***>; Manual ***@***.***>
Konu: Re: EnesKeremAYDIN/xeggex-faucet-auto-claim.js
@Andrey707 commented on this gist.
________________________________
I can't do this
—
Reply to this email directly, view it on GitHub<https://gist.github.com/EnesKeremAYDIN/a02642bed3c6ae3d87df89f929ce61e6#gistcomment-4916924> or unsubscribe<https://github.com/notifications/unsubscribe-auth/AMDXJVKDIAUISPHWYL77WSLYUOKYNBFKMF2HI4TJMJ2XIZLTSKBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDHNFZXJJDOMFWWLK3UNBZGKYLEL52HS4DFVRZXKYTKMVRXIX3UPFYGLK2HNFZXIQ3PNVWWK3TUUZ2G64DJMNZZDAVEOR4XAZNEM5UXG5FFOZQWY5LFVEYTENRWGA3TAMJUU52HE2LHM5SXFJTDOJSWC5DF>.
You are receiving this email because you commented on the thread.
Triage notifications on the go with GitHub Mobile for iOS<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675> or Android<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
blyat
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