thanks

im having a little trouble with the walking again...

the one following slowly falls back....

im currently dueling 2 mages on the PTR

heres the code i have for running

[code:1]
#IfWinActive, World of Warcraft
; *** Makes wow2 and Wow1 Player walk up***
W::
ControlSend,,{W down}, ahk_id %wowid1%
ControlSend,,{W down}, ahk_id %wowid2%
KeyWait W
ControlSend,,{W up}, ahk_id %wowid1%
ControlSend,,{W up}, ahk_id %wowid2%
return

#IfWinActive, World of Warcraft
; *** Makes wow2 and Wow1 Player walk back***
s::
ControlSend,,{s down}, ahk_id %wowid1%
ControlSend,,{s down}, ahk_id %wowid2%
KeyWait s
ControlSend,,{s up}, ahk_id %wowid1%
ControlSend,,{s up}, ahk_id %wowid2%
return

#IfWinActive, World of Warcraft
; *** Makes wow2 and Wow1 Player turn left***
a::
ControlSend,,{a down}, ahk_id %wowid1%
ControlSend,,{a down}, ahk_id %wowid2%
KeyWait a
ControlSend,,{a up}, ahk_id %wowid1%
ControlSend,,{a up}, ahk_id %wowid2%
return

#IfWinActive, World of Warcraft
; *** Makes wow2 and Wow1 Player turn right***
d::
ControlSend,,{d down}, ahk_id %wowid1%
ControlSend,,{d down}, ahk_id %wowid2%
KeyWait d
ControlSend,,{d up}, ahk_id %wowid1%
ControlSend,,{d up}, ahk_id %wowid2%
return
[/code:1]