Log in

View Full Version : Short clip: 5 Shaman in Alterac



Feehza
01-29-2008, 09:29 PM
I just recorded a very short clip w/o sound about my defense work on iceblood-gy. When the Alliance arrive iceblood after killing galvangar its gone be one of the most important situation in every Alterac.

http://www.youtube.com/watch?v=cifSkB1lvRI


a bonusclip :)
http://www.youtube.com/watch?v=q-YNdZfHMLg
I dont know if it is standard. Every toon can be the leader within 0,0 second. I move my mouse to another screen (which should be the new leader) and just move with A,S,D,W without pressing any other key to switch the leader and all other (inclusiv the previous leader) are now followers. I love AHK.
Absolutly no trouble when your main is dead.

Monkofdoom
01-30-2008, 08:45 AM
Hehe nice short video showing some of the power shamans have, I live the way you stood behind the mountain at the start and waited for them to come (so the front line weren't prepared).

And the switching is nice ;)

Texic
02-03-2008, 09:21 PM
On a side note this is one of the reasons alliance barely plays AV on most battlegroups. That many horde just defending Iceblood at such a small pass..

Diamndzngunz
02-04-2008, 01:35 AM
I like the short clip. I love jumping around randomly in town and having jump in different directions. Looks funny.

Great vids man.

Emo?
02-04-2008, 04:41 AM
Nice :) gonna gank AV with my mages when they are ready :P

Hippieman
02-04-2008, 05:38 AM
Man, I wish I'd rolled taurens for the tubby streamrofling-look. Anyways, awesome stuff.

Los
02-04-2008, 05:48 AM
Sweet stuff, wondering how you change the main, a focus macro on the 'w' key ?

Sekij
02-04-2008, 09:10 AM
That instant changing main is great, can u tell me how it works?

Feehza
02-04-2008, 10:13 AM
I use AHK for it.
None of the toons have bind A,S,D,W in wow for movement. Its only remapping via AHK.

I will explain it for a tri-box-system:

Toon1 have the keys "F,G,H,T" for Movement
Toon2 have the keys "le,dn,ri,up" for Movement
Toon3 have the keys "J,K,L,I" for Movement

And i have on all 3 wow these 3 Macros:
Toon1isLead: "/focus toon1 /follow focus" bind to Key "1"
Toon2isLead: "/focus toon2 /follow focus" bind to key "2"
Toon3isLead: "/focus toon3 /follow focus" bind to key "3"

However, i have to use A,S,D,W ... so i press the Key "W" in wow1 now to move my char forward.
AHK checks which WOW is active.
If wow1 is active then AHK send the Keystroke "T" to wow1 (wow1-char moves forward)
If wow1 is active then AHK send the Keystroke "1" to wow2 (wow2-char activate the macro "Toon1isLead")
If wow1 is active then AHK send the Keystroke "1" to wow3 (wow3-char activate the macro "Toon1isLead")

If i change to my wow2-window and press again "W":
If wow2 is active then AHK send the Keystroke "2" to wow1 (wow1-char activate the macro "Toon2isLead")
If wow2 is active then AHK send the Keystroke "UP" to wow2 (wow2-char moves forward)
If wow2 is active then AHK send the Keystroke "2" to wow1 (wow3-char activate the macro "Toon2isLead")

If i change to my wow3-window and press again "W":
If wow3 is act... and so on


I could be look like this:



;*** Key W down *** FORWARD
~w::
KeyWait, d, D
IfWinActive, ahk_id %wowid1%
{
ControlSend, , {t Down}, ahk_id %wowid1%
ControlSend, , {1 Down}, ahk_id %wowid2%
ControlSend, , {1 Down}, ahk_id %wowid3%
}
else
IfWinActive, ahk_id %wowid2%
{
ControlSend, , {2 Down}, ahk_id %wowid1%
ControlSend, , {Up Down}, ahk_id %wowid2%
ControlSend, , {2 Down}, ahk_id %wowid3%
}
else
IfWinActive, ahk_id %wowid3%
{
ControlSend, , {3 Down}, ahk_id %wowid1%
ControlSend, , {3 Down}, ahk_id %wowid2%
ControlSend, , {i Down}, ahk_id %wowid3%
}
Return


;*** Key w up*** FORWARD
~w Up::
IfWinActive, ahk_id %wowid1%
{
ControlSend, , {t Up}, ahk_id %wowid1%
ControlSend, , {1 Up}, ahk_id %wowid2%
ControlSend, , {1 Up}, ahk_id %wowid3%
}
else
IfWinActive, ahk_id %wowid2%
{
ControlSend, , {2 Up}, ahk_id %wowid1%
ControlSend, , {Up Up}, ahk_id %wowid2%
ControlSend, , {2 Up}, ahk_id %wowid3%
}
else
IfWinActive, ahk_id %wowid3%
{
ControlSend, , {3 Up}, ahk_id %wowid1%
ControlSend, , {3 Up}, ahk_id %wowid2%
ControlSend, , {i Up}, ahk_id %wowid3%
}
Return


PS: As you can see i have no extra "follow"-key. The Followers follow automatic when i press a movement-key. Its a personal affectation.