Hi there
I would like to know if im allowed to do such thing like:
1. I press F6,
2. My loop starts and is going through index 1 to 15, and then from start, forever and ever
3. OR if i press again F6, my loop will break.
Is it possible?
Now my loop looks like:
(for now its just goin once from 1 to 11)
F6:: IfWinActive MyGamexD ahk_class Direct3DWindowClass { WinActivate SendMode Input loop { SendInput {enter} SendInput {BS} SendInput {BS} SendInput {/} SendInput {t} SendInput {Space} SendInput %A_Index% SendInput {enter} SendInput {enter} SendInput {Up} SendInput {Up} SendInput {enter} If A_Index = 11 Break else RandSleep(3000,3100) } } return