I created a code that should send the "E" key until i press the "T" key. Right now the loop only stops when I hold the "T" key. Could someone help me with this.
F12::
loop
{
Send e
Sleep 3500
if (GetKeyState("t")) {
break
}
}
return