I use AHK and I was wondering if someone can tell me how to make it do the steps slower. This is my current setup:
I tried making the Sleep to 200 but it didn't seem to effect it. FYI, this has nothing to do with Conquer, but I know people know how here. :D If you must know, I'm just making a macro to forward all my emails to my new email address.
Code:
^!g:: ;Ctrl+Alt+G for Go!
Loop
{
MouseClick, left, 397, 316
Sleep, 100
Send, {CTRLDOWN}v{CTRLUP}
MouseClick, left, 177, 322
Sleep, 100
MouseClick, left, 20, 78
Sleep, 100
MouseClick, left, 20, 78
Sleep, 100
MouseClick, left, 622, 322
Sleep, 100
}
Escape::ExitApp
Return