microgx
09-14-2008, 07:33 PM
I'm trying to setup movement between my two toons. I'm currently using autohotkey and have figured out how to do most actions without may problems via the wiki, but the problem i'm running into is with movement.
I have my movement keys setup as follows:
Q=Turn Left
W=Forward
E=Turn Right
A=Strafe Left
S=Backwards
D=Strafe Right
The syntax that I'm using is as follows:
~Q::ClonesPush("{, down}{, up}{q down}")
~Q Up::ClonesPush("{q up}")
~W::ClonesPush("{, down}{, up}{w down}")
~W Up::ClonesPush("{w up}")
~E::ClonesPush("{, down}{, up}{e down}")
~E Up::ClonesPush("{e up}")
~A::ClonesPush("{, down}{, up}{a down}")
~A Up::ClonesPush("{a up}")
~S::ClonesPush("{, down}{, up}{s down}")
~S Up::ClonesPush("{s up}")
~d::ClonesPush("{, down}{, up}{d down}")
~d Up::ClonesPush("{d up}")
The hope of this code is to make it so that my clones move exactly the same as my main does. The problem i'm running into is that they very quickly get out of sync.
Does anyone know a good solution for this?
Thanks.
I have my movement keys setup as follows:
Q=Turn Left
W=Forward
E=Turn Right
A=Strafe Left
S=Backwards
D=Strafe Right
The syntax that I'm using is as follows:
~Q::ClonesPush("{, down}{, up}{q down}")
~Q Up::ClonesPush("{q up}")
~W::ClonesPush("{, down}{, up}{w down}")
~W Up::ClonesPush("{w up}")
~E::ClonesPush("{, down}{, up}{e down}")
~E Up::ClonesPush("{e up}")
~A::ClonesPush("{, down}{, up}{a down}")
~A Up::ClonesPush("{a up}")
~S::ClonesPush("{, down}{, up}{s down}")
~S Up::ClonesPush("{s up}")
~d::ClonesPush("{, down}{, up}{d down}")
~d Up::ClonesPush("{d up}")
The hope of this code is to make it so that my clones move exactly the same as my main does. The problem i'm running into is that they very quickly get out of sync.
Does anyone know a good solution for this?
Thanks.