From f139496c3e759b37a4588809a9b1065541d68102 Mon Sep 17 00:00:00 2001 From: Abhorrent_Anger Date: Thu, 18 Sep 2025 19:32:00 +0300 Subject: [PATCH] Change the click target --- GetDropFreeCaseClaimer.user.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/GetDropFreeCaseClaimer.user.js b/GetDropFreeCaseClaimer.user.js index e5c438e..9dfe06b 100644 --- a/GetDropFreeCaseClaimer.user.js +++ b/GetDropFreeCaseClaimer.user.js @@ -1,7 +1,7 @@ // ==UserScript== // @name Get Drop Free Case Claimer // @namespace https://pube.tk -// @version 2025-09-19 +// @version 2025-09-20 // @description Claims free cases // @author Abhorrent_Anger // @match https://getdrop.org/case/free* @@ -13,16 +13,16 @@ // ==/UserScript== const INITIAL_TIMER = 2000; -const RECHECK_TIMER = 30 * 60 * 1000; +const RECHECK_TIMER = 60 * 1000; const MAIN_WINDOW_SELECTOR = "main"; -const FREE_CASE_BUTTON = '.free-open.btn-opencase'; +const FREE_CASE_BUTTON = '.free-open.btn-opencase span'; function clickFreeCase() { $(FREE_CASE_BUTTON).click(); } function runRoutines() { - console.log('Checking for free coin claims'); + console.log('Checking for free coin claims...'); clickFreeCase(); setTimeout(runRoutines, RECHECK_TIMER); }