Close
Showing results 1 to 4 of 4
  1. #1

    Default Short EotS fun movie

    Hey guys,

    just a short fun movie (in 120% speed mode) from one of my last EotS last night ... and please don't judge me for the music :-))



    Playing 4x BM hunter + 1 healdruid as slave

  2. #2

    Default

    Great movie - nice job! I'm doing my best to not judge the music... it isn't easy

    What class do you find the most difficult to go against? It seems like a Mage that know what they're doing can wreak havoc, but you were tearing through most toons.
    Owltoid, Thatblueguy, Thisblueguy, Otherblueguy, Whichblueguy

  3. #3

    Default

    Hi Owltoid,

    next time i will think about the music again .. promised

    Maybe you could count them ... i was a bit to offensive and ran two times into a group of mages together with some healer and something else. Overall there were 5 mages (3 arcan + 2 frost) in these bg ... a bit too much.
    And i was a little bit surprised about the warrior at the beginning. He really knew how to protect himself for the first seconds. I would say warriors are one of the strongest enemies against my comp because of there def, mass-cc and damage. Two or more can wipe me easily as long as they know what to do.

    Together with warriors i would also count my own heal druid as my strongest enemy.
    I am driving with one of my hunter so the driud is just always following. And i am not using isboxer and healing is just possible with /assist and /targettarget macros ... this makes him weak like hell.
    I am alreay searching a way to make it better and more comfortable but without isboxer?! i guess there is no way

  4. #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
  •