Close
Page 1 of 2 1 2 LastLast
Showing results 1 to 10 of 13
  1. #1

    Default Program to simulate mouseclicks in same designated area on multiple windows?

    Yea.. any ideas? i dont care if there is a few ms lag.

  2. #2

    Default

    AHK should be able to do it. They have extensive forums and documentation you can read up on.
    The Orcks of War
    Shaman Borck Zorck Dorck Porck Corck
    Mixed Team - Msblonde - Mswhite - Msblack - Msred - Msbrown -

  3. #3

    Default

    Quote Originally Posted by 'thinus',index.php?page=Thread&postID=29921#post29 921
    AHK should be able to do it. They have extensive forums and documentation you can read up on.
    research sucks, but thx alot... i'll look into it

  4. #4

    Default

    Quote Originally Posted by 'ilikemages',index.php?page=Thread&postID=29924#po st29924
    Quote Originally Posted by 'thinus',index.php?page=Thread&postID=29921#post29 921
    AHK should be able to do it. They have extensive forums and documentation you can read up on.
    research sucks, but thx alot... i'll look into it
    http://www.autohotkey.com/docs/comma...eClickDrag.htm

    I was feeling generous. And after answering many mouse related questions today I was curious.

    EDIT: You can probably set up AHK hotkeys to turn your alts 90 degrees or close to it using mouseclickdrag. Not sure about doing the whole right mouse down, move mouse, release button thing.
    The Orcks of War
    Shaman Borck Zorck Dorck Porck Corck
    Mixed Team - Msblonde - Mswhite - Msblack - Msred - Msbrown -

  5. #5

    Default

    Quote Originally Posted by 'thinus',index.php?page=Thread&postID=29929#post29 929
    Quote Originally Posted by 'ilikemages',index.php?page=Thread&postID=29924#po st29924
    Quote Originally Posted by 'thinus',index.php?page=Thread&postID=29921#post29 921
    AHK should be able to do it. They have extensive forums and documentation you can read up on.
    research sucks, but thx alot... i'll look into it
    http://www.autohotkey.com/docs/comma...eClickDrag.htm

    I was feeling generous. And after answering many mouse related questions today I was curious.

    EDIT: You can probably set up AHK hotkeys to turn your alts 90 degrees or close to it using mouseclickdrag. Not sure about doing the whole right mouse down, move mouse, release button thing.
    Well, with using that it would be impossible to actually click the same area depending on what the area the main window clicks because it seems all areas are pre-determined.

  6. #6

    Default

    I have used AHK with this for auto loading of Ore in EVE (from ship to can). It'd be fine if you set all your windows in a predefined spot, recorded where you wanted each click to go and mapped that to a button. Technically you could drive the game with it. However for each window to take mouse input it needs to be in the foreground, so you'd lose control of main+others while the alt is being worked on. I think what gets most people is they want a dynamic click so that the position is read from the main screen and written to the alts, it'd be just as much use (and a lot easier) to have predefined click points driven from keybinds. Whether or not that hits the EULA I couldn't say.
    Currently running 3x City of Heroes under Octopus

  7. #7

    Default

    I'm doing this.. beta this week probs.
    Author of Octopus (no longer being developed).

  8. #8

    Default

    Quote Originally Posted by 'Lost Ninja',index.php?page=Thread&postID=30022#post3002 2
    I have used AHK with this for auto loading of Ore in EVE (from ship to can). It'd be fine if you set all your windows in a predefined spot, recorded where you wanted each click to go and mapped that to a button. Technically you could drive the game with it. However for each window to take mouse input it needs to be in the foreground, so you'd lose control of main+others while the alt is being worked on. I think what gets most people is they want a dynamic click so that the position is read from the main screen and written to the alts, it'd be just as much use (and a lot easier) to have predefined click points driven from keybinds. Whether or not that hits the EULA I couldn't say.
    So basically i could make a grid of the screen and make click points for said area covered by said AOE spell?

    how would you go about binding this with AHK? If you could give an example of how you do it via keypress it would be very much appreciated.

  9. #9

    Default

    Sadly I didn't bind it to a key, as I knw my cycle times so I just set it to wait 60s...

    Code:
    WinWait, EVE, 
    IfWinNotActive, EVE, , WinActivate, EVE, 
    WinWaitActive, EVE, 
    Loop 30
    {
    SendEvent {Click 80, 908, down}{click 86, 729, up}
    Sleep 60000
    }
    This was a while back so some parts of that may no longer be current I have no idea.

    As for grid idea, you could but I think all you really need is 1 set where everyone clicks roughly 10 yards in front (gather mode); 1 where everyone clicks on themselves (AoE mode); and 1 where you click all around you. Which you use would depend on where the mobs are... If you're really clever you could even add approximate points onto the screen where things will land so you can see whats happening... (Using LUA and eePanels2)
    Currently running 3x City of Heroes under Octopus

  10. #10

    Default

    Quote Originally Posted by 'Lost Ninja',index.php?page=Thread&postID=30338#post3033 8
    Sadly I didn't bind it to a key, as I knw my cycle times so I just set it to wait 60s...

    Code:
    WinWait, EVE, 
    IfWinNotActive, EVE, , WinActivate, EVE, 
    WinWaitActive, EVE, 
    Loop 30
    {
    SendEvent {Click 80, 908, down}{click 86, 729, up}
    Sleep 60000
    }
    This was a while back so some parts of that may no longer be current I have no idea.

    As for grid idea, you could but I think all you really need is 1 set where everyone clicks roughly 10 yards in front (gather mode); 1 where everyone clicks on themselves (AoE mode); and 1 where you click all around you. Which you use would depend on where the mobs are... If you're really clever you could even add approximate points onto the screen where things will land so you can see whats happening... (Using LUA and eePanels2)
    why does it seem like AHK is just autoit? lol

Similar Threads

  1. Replies: 0
    Last Post: 03-01-2009, 01:38 AM
  2. Auto adding multiple windows on one comp
    By tinit5190 in forum Software Tools
    Replies: 0
    Last Post: 02-27-2009, 03:58 AM
  3. Multiple windows and mouseover macros
    By ytrehod in forum Macros and Addons
    Replies: 2
    Last Post: 09-15-2008, 07:47 AM
  4. Broadcasting mouseclicks/movements on 1pc to 3 wow windows
    By NightMare in forum Software Tools
    Replies: 2
    Last Post: 08-28-2008, 01:54 PM
  5. Problems getting Octopus multiple WOW windows working
    By Anhvariel in forum Software Tools
    Replies: 6
    Last Post: 06-30-2008, 09:19 PM

Posting Rules

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