Keyclone/AutoHotkey Question - Games besides WoW
I have been doing as much research as I can, but I am having trouble coming up with a way to control a 2nd character "game window on the same system" as of following/assisting target. There are games that do not have such features as assist target or follow so I was wondering if there was a way to use AutoHotkey mouse scripts? But would it be based off (X,Y) coordinates which you would have to have both characters on top of each other and have the same identical viewings "which would be very difficult" or would you have to set up each mobs colour code of some sort. Can't think of any other way having 2 windows click on the same target, or ground for moving.
I was messing around with Shadowbane and had everything set up with AutoHotkey except for the assisting part.
How does Keyclone work without having hotkeys setup for /assist or /follow?
Camera Angle / Mouse Scroll syncing to 2Windows, Same System
So I found a script for executing right clicks:
#IfWinActive Shadowbane
~RButton::
CoordMode, Mouse, Relative
MouseGetPos, x, y
ControlClick, X%x% Y%y%, ahk_id %idMain%,, R
ControlClick, X%x% Y%y%, ahk_id %idClone%,, R
Return
works fine, if both my characters are on top of each other and the zoom/camera angles are near perfectly matched up.
But then you would not be able to zoom in and out "mouse wheel" or turn the camera angle up,down,left right. "My camera angle keys are w,a,s,d"
so I tried hot keying my angle keys but got very chopping and sometimes no results at all. I tried various scripts such as:
~a::
#IfWinActive, Shadowbane
{
ControlSend,,{a down}{a up}, ahk_id %idMain%
ControlSend,,{a down}{a up}, ahk_id %idClone%
}
Return
I tried w/ & w/out the "~" |& "ControlSend,, a," & the {down/up} script posted above, but no luck. I'm going to call it a night for now & try again in the morning. Any feedback would be greatly appreciated :D