Cell to Singularity - Evolution Never Ends

Cell to Singularity - Evolution Never Ends

Ver estatísticas:
Auto Clicker
Does anyone know of a auto clicker software that works the one I was using no longer works with the game.
< >
A mostrar 16-20 de 20 comentários
Luko 4 jun. 2023 às 0:05 
Originalmente postado por aim, shoot, miss, dead:
i also want to use the autoclicker but how do u set it up? just open the game and run the clicker?
op autoclicker is ok. It opens a window, you set the speed (ms), the pre-set button is F6 (u can change it), minimize window and use F6 ingame to start/stop the clicker. That´s it.
Oop 11 jun. 2023 às 0:57 
I've been using Autohotkey without any problems for quite some time now. Free and simple. Using Ctrl-J as the trigger, I've never seen that combination used anywhere and there is no chance of switching it on/off accidentally.
Oop 11 jun. 2023 às 0:59 
My Autohotkey script, just copy and paste:

CoordMode, Mouse, Screen
SetTimer, Check, 20
SetKeyDelay, 0, 50
Return

Check:
MouseGetPos, xx, yy
Tooltip %xx%`, %yy%
return

^j::domino66Click()

domino66Click(Interval=100){

static Toggler

Toggler := !Toggler

TPer := Toggler ? Interval : "off"

SetTimer, ClickClick, %TPer%

return

ClickClick:

Click

return

}
76561199401634083 3 nov. 2023 às 10:30 
I just jused an python script:

import time import threading from pynput.mouse import Controller, Button from pynput.keyboard import Listener, KeyCode #Toggle Key TOGGLE_KEY = KeyCode(char="a") #when started clicking = false clicking = False mouse = Controller() #functions #clicker def clicker(): while True: if clicking: #right Mouse Button mouse.click(Button.left, 1) time.sleep(0.00001) #toggle def toggle_event(key): if key == TOGGLE_KEY: global clicking clicking = not clicking click_thread = threading.Thread(target=clicker) click_thread.start() with Listener(on_press=toggle_event) as listener: listener.join()

Before you use that script you have to install python and run pip install pnput in your terminal. The toggle key is the a-Key, but you can set it yourself if you want, just change the value after TOGGLE_KEY = KeyCode(char=".
Última alteração por wanderndervogel; 3 nov. 2023 às 10:35
Calydor 4 nov. 2023 às 9:41 
Wow, these scripts are overly advanced. Here's mine for AutoHotKey; ctrl-space to turn it on and off.

SetTimer, ClickTimer, 30
return
ClickTimer:
MouseClick, left
return
^Space:: Pause ;
< >
A mostrar 16-20 de 20 comentários
Por página: 1530 50

Postado a: 24 mai. 2022 às 18:26
Comentários: 20