everything seemed fine until i did some field testing. okay so it seems the left alt key isnt registering in D3 while holding down left alt to pause the script. its like the force stand still function stops working. any help fixing this? pleaseee
*=::
AutoSend := !AutoSend
If AutoSend
{
Send {wheelup Down} ;or this... ?
SetTimer AutoSend, 10
}
Else
{
SetTimer AutoSend, Off
Send {WheelUp up} ;this is a good idea.
}
Return
AutoSend:
Send {Wheelup Down}
Sleep 5
Send {WheelUp}
Return
#if (AutoSend)
LAlt::
{
SetTimer AutoSend, Off
Send {Wheelup Up}
keywait, LAlt
SetTimer AutoSend, 10
}
return
#if