Close
Page 2 of 3 FirstFirst 1 2 3 LastLast
Showing results 11 to 20 of 24
  1. #11

    Default

    Thansk for your answer.

    I already used the follow script :

    <Hotkey LButton>
    <If MouseIsOverWindowRect WoW1 755 481 200 200>
    <SendLabel w1, w2, w3, w4, w5>
    <Clickmouse LButton>
    <RestoreMousePos>
    <Else>
    <SendFocusWin>
    <Clickmouse LButton>
    But it doesnt work. My first character is on full screen (but windowed), and i think the problem is the coordonates "WoW1 755 481 200 200".

    But I do not know how to put the right coordinates of my window.

    Thanks

  2. #12
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    I believe the notation: <If MouseIsOverWindowRect WoW1 755 481 200 200>
    would be something like:

    If the mouse cursor is between 755 and 955 pixels from the left edge of the client, and between 481 and 681 pixels from the top edge of the client, send that click to the same spot on the other screens, otherwise, just send the click to the currently focused window. If your screens are all the same base resolution of say 1920x1080, you could use something like:

    <If MouseIsOverWindowRect WoW1 0 0 1920 1080>

    That should cover the entire screen. The sub-region like in the example only processes those clicks when it's over a specific GRID button layout. For full-screen stuff, you'll probably also want to add something like a SHIFT or CTRL modifier so it only broadcasts when you hold down the extra button or it will send clicks all the time.

    What I cannot tell you is how AHK handles clicks between windows of different sizes. Most multiboxing software handles that pretty poorly without doing things like making sure they are the same aspect ratio.

    I'm way out of my depth here, though, as I've never used AHK. Experiment and see what happens! (That's pretty much what we do around here.)
    Now playing: WoW (Garona)

  3. #13

    Default

    Thanks a lot, its works perfectly

    Now i can broadcast the mouse clicks on all my windows and gathering with all my toons !

    Its the script I used, if someone is interested :

    <UseKeyAsModifier Tab>

    <Hotkey Tab LButton>
    <If MouseIsOverWindowRect WoW1 0 0 1920 1080>
    <SendLabel w1, w2, w3, w4>
    <Clickmouse LButton>
    <RestoreMousePos>
    <Else>
    <SendFocusWin>
    <Clickmouse LButton>

  4. #14

    Default

    Quote Originally Posted by doudule View Post
    Thanks a lot, its works perfectly

  5. #15
    Member Ughmahedhurtz's Avatar
    Join Date
    Jul 2007
    Location
    North of The Wall, South of The Line
    Posts
    7169

    Default

    Outstanding. 4,399,023 satisfied dual-boxing.com customers and counting...
    Now playing: WoW (Garona)

  6. #16

    Default

    Whenever I try to click nodes on more than one character I run up next to the node, so that it's in the left or right side of every window. This with SetView(x) is the best way to make sure they all click the node.

    Trying to face it and click it is the worst way to do it as pets and other people tend to get in the way.

  7. #17

    Default

    Quote Originally Posted by MadMilitia View Post
    Whenever I try to click nodes on more than one character I run up next to the node, so that it's in the left or right side of every window. This with SetView(x) is the best way to make sure they all click the node.

    Trying to face it and click it is the worst way to do it as pets and other people tend to get in the way.
    dont use click, use IWM

  8. #18

    Default

    What is the difference with IWM?

    Additionally using hunters on gathering notes when it triggers a mob spawning, I have a tough time targeting the corpse with the mess of pets and characters out. Is there any handy method of "target nearest corpse"?
    FFXIV - Aether - Sargatanas
    Twitch - https://twitch.tv/multidayz
    Youtube - https://www.youtube.com/c/Multidayz

  9. #19

    Default

    IWM doesn't actually click anything so you don't trigger CTM, which is why your hunters are moving.

  10. #20

    Default

    With hunters no need to ever have CTM on :P
    But I do like IWM after trying it, feel like I can spam it.
    FFXIV - Aether - Sargatanas
    Twitch - https://twitch.tv/multidayz
    Youtube - https://www.youtube.com/c/Multidayz

Posting Rules

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •