Page 1 of 1

Help with loop script

Posted: 02 Mar 2020, 06:53
by Paintedman
Hi guys,

I’m new to scripting and need help.

Can someone create me a loop script that is activated with ‘.’ Button and ended with ‘,’ button please?

It’s basically to loop a clicker i made

Thanks in advance

Re: Help with loop script

Posted: 02 Mar 2020, 13:15
by Rohwedder
Hallo,
try:

Code: Select all

No := 0
.::SetTimer, Loop, 200 ;every 200ms
,::SetTimer, Loop, Off
Loop:
ToolTip,% ++No
Return