Idle Wizard

Idle Wizard

View Stats:
Szy Mar 27, 2019 @ 3:25pm
How to get an autoclicker working
I hope this is within the scope of this forum, but can anyone recommend an autoclicker that works with this game? I've tried three so far and while they work on most everything else, Idle Wizard steadfastly ignores them.
< >
Showing 1-5 of 5 comments
Doktor_Who Mar 27, 2019 @ 3:42pm 
easy auto clicker 2.0
dark_anima Mar 27, 2019 @ 5:04pm 
i amusing: Speed Autoclicker...works quite good so far
A1ice[useless] TV Mar 28, 2019 @ 1:36pm 
clickerman
J. Jonah Jameson Mar 29, 2019 @ 9:06pm 
If you are on Linux, xdotool works.
Abyssus_j Mar 30, 2019 @ 7:16pm 
The pyautogui package works well.

Here's a small hacky script I use with a 3 sec delay before it spams autoclicks.

You may need to change the location of ball depending on your screen or window mode.

import pyautogui import time screen = pyautogui.size() print('height= {}, width= {}'.format(screen.height, screen.width)) time.sleep(3) while True: ball = (screen.height / 1.3, screen.width / 2.3) pyautogui.click(x=ball[0], y=ball[1], button='left', clicks=10, interval=0.05)
Last edited by Abyssus_j; Mar 30, 2019 @ 7:17pm
< >
Showing 1-5 of 5 comments
Per page: 1530 50

Date Posted: Mar 27, 2019 @ 3:25pm
Posts: 5