Log in

View Full Version : Short EotS fun movie



Eloni
02-24-2013, 11:08 PM
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 :-))


http://www.youtube.com/watch?v=7U2cfV2Uq1o

Playing 4x BM hunter + 1 healdruid as slave

Owltoid
02-25-2013, 09:11 AM
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.

Eloni
02-25-2013, 02:15 PM
Hi Owltoid,

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

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. :rolleyes:
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 :(

aasi888
02-27-2013, 01:54 PM
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


~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?