What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Key pressing with routines.

howardiv

New Member
Joined
Apr 22, 2010
Messages
101
Reaction score
1
I do arena and use combat routines such as tuaha holy paladin and vanguard. Sometimes when I want to do ability of my choosing such as a stun chain I have to fight the bots routine ( which are very good already ) to cast the spell. If stun is bound to 5 I have to shash 5 untill I gets it into ahead of the bots next spell.

Is there any program that would allow me to just hold down 5 ( stun ) and spam it over and over until I release I the button after the spell has been cast. as well as operate the same for all other keys and binds.

The new version of tuaha may not require any intervention at all :)) looking forward to it greatly..but just for my own sake.. Thanks for your time !!
 
Yes.
Download Autohotkey and use this script, works flawlessly.

; Simple key spam script
; Toggle on and off with numlock.

~NumLock::Suspend, Toggle

*1::
Loop
{
GetKeyState, state, 1, p
if state = U
break
; Otherwise:
Send, {1}
Sleep, 25
}

*2::
Loop
{
GetKeyState, state, 2, p
if state = U
break
; Otherwise:
Send, {2}
Sleep, 25
}

*3::
Loop
{
GetKeyState, state, 3, p
if state = U
break
; Otherwise:
Send, {3}
Sleep, 25
}

*4::
Loop
{
GetKeyState, state, 4, p
if state = U
break
; Otherwise:
Send, {4}
Sleep, 25
}

*5::
Loop
{
GetKeyState, state, 5, p
if state = U
break
; Otherwise:
Send, {5}
Sleep, 25
}

*6::
Loop
{
GetKeyState, state, 6, p
if state = U
break
; Otherwise:
Send, {6}
Sleep, 25
}

*7::
Loop
{
GetKeyState, state, 7, p
if state = U
break
; Otherwise:
Send, {7}
Sleep, 25
}

*8::
Loop
{
GetKeyState, state, 8, p
if state = U
break
; Otherwise:
Send, {8}
Sleep, 25
}

*9::
Loop
{
GetKeyState, state, 9, p
if state = U
break
; Otherwise:
Send, {9}
Sleep, 25
}
 
Awesome thanks a lot. Can you make it use modifiers like shift n alt ?
 
Back
Top