Close
Showing results 1 to 4 of 4

Threaded View

  1. #4

    Default

    Quote Originally Posted by Eloni View Post
    Hi Owltoid,
    I am alreay searching a way to make it better and more comfortable but without isboxer?! i guess there is no way
    You could make your own repeater regions with Autohotkey or HKN. Just hold mouse over a certain region and your slave will use a macro to heal that exact partymember.
    Good thing in this method is that you don't have to broadcast keyclicks. It's a bit tricky to get working thouh.

    AHK example

    bindings:
    ctrl + 1: /cast [target=Hunter1] Heal Over Time
    ctrl + 2: /cast [target=Hunter2] Heal Over Time
    2: DPS SPAM

    Code:
    ~2::
    mousegetpos,x,y      ;Save mousecoordinates to variables x and y
    if (x>10) && (x<20) && (y>10) && (y<20)
    {
          ;If the cursor was found in this area then heal party1 with macro:  /cast [target=Hunter1] Heal Over Time
          ControlSend,, {ctrl down}{1}{ctrl up}, ahk_id %wowid4%   ; send ctrl + 1 to healer
    }
    if (x>10) && (x<20) && (y>20) && (y<30) 
    {
          ;If the cursor was found in this area then heal party2 with macro:  /cast [target=Hunter2] Heal Over Time
          ControlSend,, {ctrl down}{2}{ctrl up}, ahk_id %wowid4%   ; send ctrl + 2 to healer
    }
    ControlSend,, {2}, ahk_id %wowid1%   ; Main - DPS
    ControlSend,, {2}, ahk_id %wowid2%   ; Wow2 - DPS
    ControlSend,, {2}, ahk_id %wowid3%   ; wow3 - DPS
    return
    This way your target can always remain hostile.


    If you go with AHK you can probably find help at AHK forums.


    BTW: Whats the addon thats shows your team HP?
    Last edited by aasi888 : 02-27-2013 at 02: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
  •