simpler ahk script
this script is first i used in warframe still new this i wish it can help you somehow change send to the abilty u want to spam like 2 to spam 2 abilty 4 to spam last abilty if u have any ahk scripts please share it
Loop
{
Send, 3
Sleep 300
}
End::Pause
- - - Updated - - -
#MaxThreadsperHOtkey 2
SetTitleMatchMode, 2
KeyPress := 2
Counter := 0
F1::
Input, KeyPress, T.5
toggle := !toggle
loop
{
if toggle
{
Send, %KeyPress%
sleep 50
}
else
break
Counter++
}
if Counter > 0
Suspend
return
F2::
Input, Keypress, T.5
toggle := !toggle
loop
{
if toggle
{
ControlSend, , {v}, ahk_class Digital ExtremesEvolutionGfxD3D
sleep 50
}
else
break
Counter++
}
if Counter > 0
Suspend
return
F1 is currently the working macro function, it spams the next button you press with a .5s delay. Press again to deactivate.
F2 was something I was trying to work on so that it would only send the command to the Warframe window so I could tab out for a second or do homework while running super repetitive stuff like draco. I still haven't figured out how to get it to work so I'm open to any suggestions by more experienced AHK users
Loop
{
Send, 3
Sleep 300
}
End::Pause
- - - Updated - - -
#MaxThreadsperHOtkey 2
SetTitleMatchMode, 2
KeyPress := 2
Counter := 0
F1::
Input, KeyPress, T.5
toggle := !toggle
loop
{
if toggle
{
Send, %KeyPress%
sleep 50
}
else
break
Counter++
}
if Counter > 0
Suspend
return
F2::
Input, Keypress, T.5
toggle := !toggle
loop
{
if toggle
{
ControlSend, , {v}, ahk_class Digital ExtremesEvolutionGfxD3D
sleep 50
}
else
break
Counter++
}
if Counter > 0
Suspend
return
F1 is currently the working macro function, it spams the next button you press with a .5s delay. Press again to deactivate.
F2 was something I was trying to work on so that it would only send the command to the Warframe window so I could tab out for a second or do homework while running super repetitive stuff like draco. I still haven't figured out how to get it to work so I'm open to any suggestions by more experienced AHK users
