Hi guys, i just wonder if there is any free program out there that will be able to let me controll both games with the same mouse on 1 computer? At the moment i use AHK
Thanks![]()
Hi guys, i just wonder if there is any free program out there that will be able to let me controll both games with the same mouse on 1 computer? At the moment i use AHK
Thanks![]()
Hiya Deathtrip, welcome.
Would you mind specifying exactly what you would like to do. Are you running 2 instances of WOW on 1 machine or do you have 2 machines that you want to be able to control with one mouse?
Owachi (Druid), Rhodrage(Paladin), Tenitis (Warlock), Rhodigan (Mage), Vhoden (Shaman)
I run two WoW on 1 machine and wonder if there is any program that does the same as AHK but with the mouse cause AHK only transfers the keyboard to the second wow. not the mouse
AHK can perform clicks, read the documentation on how to do it.
Wilbur
klicks whit ahk + wow = fail
itl target off ur first wow, then target the secon wow, then target back the first wow, and all of this is visual
and sometimes it doesent target the first wow propper anymore, its just unhandy
id sugest geting 2 comps and buying keyclone
im 16 years old and can barly afford driving my moped to school.
ok maybe not that bad :lol:
Erm... It'd be fairly simple, press an AHK Hotkey, it takes the current position on WoW 1, clicks, moves to WoW 2, Clicks, etc, You don't have to use Preset positions.
Wilbur
at the moment i use macros like this:
/assist party1
/cast <spell>
/follow party1
but ide like to move both chars with mouse and keyboard insteed of having him on follow all the time. Would be MUCH better in PvP
Quoted from lexikos of AutoHotKey forums.
Following the style of the script in your previous post,
Code (Copy):
#IfWinActive World of Warcraft
~LButton:: ; ~ means don't block
CoordMode, Mouse, Relative ; this is the default, but just in case
MouseGetPos, x, y
ControlClick, X%x% Y%y%, ahk_id %wowid2%
ControlClick, X%x% Y%y%, ahk_id %wowid3%
return
For right-click, you'd use ~RButton:: and
Code (Copy):
ControlClick, X%x% Y%y%, ahk_id %wowid2%,, R
This doesn't simulate mouse drag/movement, which is more complicated since there is no built-in command.
For future reference, #IfWinActive applies to all hotkeys down to the next #IfWin. It does not need to be repeated, though there is no harm.
thanks alot, i'll try this out after my The Eye raid :P
Is it just to copy, or what do i need to remove? cause he is writing stuff that shouldn't be there aswell right?
#IfWinActive World of Warcraft
~LButton::
CoordMode, Mouse, Relative
MouseGetPos, x, y
ControlClick, X%x% Y%y%, ahk_id %wowid2%
ControlClick, X%x% Y%y%, ahk_id %wowid3%
return
????
Connect With Us