about macro of PokeMMO...
i wrote a command for autohotkey but the function didnt work. First if game window active it will start. when i opened game and press "L" key it will start.
i want to make a loop with "L" key active. it will make quick 3 times "S" key and first "Q" key, not wait, "Q" key, wait, "Q" key, wait, "Q" key
for Autohotkey need help
Code:
IfWinActive, PokeMMO
Suspend Off
else
Suspend On
return
$l::
Loop 500
{
if not GetKeyState("l", "P")
break
Click
Send s
Send s
Send s
Send q
Send q
Sleep 500
Send q
Sleep 500
Send q
}
return