File tree Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Expand file tree Collapse file tree 1 file changed +8
-4
lines changed Original file line number Diff line number Diff line change 55"""_summary_
66Auto clicker script with boundary check
77
8- ONLY WORKS ON WINDOWS
9-
108Features:
119- Clicks fast
1210- Stops clicking when mouse is outside of a boundary
13- - Automatically moves mouse to image location
14- - Can auto find and click on many images
11+ - Automatically moves mouse to image location (Winodws only)
12+ - Can auto find and click on many images (Windows only)
1513"""
1614
1715# ================================================================================================
4341 f"Start/Stop button: { startStopKey } \n "
4442 f"Frenzy button: { frenzyKey } \n " )
4543
44+ # check if os is not windows
45+ # Auto disable features if not supported on Linux (probs MacOS too
46+ if os .name != 'nt' :
47+ print ("Auto snap to image & Frenzy mode is disabled as it is not supported on this OS z\n Sorry, i'm working on implementing it currently" )
48+ autoSnapToggle = False
49+ frenzyToggle = False
4650
4751mouse = Controller () # Create mouse object
4852clicking = False # Set clicking to false
You can’t perform that action at this time.
0 commit comments