Xclicker 2.6 (2025)
"human_like": "delay_min": 0.08, "delay_max": 0.22, "jitter_px": 5, "burst_count": 1, "hold_duration": 0.03 , "turbo": "delay_min": 0.001, "delay_max": 0.003, "jitter_px": 0, "burst_count": 1, "hold_duration": 0 , "burst_mode": "delay_min": 0.5, "delay_max": 1.0, "jitter_px": 2, "burst_count": 5, "burst_pause": 0.1, "hold_duration": 0.05
def click_with_pattern(self): """Perform a click with current pattern settings""" if self.pattern.random_order and random.choice([True, False]): pyautogui.rightClick() else: # Add jitter to position x, y = pyautogui.position() if self.pattern.jitter_px > 0: x += random.randint(-self.pattern.jitter_px, self.pattern.jitter_px) y += random.randint(-self.pattern.jitter_px, self.pattern.jitter_px) pyautogui.moveTo(x, y, duration=0.01) # Hold click if needed pyautogui.mouseDown() if self.pattern.hold_duration > 0: time.sleep(self.pattern.hold_duration) pyautogui.mouseUp() xclicker 2.6
@dataclass class ClickPattern: delay_min: float = 0.05 delay_max: float = 0.15 jitter_px: int = 3 burst_count: int = 1 burst_pause: float = 0.5 hold_duration: float = 0.05 random_order: bool = False "human_like": "delay_min": 0
def stop(self): self.running = False if self.thread: self.thread.join(timeout=1) print("[✓] Smart clicker stopped") "human_like": "delay_min": 0.08
class SmartClicker: def (self): self.running = False self.thread: Optional[threading.Thread] = None self.pattern = ClickPattern()
def click_loop(self): """Main clicking loop with burst support""" while self.running: # Burst mode for _ in range(self.pattern.burst_count): if not self.running: return self.click_with_pattern() if _ < self.pattern.burst_count - 1: time.sleep(self.pattern.delay_min / 2) # Fast between bursts # Random delay between bursts delay = random.uniform(self.pattern.delay_min, self.pattern.delay_max) time.sleep(delay)
# 1. Install dependencies pip install pyautogui keyboard 3. Modify xclicker's main.py to import: from smart_clicker import SmartClicker, ClickPattern Alternative: JSON Configuration File // click_patterns.json