From 1375be8f402a170ca7e4ac57e9fdcad49d0ce0fd Mon Sep 17 00:00:00 2001 From: Abhorrent_Anger Date: Sat, 9 Aug 2025 21:57:30 +0300 Subject: [PATCH] Delay the free claim click --- EasySkinsCoinClaimer.user.js | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/EasySkinsCoinClaimer.user.js b/EasySkinsCoinClaimer.user.js index e10cc68..ccdad8a 100644 --- a/EasySkinsCoinClaimer.user.js +++ b/EasySkinsCoinClaimer.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Easy Skins Coin Claimer // @namespace https://pube.tk -// @version 2025-08-08 +// @version 2025-08-09 // @description Claims free coins on the info page // @author Abhorrent_Anger // @match https://easyskins.com/info/* @@ -23,6 +23,10 @@ const FREE_COINS_BUTTON = 'button.button-get-daily-bonus'; function checkFreeCoins() { $(REWARD_SIDEBAR_BUTTON_SELECTOR).click(); + setTimeout(clickFreeCoins, RECHECK_TIMER); +} + +function clickFreeCoins() { $(FREE_COINS_BUTTON).click(); } @@ -37,7 +41,7 @@ function getCooldown() { function runRoutines() { console.log('Checking for free coin claims'); checkFreeCoins(); - setTimeout(recheck, RECHECK_TIMER); + setTimeout(recheck, RECHECK_TIMER * 2); } function recheck() {